Is it possible to export data-frame from Apache Spark to feather (https://github.com/wesm/feather) file?
Not sure, you can do it directly, but you can transform first the Spark Dataframe (on pyspark) to a pandas and store it the to Feather:
pandas_df = spark_df.toPandas()
feather.write_feather(pandas_df, 'example_feather')
But I afraid, this will have an impact on the performance.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With