I am writing data into s3 and table format is Iceberg in Glue Catalog. I see the /data and /metadata folders are getting created. However when I am writing data, it's creating 001/002 kind of folders. Is there any way I can keep the table/partition
Here is the code and folder strcture.
result_df.writeTo(catalog_table_name) \
.tableProperty("write.format.default", "parquet") \
.tableProperty("write.distribution-mode", "hash") \
.tableProperty("format-version", "2") \
.tableProperty("write.merge.mode", "copy-on-write") \
.tableProperty("write.object-storage.path-style.enabled", "true")\
.partitionedBy("srce", "regon", "coury", "datte") \
.overwritePartitions()
