-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: More integrations tests for jni catalog. (#14885)
- Loading branch information
1 parent
da06fa2
commit 5bac8e7
Showing
47 changed files
with
2,496 additions
and
421 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
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
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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
Use following steps to run: | ||
# How to run the test | ||
|
||
1. ./risedev d full-iceberg-bench | ||
2. cd docker; docker compose up -d | ||
3. poetry update | ||
4. poetry run python init.py | ||
5. poetry run python check.py | ||
Run following command to run the test: | ||
|
||
```bash | ||
cd python | ||
poetry update | ||
poetry run python main.py | ||
``` | ||
|
||
# How to override risingwave image version: | ||
|
||
```bash | ||
export RW_IMAGE=<your version> | ||
``` |
This file was deleted.
Oops, something went wrong.
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,20 @@ | ||
[risingwave] | ||
db=dev | ||
user=root | ||
host=127.0.0.1 | ||
port=4566 | ||
|
||
[sink] | ||
connector = iceberg | ||
type=append-only | ||
force_append_only = true | ||
catalog.type = hive | ||
catalog.uri = thrift://metastore:9083 | ||
warehouse.path = s3://icebergdata/demo | ||
s3.endpoint=http://minio-0:9301 | ||
s3.access.key = hummockadmin | ||
s3.secret.key = hummockadmin | ||
s3.region = ap-southeast-1 | ||
catalog.name = demo | ||
database.name=s1 | ||
table.name=t1 |
116 changes: 116 additions & 0 deletions
116
integration_tests/iceberg-sink2/docker/hive/docker-compose.yml
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,116 @@ | ||
version: '3.8' | ||
|
||
services: | ||
postgres: | ||
image: postgres:16.1 | ||
environment: | ||
POSTGRES_USER: admin | ||
POSTGRES_PASSWORD: 123456 | ||
POSTGRES_DB: metastore_db | ||
expose: | ||
- 5432 | ||
ports: | ||
- "5432:5432" | ||
networks: | ||
iceberg_net: | ||
spark: | ||
depends_on: | ||
- minio-0 | ||
- metastore | ||
image: ghcr.io/icelake-io/icelake-spark:1.0 | ||
environment: | ||
- AWS_ACCESS_KEY_ID=hummockadmin | ||
- AWS_SECRET_ACCESS_KEY=hummockadmin | ||
- AWS_REGION=us-east-1 | ||
- SPARK_HOME=/opt/spark | ||
- PYSPARK_PYTHON=/usr/bin/python3.9 | ||
- PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/spark/bin:/opt/spark/sbin | ||
user: root | ||
networks: | ||
iceberg_net: | ||
links: | ||
- minio-0:icebergdata.minio-0 | ||
expose: | ||
- 15002 | ||
healthcheck: | ||
test: netstat -ltn | grep -c 15002 | ||
interval: 1s | ||
retries: 1200 | ||
volumes: | ||
- ./spark-script:/spark-script | ||
entrypoint: [ "/spark-script/spark-connect-server.sh" ] | ||
|
||
risingwave-standalone: | ||
extends: | ||
file: ../../../../docker/docker-compose.yml | ||
service: risingwave-standalone | ||
healthcheck: | ||
test: | ||
- CMD-SHELL | ||
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/4566; exit $$?;' | ||
interval: 1s | ||
timeout: 30s | ||
environment: | ||
- AWS_REGION=us-east-1 | ||
links: | ||
- minio-0:icebergdata.minio-0 | ||
networks: | ||
iceberg_net: | ||
|
||
minio-0: | ||
extends: | ||
file: ../../../../docker/docker-compose.yml | ||
service: minio-0 | ||
entrypoint: " | ||
/bin/sh -c ' | ||
set -e | ||
mkdir -p \"/data/icebergdata/demo\" | ||
mkdir -p \"/data/hummock001\" | ||
/usr/bin/docker-entrypoint.sh \"$$0\" \"$$@\" | ||
'" | ||
networks: | ||
iceberg_net: | ||
|
||
etcd-0: | ||
extends: | ||
file: ../../../../docker/docker-compose.yml | ||
service: etcd-0 | ||
networks: | ||
iceberg_net: | ||
|
||
metastore: | ||
image: naushadh/hive-metastore | ||
depends_on: | ||
- postgres | ||
environment: | ||
- DATABASE_HOST=postgres | ||
- DATABASE_DB=metastore_db | ||
- DATABASE_USER=admin | ||
- DATABASE_PASSWORD=123456 | ||
- AWS_ACCESS_KEY_ID=hummockadmin | ||
- AWS_SECRET_ACCESS_KEY=hummockadmin | ||
- S3_ENDPOINT_URL=http://minio-0:9301 | ||
- S3_BUCKET=icebergdata | ||
- S3_PREFIX=demo | ||
ports: | ||
- "9083:9083" | ||
expose: | ||
- 9083 | ||
networks: | ||
iceberg_net: | ||
|
||
volumes: | ||
risingwave-standalone: | ||
external: false | ||
etcd-0: | ||
external: false | ||
minio-0: | ||
external: false | ||
|
||
networks: | ||
iceberg_net: | ||
name: iceberg |
23 changes: 23 additions & 0 deletions
23
integration_tests/iceberg-sink2/docker/hive/spark-script/spark-connect-server.sh
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,23 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
JARS=$(find /opt/spark/deps -type f -name "*.jar" | tr '\n' ':') | ||
|
||
/opt/spark/sbin/start-connect-server.sh \ | ||
--master local[3] \ | ||
--driver-class-path $JARS \ | ||
--conf spark.driver.bindAddress=0.0.0.0 \ | ||
--conf spark.sql.catalog.demo=org.apache.iceberg.spark.SparkCatalog \ | ||
--conf spark.sql.extensions=org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions \ | ||
--conf spark.sql.catalog.demo.catalog-impl=org.apache.iceberg.hive.HiveCatalog \ | ||
--conf spark.sql.catalog.demo.uri=thrift://metastore:9083 \ | ||
--conf spark.sql.catalog.demo.clients=10 \ | ||
--conf spark.sql.catalog.demo.warehouse=s3a://icebergdata/demo \ | ||
--conf spark.sql.catalog.demo.hadoop.fs.s3a.endpoint=http://minio-0:9301 \ | ||
--conf spark.sql.catalog.demo.hadoop.fs.s3a.path.style.access=true \ | ||
--conf spark.sql.catalog.demo.hadoop.fs.s3a.access.key=hummockadmin \ | ||
--conf spark.sql.catalog.demo.hadoop.fs.s3a.secret.key=hummockadmin \ | ||
--conf spark.sql.defaultCatalog=demo | ||
|
||
tail -f /opt/spark/logs/spark*.out |
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,22 @@ | ||
[risingwave] | ||
db=dev | ||
user=root | ||
host=127.0.0.1 | ||
port=4566 | ||
|
||
[sink] | ||
connector = iceberg | ||
type=append-only | ||
force_append_only = true | ||
warehouse.path = s3://icebergdata/demo | ||
s3.endpoint=http://minio-0:9301 | ||
s3.access.key = hummockadmin | ||
s3.secret.key = hummockadmin | ||
s3.region = ap-southeast-1 | ||
catalog.name = demo | ||
catalog.type = jdbc | ||
catalog.uri = jdbc:postgresql://postgres:5432/iceberg | ||
catalog.jdbc.user = admin | ||
catalog.jdbc.password = 123456 | ||
database.name=s1 | ||
table.name=t1 |
Oops, something went wrong.