Github user merrimanr commented on the issue:
https://github.com/apache/metron/pull/858
@justinleet latest commit includes the changes I had to make to switch a
preexisting integration test to the new infrastructure. I verified it works
locally, we'll see how it goes with Travis.
It was pretty straightforward and consisted of mainly 2 steps:
1. Remove the in memory components and replace any helper methods for
setup/teardown
2. Add a namespace to all the test assets (indices and doc types in this
case)
I believe converting other tests will follow this pattern as well. To
answer @ottobackwards's original question about
[#854](https://github.com/apache/metron/pull/854), adding namespaces will be
required when running the tests in parallel against shared infrastructure.
Cleaning up at the beginning/end won't be enough.
This is meant only as an example, happy to revert it and add it in a future
PR.
---