我正在尝试使用以下命令在配置单元中创建一个存储桶:
hive> create table emp( id int, name string, country string)
clustered by( country)
row format delimited
fields terminated by ','
stored as textfile ;
命令执行成功:当我将数据加载到这个表中时,它执行成功并且使用时显示所有数据select * from emp
。
但是,在 HDFS 上,它只创建一个表,并且只有一个包含所有数据的文件。也就是说,没有特定国家/地区记录的文件夹。