# Limits the result count to the number specified df.limit(1).collect() # [Row(age=2, name=u'Alice')] df.limit(0).collect() # []