github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/clustered_index/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=$(cdc cli tso query --pd=http://$UP_PD_HOST_1:$UP_PD_PORT_1) 20 21 run_cdc_server --workdir $WORK_DIR --binary $CDC_BINARY 22 23 TOPIC_NAME="ticdc-clustered-index-test-$RANDOM" 24 case $SINK_TYPE in 25 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" ;; 26 storage) SINK_URI="file://$WORK_DIR/storage_test/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true" ;; 27 pulsar) 28 run_pulsar_cluster $WORK_DIR normal 29 SINK_URI="pulsar://127.0.0.1:6650/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true" 30 ;; 31 *) SINK_URI="mysql://normal:123456@127.0.0.1:3306/" ;; 32 esac 33 cdc cli changefeed create --start-ts=$start_ts --sink-uri="$SINK_URI" 34 case $SINK_TYPE in 35 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" ;; 36 storage) run_storage_consumer $WORK_DIR $SINK_URI "" "" ;; 37 pulsar) run_pulsar_consumer --upstream-uri $SINK_URI ;; 38 esac 39 run_sql "set global tidb_enable_clustered_index=1;" ${UP_TIDB_HOST} ${UP_TIDB_PORT} 40 # TiDB global variables cache 2 seconds at most 41 sleep 2 42 run_sql_file $CUR/data/test.sql ${UP_TIDB_HOST} ${UP_TIDB_PORT} 43 # sync_diff can't check non-exist table, so we check expected tables are created in downstream first 44 45 check_table_exists clustered_index_test.t0 ${DOWN_TIDB_HOST} ${DOWN_TIDB_PORT} 46 check_table_exists clustered_index_test.t1 ${DOWN_TIDB_HOST} ${DOWN_TIDB_PORT} 47 check_table_exists clustered_index_test.t2 ${DOWN_TIDB_HOST} ${DOWN_TIDB_PORT} 48 echo "check table exists success" 49 check_sync_diff $WORK_DIR $CUR/conf/diff_config.toml 60 50 51 cleanup_process $CDC_BINARY 52 } 53 54 # kafka is not supported yet. 55 # ref to issue: https://github.com/pingcap/tiflow/issues/3421 56 # TODO: enable this test for kafka, storage and pulsar sink. 57 if [ "$SINK_TYPE" != "mysql" ]; then 58 echo "[$(date)] <<<<<< skip test case $TEST_NAME for $SINK_TYPE! >>>>>>" 59 exit 0 60 fi 61 trap stop_tidb_cluster EXIT 62 run $* 63 check_logs $WORK_DIR 64 echo "[$(date)] <<<<<< run test case $TEST_NAME success! >>>>>>"