Hi,there has some trouble when i use starrocks insert a bucket iceberg table
CREATE TABLE test.mynjall16 (
vin string,
testtype string,
license string,
licensetype string,
fueltype string,
testdate date,
testdateend date,
area string
)
USING iceberg
PARTITIONED BY (days(testdate),bucket(253, vin));
the final data path is /user/hive/iceberg/test.db/mynjall16/data/testdate=2025-10-28/vin=LZWCAAGA9HE456606/f29f78cc-dfd9-11f0-8cd0-525400ecaf6c_1_37_0.parquet
vin code become a partition,not use bucket(253, vin) to build bucket, it lead to many file were created。
starrocks version: 3.5.6
iceberg version: 1.9.2
catalog type: hive catalog(3.1.3)