Max size of scene map

Hi there,

I have 2D galaxy generated with 50+ systems. But some systems reach even 100 000 units in coordinates. (So 100 000 Unity units (in Transform) from middle(0,0,0)).

Is it good? Or should I completely rescale all the objects in game to not go that far?
Could it have any performance issues?

Since now only thing that bother me is that in editor I cannot zoom out far enough to see al the objects (Entire galaxy)

VERY large scenes are not possible in unity without special techniques because floats become inaccurate when they get extremely large. To get around this, you would need to either scale down your scene, or move the objects around the player, and have the player remain still.