问题描述

问题描述/异常栈

 通过zip包提交的SQL节点JDBC模式任务,选中执行后SQL实际未执行

解决方案

hive.query.01=drop table words;
hive.query.02=create table words (freq int, word string) row format delimited fields terminated by '\t' stored as textfile;
hive.query.03=describe words;
hive.query.04=load data local inpath "res/input" into table words;

问题原因

通过zip包提交的SQL节点JDBC默认任务,一个query只能对应一个SQL,多个SQL需分成多个query

作者:常惠渊