I have a pandas dataframe(after pivoted) which i am trying to save the file as parquet and store it in azure blob storage . The file is getting stored in the storage account, however when i try to read the parquet file, i am getting the error - "encoding RLE_DICTIONARY is not supported." Can some one help me how to fix this.
Here is the below code which i am using for saving the dataframe.
blob_service_client = BlobServiceClient.from_connection_string(<<connectionstring>>)
blob_client = blob_service_client.get_blob_client(container='<<container Name>>', blob="department/abc.parquet")
parquet_file = BytesIO()
df.to_parquet(parquet_file,engine='pyarrow',index=False)
parquet_file.seek(0)
blob_client.upload_blob(data=parquet_file)

