public interface LoadbalanceRules
| Modifier and Type | Field and Description |
|---|---|
static String |
ADAPTIVE
adaptive load balance.
|
static String |
CONSISTENT_HASH
Consistent Hash, requests with the same parameters are always sent to the same provider.
|
static String |
EMPTY |
static String |
LEAST_ACTIVE
Filter the number of invokers with the least number of active calls and count the weights and quantities of these invokers.
|
static String |
RANDOM
This class select one provider from multiple providers randomly.
|
static String |
ROUND_ROBIN
Round-robin load balance.
|
static String |
SHORTEST_RESPONSE
Filter the number of invokers with the shortest response time of success calls and count the weights and quantities of these invokers.
|
static final String RANDOM
static final String ROUND_ROBIN
static final String LEAST_ACTIVE
static final String CONSISTENT_HASH
static final String SHORTEST_RESPONSE
static final String ADAPTIVE
static final String EMPTY
Copyright © 2011–2020 The Apache Software Foundation. All rights reserved.