I'm loading parquet file with tabular data. I wanted to process this data and load it to Redis. My initial approach was to do redis SET per row, but it's suboptimal as redis supports MSET. I was trying to figure out how to batch df and be able to call function on whole batch rather than single row. Is it possible with Dask?
Comments
Post a Comment