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.
调用返回的 Result 数组的顺序是什么HTable.get(List<Get>)? 我的意思是,假设输入列表的顺序相同是否正确?
HTable.get(List<Get>)
结果数组中的顺序将与输入列表的顺序相同。与批处理方法一样,未定义操作的执行顺序,但结果将始终保持相同的顺序。由于失败的gets 的结果数组中有一个空值,因此如果不查看每个Result 实例,就很难确定哪些失败了。