How to read parquet files in spark

Reading parquet files using spark

df = spark.read.parquet("path_to_parquet")

df.show()


Comments