我已经使用spark使用python代码创建了一个外部配置单元表,但是当我想使用配置单元外壳查看表时遇到了问题。
这些请求均无效:
describe hive_table, SELECT, Alter......
*hive> describe hive_table;
**失败:SemanticException无法获取表hive_table。 java.io.IOException:方案的无文件系统:null *
创建外部配置单元表:
(df.write.partitionBy(config['col_part'])
.mode('overwrite')
.format(config['format_tbl_hive'])
.saveAsTable(hive_tbl, path=hive_tbl_dir))