-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ES: do not set _type when using Bulk API for v7 client (#5104)
* ES: do not set type for v7 * add buildkite job * disable os2 security
- Loading branch information
1 parent
434bcee
commit 45c3cee
Showing
3 changed files
with
85 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
version: "3.5" | ||
|
||
services: | ||
cassandra: | ||
image: cassandra:3.11 | ||
networks: | ||
services-network: | ||
aliases: | ||
- cassandra | ||
|
||
zookeeper: | ||
image: wurstmeister/zookeeper:3.4.6 | ||
networks: | ||
services-network: | ||
aliases: | ||
- zookeeper | ||
|
||
kafka: | ||
image: wurstmeister/kafka:2.12-2.1.1 | ||
depends_on: | ||
- zookeeper | ||
networks: | ||
services-network: | ||
aliases: | ||
- kafka | ||
environment: | ||
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092 | ||
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092 | ||
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | ||
|
||
elasticsearch: | ||
image: opensearchproject/opensearch:2.5.0 | ||
networks: | ||
services-network: | ||
aliases: | ||
- elasticsearch | ||
environment: | ||
- discovery.type=single-node | ||
- plugins.security.disabled=true | ||
|
||
integration-test-cassandra: | ||
build: | ||
context: ../../ | ||
dockerfile: ./docker/buildkite/Dockerfile | ||
environment: | ||
- "CASSANDRA=1" | ||
- "CASSANDRA_SEEDS=cassandra" | ||
- "ES_SEEDS=elasticsearch" | ||
- "KAFKA_SEEDS=kafka" | ||
- "TEST_TAG=esintegration" | ||
- "ES_VERSION=v7" | ||
- BUILDKITE_AGENT_ACCESS_TOKEN | ||
- BUILDKITE_JOB_ID | ||
- BUILDKITE_BUILD_ID | ||
- BUILDKITE_BUILD_NUMBER | ||
depends_on: | ||
- cassandra | ||
- elasticsearch | ||
- kafka | ||
volumes: | ||
- ../../:/cadence | ||
- /usr/bin/buildkite-agent:/usr/bin/buildkite-agent | ||
networks: | ||
services-network: | ||
aliases: | ||
- integration-test | ||
|
||
networks: | ||
services-network: | ||
name: services-network | ||
driver: bridge |