hive :从分布式缓存中删除内容

发布于 2024-11-19 18:02:18 字数 394 浏览 3 评论 0原文

我可以通过向分布式缓存添加内容

add file largelookuptable

,然后运行一堆 HQL。

现在,当我有一系列命令时,如下所示,

add file largelookuptable1;
select blah from blahness using somehow largelookuptable1;
add file largelookuptable2;
select newblah from otherblah using largelookuptable2;

在本例中,largelookuptable1 不必要可用于第二个查询。有没有办法在第二个查询运行之前摆脱它?

I can add stuff to distributed cache via

add file largelookuptable

and then run a bunch of HQL.

now when I have a series of commands, like the following

add file largelookuptable1;
select blah from blahness using somehow largelookuptable1;
add file largelookuptable2;
select newblah from otherblah using largelookuptable2;

in this case largelookuptable1 is unnecessarily available for the second query. is there a way I can get rid of it before the second query runs ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

書生途 2024-11-26 18:02:19

在 Hive CLI 上,键入:
删除文件largelookuptable1;

同样的事情也适用于添加到分布式缓存的 jar。

语法(来自 Hive CLI):
用法:删除 [FILE|JAR|ARCHIVE] []*

On the Hive CLI, type:
delete file largelookuptable1;

Same thing applies to jars added to distributed cache.

Syntax (from Hive CLI):
Usage: delete [FILE|JAR|ARCHIVE] []*

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文