Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在主要压缩范围设置了一个迭代器,我用它来写入表。因此,每当我想进行重大压缩时,它就会开始。但是我想在写入过程完成后查询这个表。为此,我需要知道主要压缩是否已完成并且所有数据是否已写入表中。有没有办法让我知道这一点?
如果您请求主要压缩,您可以在命令中添加一个标志,以便它仅在压缩完成后返回。在 shell 中,这是“compact -w”。在 Java API 中,将其中一个 connector.tableOperations().compact(...) 方法的 wait 参数设置为 true。