Skip to content

Commit 979f604

Browse files
committed
Merge remote-tracking branch 'root/main' into feat_refactor_tag
2 parents f239400 + 11ba84b commit 979f604

File tree

81 files changed

+1436
-1327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1436
-1327
lines changed

.github/actions/test_sqllogic_iceberg_tpch/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ runs:
2323
shell: bash
2424
run: |
2525
docker compose -f tests/sqllogictests/scripts/docker-compose-iceberg-tpch.yml up -d
26+
# Wait for rustfs to be ready
27+
for i in $(seq 1 30); do
28+
curl -sf http://127.0.0.1:9002/health/ready && break
29+
echo "Waiting for rustfs... ($i)"
30+
sleep 2
31+
done
32+
curl -sf http://127.0.0.1:9002/health/ready || { echo "rustfs failed to start after 60s"; exit 1; }
2633
2734
# Prepare Iceberg TPCH data
2835
data_dir="tests/sqllogictests/data"

Cargo.lock

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ databend-storages-common-stage = { path = "src/query/storages/common/stage" }
166166
databend-storages-common-table-meta = { path = "src/query/storages/common/table_meta" }
167167

168168
# External meta service
169-
databend-meta = "260312.6.0"
170-
databend-meta-test-harness = "260312.6.0"
169+
databend-meta = "260312.7.0"
170+
databend-meta-test-harness = "260312.7.0"
171171

172172
# External meta client
173173
databend-meta-client = "260205.5.0"
@@ -619,9 +619,9 @@ backtrace = { git = "https://github.com/rust-lang/backtrace-rs.git", rev = "7226
619619
color-eyre = { git = "https://github.com/eyre-rs/eyre.git", rev = "e5d92c3" }
620620
csv-core = { git = "https://github.com/youngsofun/rust-csv.git", rev = "44a0b3c" }
621621
databend-base = { git = "https://github.com/databendlabs/databend-base", tag = "v0.3.0" }
622-
databend-meta = { git = "https://github.com/databendlabs/databend-meta", tag = "v260312.6.0" }
622+
databend-meta = { git = "https://github.com/databendlabs/databend-meta", tag = "v260312.7.0" }
623623
databend-meta-client = { git = "https://github.com/databendlabs/databend-meta", tag = "v260205.5.0" }
624-
databend-meta-test-harness = { git = "https://github.com/databendlabs/databend-meta", tag = "v260312.6.0" }
624+
databend-meta-test-harness = { git = "https://github.com/databendlabs/databend-meta", tag = "v260312.7.0" }
625625
deltalake = { git = "https://github.com/delta-io/delta-rs", rev = "9954bff" }
626626
map-api = { git = "https://github.com/databendlabs/map-api", tag = "v0.4.2" }
627627
openraft = { git = "https://github.com/databendlabs/openraft", tag = "v0.10.0-alpha.17" }

docker/query-config.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ metric_api_address = "0.0.0.0:7070"
99
mysql_handler_host = "0.0.0.0"
1010
mysql_handler_port = 3307
1111

12-
clickhouse_http_handler_host = "0.0.0.0"
13-
clickhouse_http_handler_port = 8124
1412

1513
http_handler_host = "0.0.0.0"
1614
http_handler_port = 8000

scripts/ci/deploy/config/databend-query-management-mode.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ flight_api_address = "0.0.0.0:9091"
1919
mysql_handler_host = "0.0.0.0"
2020
mysql_handler_port = 3307
2121

22-
# Databend Query ClickHouse Handler.
23-
clickhouse_http_handler_host = "0.0.0.0"
24-
clickhouse_http_handler_port = 8124
2522

2623
# Databend Query HTTP Handler.
2724
http_handler_host = "0.0.0.0"

scripts/ci/deploy/config/databend-query-node-1.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ metric_api_address = "0.0.0.0:7070"
1919
mysql_handler_host = "0.0.0.0"
2020
mysql_handler_port = 3307
2121

22-
# Databend Query ClickHouse Handler.
23-
clickhouse_http_handler_host = "0.0.0.0"
24-
clickhouse_http_handler_port = 8124
2522

2623
# Databend Query HTTP Handler.
2724
http_handler_host = "0.0.0.0"

scripts/ci/deploy/config/databend-query-node-2.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ metric_api_address = "0.0.0.0:7072"
1919
mysql_handler_host = "0.0.0.0"
2020
mysql_handler_port = 3308
2121

22-
# Databend Query ClickHouse Handler.
23-
clickhouse_http_handler_host = "0.0.0.0"
24-
clickhouse_http_handler_port = 8126
2522

2623
# Databend Query HTTP Handler.
2724
http_handler_host = "0.0.0.0"

scripts/ci/deploy/config/databend-query-node-3.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ mysql_handler_host = "0.0.0.0"
2020
mysql_handler_port = 3309
2121

2222

23-
# Databend Query ClickHouse Handler.
24-
clickhouse_http_handler_host = "0.0.0.0"
25-
clickhouse_http_handler_port = 8127
2623

2724
# Databend Query HTTP Handler.
2825
http_handler_host = "0.0.0.0"

scripts/ci/deploy/config/databend-query-node-hive.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ metric_api_address = "0.0.0.0:7070"
1919
mysql_handler_host = "0.0.0.0"
2020
mysql_handler_port = 3307
2121

22-
# Databend Query ClickHouse HTTP Handler.
23-
clickhouse_http_handler_host = "0.0.0.0"
24-
clickhouse_http_handler_port = 8124
2522

2623
# Databend Query HTTP Handler.
2724
http_handler_host = "0.0.0.0"

scripts/ci/deploy/config/databend-query-node-native.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ metric_api_address = "0.0.0.0:7070"
1919
mysql_handler_host = "0.0.0.0"
2020
mysql_handler_port = 3307
2121

22-
# Databend Query ClickHouse Handler.
23-
clickhouse_http_handler_host = "0.0.0.0"
24-
clickhouse_http_handler_port = 8124
2522

2623
# Databend Query HTTP Handler.
2724
http_handler_host = "0.0.0.0"

0 commit comments

Comments
 (0)