pyspark.sql.DataFrame.toJSON

DataFrame.toJSON(use_unicode: bool = True) → pyspark.rdd.RDD[str]

Converts a DataFrame into a RDD of string.

Each row is turned into a JSON document as one element in the returned RDD.

Examples

>>> df.toJSON().first()
'{"age":2,"name":"Alice"}'