Rendering a few Lines takes an unreasonable amount of memory

ParaView can render very large data sets with millions of cells, points, or in your case line segments. However, data sources like the Line source in ParaView are heavy weight objects, and having 600 of them is not going to go well, as you have seen. What you want to do is add all your geometry in as few sources as possible.

To achieve your goal much more efficiently, it would be better to use a single Programmable Source that generates the 600 line segments and adds them to a single vtkPolyData. Set the Script argument to in the Programmable Source to:

import vtk
from random import uniform

points = vtk.vtkPoints()
lines = vtk.vtkCellArray()
for i in xrange(600):
  pt1 = points.InsertNextPoint(uniform(0, 100), uniform(0, 100), 0)
  pt2 = points.InsertNextPoint(uniform(0, 100), uniform(0, 100), 0)
  lines.InsertNextCell(2, [pt1, pt2])

output.SetPoints(points)
output.SetLines(lines)

This will produce just one ParaView source that generates 600 line segments. It will perform much, much faster and with much less memory.