You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for chunk_size in range(1,4):
print(f"chunk_size: {chunk_size}")
for df in wr.s3.read_parquet("s3://DWH/test", chunked=chunk_size):
print(df["cat1"].dtypes)
for chunk_size in range(1,8):
print(f"chunk_size: {chunk_size}")
for df in wr.s3.read_parquet("s3://DWH/test", chunked=chunk_size):
print(df["cat1"].dtypes)
This returns all categories
This returns mixed data types
Problem occurs when new category is introduced. Is there a way to be sure category is returned.
pyarrow_additional_kwargs
do not help with this.The text was updated successfully, but these errors were encountered: