Hadoop / Hive如何从具有动态位置的文件中创建一个Hive表

时间:2019-05-09 14:27:14

标签: hadoop hive beeline

Apache Hive(版本1.2.1000.2.6.5.0-292)

是否可以使用位置可变的文件创建配置单元表?

我有这个脚本-file.txt

drop table if exists test2;
create table test2 (
col1 string
)
location '${hiveconf:name}'

并使用以下命令运行它-beeline_d -f file.txt --hiveconf name ='/ asset / test'

但是我回来了Error: Failed to open new session: org.apache.hive.service.cli.HiveSQLException: java.lang.IllegalArgumentException: Cannot modify name at runtime. It is not in list of params that are allowed to be modified at runtime (state=,code=0)

0 个答案:

没有答案