Change VertexSize in a big graph

The following work in version 9:

RandomGraph[{1000, 2000}, 
 VertexSize -> Join[{_ -> Scaled[.01]}, Thread[Range[10] -> Scaled[.04]]]]

enter image description here

RandomGraph[{1000, 2000}, 
 VertexSize -> Join[{_ -> 3}, Thread[Range[10] -> 10]]]

enter image description here

Update: For versions 11+ , as shown in halmir's answer, explicit setting of GraphStyle or VertexShapeFunction options gives the desired result. In particular, using the option GraphStyle with any value, e.g.

GraphStyle -> {}
GraphStyle- > "BasicBlue"
GraphStyle-> blah

with the same VertexSize settings as in the examples above gives

enter image description here


You could specify VertexShapeFunction or set GraphStyle -> "Default"

RandomGraph[{1000, 2000}, VertexSize -> 6, VertexShapeFunction -> "Circle"]

RandomGraph[{1000, 2000}, VertexSize -> 5, GraphStyle -> "Default" ]