1

我尝试编写一个查询来删除宝藏数据中的一些行,但服务器忽略了它。我缺少解决此问题的文档。

这是日志:

    Use 'td job:show 2485728' to show the status.
queued...
  started at 2013-04-18T10:22:32Z
  Hive history file=/mnt/hive/tmp/2073/hive_job_log__336863980.txt
  finished at 2013-04-18T10:22:39Z
  Ignored "delete from mytable where time < unix_timestamp() - 30*60*60*24"
4

1 回答 1

1

抱歉,HIVE 中没有删除语句。一种可能的技巧是重写表格:

INSERT OVERWRITE TABLE mytable
SELECT * FROM mytable
WHERE time >= unix_timestamp() - 30*60*60*24
于 2013-04-18T13:57:32.330 回答