mirror of https://github.com/apache/nifi.git
fe1139b8bb
- Moved commons-lang3 version management to root Maven configuration - Refactored limited usage of StringUtils is nifi-reporting-utils to remove commons-lang3 - Refactored limited usage of StringUtils in nifi-websocket-processors to remove commons-lang3 Signed-off-by: Matthew Burgess <mattyb149@apache.org> This closes #5773 |
||
---|---|---|
.. | ||
src | ||
README.md | ||
pom.xml |
README.md
Elasticsearch Client Service
Integration Tests
The nifi-elasticsearch-client-service
component build allows for optional Integration Tests to be executed to verify
additional functionality.
The Integration Tests create an in-memory instance of Elasticsearch, populate it with known data, perform operations upon the instance and verify the results.
These can be activated by running the following build commands:
Elasticsearch 5
Test integration with Elasticsearch 5.x:
mvn -P integration-tests,elasticsearch-oss clean verify
Elasticsearch 6
Test integration with Elasticsearch 6.x:
mvn -P integration-tests,elasticsearch-oss,elasticsearch-6 clean verify
Elasticsearch 7
Test integration with Elasticsearch 7.x:
With X-Pack
Allows for testing of some X-Pack only features such as "Point in Time" querying:
mvn -P integration-tests,elasticsearch-default,elasticsearch-7 clean verify
Without X-Pack
mvn -P integration-tests,elasticsearch-oss,elasticsearch-7 clean verify