0

在练习过程中,我在 hive 提示符中使用以下查询创建了 tmp 表。

$create temporary table tmp (id int);

现在表已成功创建,如果我关闭配置单元会话表将被配置单元自动删除,根据文档,这是正确的。

现在,还有其他方法可以使用以下命令运行相同的查询。

$hive -e 'create temporary table tmp (id int);'

表已成功创建,但我怀疑这次,为什么 tmp 表这次不会被自动删除。执行下一个命令后,我仍然可以看到 tmp 表。

$hive -e 'show tables;'
OK
customers
order
product
tmp
Time taken: 0.856 seconds, Fetch: 4 row(s)
4

1 回答 1

0

很可能您已经拥有同名但不是临时的表。

重现步骤:

我已经检查过没有这样的表(不是临时的)已经存在。

hive -e 'use myschema; show tables "tmp";'
--no rows returned

然后我运行了你的例子:

$hive -e 'use myschema; create temporary table tmp (id int);'
OK

检查没有表:

hive -e 'use myschema; show tables "tmp";'
--no rows returned - it works correctly

创建非临时

hive -e 'use myschema; create table tmp (id int);'
--ok

现在有持久表:

hive -e 'use myschema; show tables "tmp";'
OK
tmp
Time taken: 0.081 seconds, Fetched: 1 row(s)

尝试创建相同的临时表:

hive -e 'use myschema; create temporary table tmp (id int);'
OK

持久表保留在模式中。临时表已成功删除,临时表在会话内被隔离,其他会话不可见。

于 2016-11-25T09:33:24.153 回答