wudianlong 2 anni fa
parent
commit
8365cf6472
1 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. 18 0
      energy/energy_hive.sql

+ 18 - 0
energy/energy_hive.sql

@@ -0,0 +1,18 @@
+
+/** 历史数据 */
+create table ods_energy_15_min_history
+(
+    building   string,
+    func_id    string,
+    meter      string,
+    data_time  string,
+    data_value decimal(20, 15),
+    `dt` string
+) COMMENT '能源原始数据15min历史数据'
+    partitioned by (`dt` string)
+    ROW FORMAT DELIMITED FIELDS TERMINATED BY '\001'
+    STORED AS TEXTFILE
+    LOCATION
+        'hdfs://sagaCluster:8020/warehouse/saga_dw/ods/ods_energy_15_min_history'
+    TBLPROPERTIES (
+        'orc.compress'='lzo');