airbyte-integrations/connectors/destination-elasticsearch/README.md
This is the repository for the Elasticsearch destination connector in Java. For information about how to use this connector within Airbyte, see the User Documentation.
From the Airbyte repository root, run:
./gradlew :airbyte-integrations:connectors:destination-elasticsearch:build
If you are a community contributor, generate the necessary credentials and place them in secrets/config.json conforming to the spec file in src/main/resources/spec.json.
Note that the secrets directory is git-ignored by default, so there is no danger of accidentally checking in sensitive information.
If you are an Airbyte core member, follow the instructions to set up the credentials.
Build the connector image via Gradle:
./gradlew :airbyte-integrations:connectors:destination-elasticsearch:buildConnectorImage
Once built, the docker image name and tag on your host will be airbyte/destination-elasticsearch:dev.
the Dockerfile.
Then run any of the connector commands as follows:
docker run --rm airbyte/destination-elasticsearch:dev spec
docker run --rm -v $(pwd)/secrets:/secrets airbyte/destination-elasticsearch:dev check --config /secrets/config.json
docker run --rm -v $(pwd)/secrets:/secrets airbyte/destination-elasticsearch:dev discover --config /secrets/config.json
docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/destination-elasticsearch:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json
We use JUnit for Java tests.
Place unit tests under src/test/io/airbyte/integrations/destinations/elasticsearch.
Airbyte has a standard test suite that all destination connectors must pass. Implement the TODOs in
src/test-integration/java/io/airbyte/integrations/destinations/elasticsearchDestinationAcceptanceTest.java.
All commands should be run from airbyte project root. To run unit tests:
./gradlew :airbyte-integrations:connectors:destination-elasticsearch:unitTest
To run acceptance and custom integration tests:
./gradlew :airbyte-integrations:connectors:destination-elasticsearch:integrationTest
You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what?
airbyte-ci connectors --name=destination-elasticsearch testmetadata.yaml: increment the dockerImageTag value. Please follow semantic versioning for connectors.metadata.yaml content is up to date.docs/integrations/destinations/elasticsearch.md).