您可以在配置单元中创建范围分区表吗?

时间:2019-05-22 07:48:01

标签: database hive dolphindb

我使用静态分区或动态分区在蜂巢中创建分区。

蜂巢:

react

但是我的某些状态分区的数据非常小。我想将多个分区合并到一个分区,例如将状态静态分区合并到范围分区,就像DolphinDB范围分区一样。

DolphinDB:

create table employees (
 name   string,
 salary  float,
 subordinated array<string>,
 deductions map<string,float>,
 address  struct<street:string,city:string,state:string,zip:int>
 ) partitioned by (country string, state string)
DolphinDB中的

0-5和5-10将分别写入一个分区。 在Hive中如何执行此操作,因为有些分区的数据很少,所以我想合并分区。

0 个答案:

没有答案