You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we have DistSQL, users can use Proxy without configuring any database.
However, when a user wants to experience Proxy, he must configure AUTHORITY rule in server.yaml, so that it can start successfully.
In fact, ShardingSphere provides DefaultAuthorityRuleConfigurationBuilder and DefaultUser, which can build a root user in the absence of Authority Rule Configuration. If we enable this feature, the user's first experience can be simplified to the greatest extent, because he can start it directly after decompression.
Currently, the reason why this feature cannot be enabled is that the authorityRuleConfig is checked in the ProxyConfigurationLoader and an exception will be thrown if it is empty.
Hi community,
Since we have DistSQL, users can use Proxy without configuring any database.
However, when a user wants to experience Proxy, he must configure
AUTHORITY
rule in server.yaml, so that it can start successfully.In fact, ShardingSphere provides
DefaultAuthorityRuleConfigurationBuilder
andDefaultUser
, which can build aroot
user in the absence ofAuthority Rule Configuration
. If we enable this feature, the user's first experience can be simplified to the greatest extent, because he can start it directly after decompression.Currently, the reason why this feature cannot be enabled is that the
authorityRuleConfig
is checked in theProxyConfigurationLoader
and an exception will be thrown if it is empty.I recommend removing this restriction and building a default
root
user for users when there is noAuthority Rule Configuration
.The text was updated successfully, but these errors were encountered: