github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/split_region/run.sh (about) 1 #!/bin/bash 2 3 set -eu 4 5 CUR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) 6 source $CUR/../_utils/test_prepare 7 WORK_DIR=$OUT_DIR/$TEST_NAME 8 CDC_BINARY=cdc.test 9 SINK_TYPE=$1 10 11 function run() { 12 rm -rf $WORK_DIR && mkdir -p $WORK_DIR 13 14 start_tidb_cluster --workdir $WORK_DIR 15 16 cd $WORK_DIR 17 18 # record tso before we create tables to skip the system table DDLs 19 start_ts=$(run_cdc_cli_tso_query ${UP_PD_HOST_1} ${UP_PD_PORT_1}) 20 21 run_sql_file $CUR/data/prepare.sql ${UP_TIDB_HOST} ${UP_TIDB_PORT} 22 23 run_cdc_server --workdir $WORK_DIR --binary $CDC_BINARY 24 25 TOPIC_NAME="ticdc-split-region-test-$RANDOM" 26 case $SINK_TYPE in 27 kafka) SINK_URI="kafka://127.0.0.1:9092/$TOPIC_NAME?protocol=open-protocol&partition-num=4&kafka-version=${KAFKA_VERSION}&max-message-bytes=10485760" ;; 28 storage) SINK_URI="file://$WORK_DIR/storage_test/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true" ;; 29 pulsar) 30 run_pulsar_cluster $WORK_DIR oauth 31 SINK_URI="pulsar://127.0.0.1:6650/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true" 32 ;; 33 *) SINK_URI="mysql://normal:123456@127.0.0.1:3306/" ;; 34 esac 35 36 if [ "$SINK_TYPE" == "pulsar" ]; then 37 cat <<EOF >>$WORK_DIR/pulsar_test.toml 38 [sink.pulsar-config.oauth2] 39 oauth2-issuer-url="http://localhost:9096" 40 oauth2-audience="cdc-api-uri" 41 oauth2-client-id="1234" 42 oauth2-private-key="${WORK_DIR}/credential.json" 43 EOF 44 else 45 echo "" >$WORK_DIR/pulsar_test.toml 46 fi 47 run_cdc_cli changefeed create --start-ts=$start_ts --sink-uri="$SINK_URI" --config $WORK_DIR/pulsar_test.toml 48 case $SINK_TYPE in 49 kafka) run_kafka_consumer $WORK_DIR "kafka://127.0.0.1:9092/$TOPIC_NAME?protocol=open-protocol&partition-num=4&version=${KAFKA_VERSION}&max-message-bytes=10485760" ;; 50 storage) run_storage_consumer $WORK_DIR $SINK_URI "" "" ;; 51 pulsar) run_pulsar_consumer --upstream-uri $SINK_URI --oauth2-private-key ${WORK_DIR}/credential.json --oauth2-issuer-url "http://localhost:9096" -- oauth2-client-id "1234" ;; 52 esac 53 54 # sync_diff can't check non-exist table, so we check expected tables are created in downstream first 55 check_table_exists split_region.test1 ${DOWN_TIDB_HOST} ${DOWN_TIDB_PORT} 56 check_table_exists split_region.test2 ${DOWN_TIDB_HOST} ${DOWN_TIDB_PORT} 57 check_sync_diff $WORK_DIR $CUR/conf/diff_config.toml 58 59 # split table into 5 regions, run some other DMLs and check data is synchronized to downstream 60 run_sql "split table split_region.test1 between (1) and (100000) regions 50;" 61 run_sql "split table split_region.test2 between (1) and (100000) regions 50;" 62 run_sql_file $CUR/data/increment.sql ${UP_TIDB_HOST} ${UP_TIDB_PORT} 63 check_sync_diff $WORK_DIR $CUR/conf/diff_config.toml 64 65 cleanup_process $CDC_BINARY 66 } 67 68 trap stop_tidb_cluster EXIT 69 run $* 70 check_logs $WORK_DIR 71 echo "[$(date)] <<<<<< run test case $TEST_NAME success! >>>>>>"