Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Dynamische Partitionierung + CREATE AS auf HIVE

Da Sie bereits das vollständige Schema der Zieltabelle kennen, versuchen Sie zuerst, es zu erstellen und mit einem LOAD DATA-Befehl zu füllen:

SET hive.exec.dynamic.partition.mode=nonstrict;

CREATE TABLE T (key int, value string) 
PARTITIONED BY (ds string, hr int);

INSERT OVERWRITE TABLE T PARTITION(ds, hr) 
SELECT key, value, ds, hr+1 AS hr 
   FROM srcpart 
   WHERE ds is not null 
   And hr>10;

Hinweis:Der set-Befehl wird benötigt, da Sie eine vollständige dynamische Partitionseinfügung durchführen.