Hello friends, I want understand how dremio organizate folders when make partitions in a Iceberg Table. for example we have the follow table and partition definition (NAS source):
CREATE TABLE lake2.prod.posts
(
ID varchar,
ID_POST varchar,
ID_PAGE varchar,
ENGAGEMENT double,
IS_ROOT integer,
...
TYPE varchar,
IMPRESSIONS_PAID integer,
IMPRESSIONS_ORGANIC integer,
IMPRESSION_TOTAL integer,
REACH_TOTAL integer,
CLICKS_TOTAL integer,
CREATED_DATE timestamp,
)
partition by (bucket( 400, ID_PAGE ), TYPE, month(CREATED_DATE));
after ingest some 185M rows in the server 57865 folder inside each folder we have 2 folder corresponding to “type” partition but why 57865 folder? if only make 400 buckets?