Github user merrimanr commented on a diff in the pull request:
https://github.com/apache/metron/pull/802#discussion_r145427376
--- Diff:
metron-platform/metron-elasticsearch/src/test/java/org/apache/metron/elasticsearch/integration/ElasticsearchMetaAlertIntegrationTest.java
---
@@ -83,6 +90,7 @@ public static void setup() throws Exception {
put("es.date.format", DATE_FORMAT);
}
};
+ accessConfig.setMaxSearchResults(1000);
--- End diff --
I'm not sure but adding that should be trivial. The REST layer does
provide a default but I can add it here too.
---