Skip to content

Commit

Permalink
YDB FQ: Update github.com/ydb-platform/fq-connector-go to 0.5.6-rc.2 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyisaev2 authored Aug 27, 2024
1 parent 4b3fd52 commit cb032f1
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- 8123
fq-connector-go:
container_name: fq-tests-ch-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- 2130
volumes:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
fq-connector-go:
container_name: fq-tests-mssql-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- 2130
volumes:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
fq-connector-go:
container_name: fq-tests-mysql-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- 2130
volumes:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
fq-connector-go:
container_name: fq-tests-oracle-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- 2130
volumes:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
fq-connector-go:
container_name: fq-tests-pg-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- 2130
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
echo \"$$(dig fq-tests-ydb-ydb +short) fq-tests-ydb-ydb\" >> /etc/hosts; cat /etc/hosts;
/opt/ydb/bin/fq-connector-go server -c /opt/ydb/cfg/fq-connector-go.yaml"
container_name: fq-tests-ydb-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- 2130
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,37 @@ paging:

conversion:
use_unsafe_converters: true

data_source_default: &data_source_default_var
open_connection_timeout: 5s
ping_connection_timeout: 5s
exponential_backoff:
initial_interval: 500ms
randomization_factor: 0.5
multiplier: 1.5
max_interval: 20s
max_elapsed_time: 2m

datasources:
clickhouse:
<<: *data_source_default_var

greenplum:
<<: *data_source_default_var

ms_sql_server:
<<: *data_source_default_var

mysql:
<<: *data_source_default_var
result_chan_capacity: 1024

postgresql:
<<: *data_source_default_var

oracle:
<<: *data_source_default_var

ydb:
<<: *data_source_default_var
use_underlay_network_for_dedicated_databases: false
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- 8123
fq-connector-go:
container_name: fq-tests-join-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- 2130
volumes:
Expand Down
2 changes: 1 addition & 1 deletion ydb/tests/fq/generic/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
echo \"$$(dig tests-fq-generic-ydb +short) tests-fq-generic-ydb\" >> /etc/hosts; cat /etc/hosts;
/opt/ydb/bin/fq-connector-go server -c /opt/ydb/cfg/fq-connector-go.yaml"
container_name: tests-fq-generic-fq-connector-go
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.5-rc.2@sha256:eac7a3107f4357d515573dd0907c76227726ffe54e612e580d52c33488b06ef5
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.6-rc.2@sha256:46fc0be7f288351edc5ccfef9a118c4f67ca02c82d272f1c6df72029649ed0de
ports:
- "2130"
postgresql:
Expand Down

0 comments on commit cb032f1

Please sign in to comment.