sandynz commented on issue #15876: URL: https://github.com/apache/shardingsphere/issues/15876#issuecomment-1079928343
Hi @galaxylqx , I did the similar thing for thread pool before, it seems more flexible for shared pool than dedicated pools, they're different ways. If every database need to limit maximum connections count, and the minimum connections count is `0`, then it's resource isolation problem, the 2 ways above have similar effect, though one of them need much more configuration. For example: [Hystrix Execution Isolation Strategy]( https://github.com/Netflix/Hystrix/wiki/Configuration#execution.isolation.strategy ). In ShardingSphere, there's `schema` which is the database concept in ShardingSphere, and the underlying RDBMS database is the abstraction level and created by users for now. For ShardingSphere cloud product, the resource abstraction level might be machine instance or database instance, and underlying databases are created by ShardingSphere, then users just need few configuration. This might be the feature you want. -- 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]
