Github user cestella commented on a diff in the pull request: https://github.com/apache/metron/pull/824#discussion_r149423571 --- Diff: metron-platform/metron-indexing/src/main/java/org/apache/metron/indexing/dao/IndexDao.java --- @@ -65,6 +65,8 @@ */ Document getLatest(String guid, String sensorType) throws IOException; + Iterable<Document> getAllLatest(Map<String, String> guidToIndices) throws IOException; --- End diff -- Actually, even a default implementation here that calls getLatest might be useful.
---