Github user cestella commented on a diff in the pull request:
https://github.com/apache/metron/pull/824#discussion_r149423194
--- Diff:
metron-platform/metron-indexing/src/main/java/org/apache/metron/indexing/dao/HBaseDao.java
---
@@ -121,13 +121,16 @@ public synchronized Document getLatest(String guid,
String sensorType) throws IO
}
@Override
+ public Iterable<Document> getAllLatest(Map<String, String>
guidToIndices) throws IOException {
+ return null;
--- End diff --
Why is there no implementation here? HBase certainly should be able to
have a multiget for the documents, no?
---