RaigorJiang commented on issue #29499:
URL: 
https://github.com/apache/shardingsphere/issues/29499#issuecomment-1868521590

   @niaucz 
   I used a similar configuration to yours and can't reproduce the problem. Can 
you provide a reproducible demo project?
   
   #### rules
   ```yaml
   rules:
   - !READWRITE_SPLITTING
     dataSources:
       readwrite_ds:
         writeDataSourceName: write_ds
         readDataSourceNames:
           - read_ds_0
         loadBalancerName: random
     loadBalancers:
       random:
         type: RANDOM
   - !SHARDING
     autoTables:
       t_order:
         actualDataSources: readwrite_ds
         shardingStrategy:
           standard:
             shardingColumn: order_id
             shardingAlgorithmName: hash-mod-module-algorithm
     shardingAlgorithms:
       hash-mod-module-algorithm:
         type: MOD
         props:
           sharding-count: 4
   - !SINGLE
     tables:
       - "*.*"
   ```
   
   #### log
   <img width="1129" alt="image" 
src="https://github.com/apache/shardingsphere/assets/5668787/5daba46f-2cf4-4627-badb-e09c74119fb2";>
   


-- 
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]

Reply via email to