0
在Bucketing中,在配置單元的哪個階段創建桶文件?在配置單元中創建桶文件時
create table emp(id int, name string, country string)
clustered by(country)
INTO 2 BUCKETS
row format delimited
fields terminated by ','
stored as textfile ;
如果我有20個桶和只有4行將創建多少個文件?