Is it possible to export a data frame from Apache Spark to a pen ( https://github.com/wesm/feather ) file?
IIUC you can try:
import feather import pandas as pd #df is spark df pdf = df.toPandas() feather.write_dataframe(pdf, 'test.feather')