sandynz commented on pull request #15456:
URL: https://github.com/apache/shardingsphere/pull/15456#issuecomment-1042513501
Test passed:
```
mysql> CREATE SHARDING SCALING RULE scaling_name2(
-> INPUT(
-> BATCH_SIZE=1000
-> ),
-> OUTPUT(
-> WORKER_THREAD=40
-> ),
-> STREAM_CHANNEL(TYPE(NAME=MEMORY,
PROPERTIES("block-queue-size"=10000))),
-> COMPLETION_DETECTOR(TYPE(NAME=IDLE,
PROPERTIES("incremental-task-idle-minute-threshold"=1))),
-> DATA_CONSISTENCY_CHECKER(TYPE(NAME=DATA_MATCH,
PROPERTIES("chunk-size"=1000)))
-> );
Query OK, 0 rows affected (0.04 sec)
mysql> CREATE SHARDING SCALING RULE scaling_name3(
-> INPUT(
-> WORKER_THREAD=40,
-> BATCH_SIZE=1000
-> ),
-> OUTPUT(
-> WORKER_THREAD=40,
-> BATCH_SIZE=1000
-> ),
-> STREAM_CHANNEL(TYPE(NAME=MEMORY,
PROPERTIES("block-queue-size"=10000)))
-> );
Query OK, 0 rows affected (0.05 sec)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]