SHOW LOAD BALANCE ALGORITHM PLUGINS

Description

The SHOW LOAD BALANCE ALGORITHM PLUGINS syntax is used to query all the implementations of the interface org.apache.shardingsphere.infra.algorithm.loadbalancer.core.LoadBalanceAlgorithm.

Syntax

Grammar Railroad diagram

  1. showLoadBalanceAlgorithmPlugins ::=
  2. 'SHOW' 'LOAD' 'BALANCE' 'ALGORITHM' 'PLUGINS'

Return Value Description

ColumnsDescription
typetype
type_aliasestype aliases
descriptiondescription

Example

  • Query all the implementations for org.apache.shardingsphere.infra.algorithm.loadbalancer.core.LoadBalanceAlgorithm interface
  1. SHOW LOAD BALANCE ALGORITHM PLUGINS
  1. SHOW LOAD BALANCE ALGORITHM PLUGINS;
  2. +-------------+--------------+-------------+
  3. | type | type_aliases | description |
  4. +-------------+--------------+-------------+
  5. | ROUND_ROBIN | | |
  6. | RANDOM | | |
  7. | WEIGHT | | |
  8. +-------------+--------------+-------------+
  9. 3 rows in set (0.03 sec)

Reserved word

SHOW, LOAD, BALANCE, ALGORITHM, PLUGINS