Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 2.33 KB

File metadata and controls

30 lines (23 loc) · 2.33 KB

V1QueuingConfiguration

QueuingConfiguration holds the configuration parameters for queuing

Properties

Name Type Description Notes
hand_size int `handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8. [optional]
queue_length_limit int `queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50. [optional]
queues int `queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64. [optional]

Example

from kubernetes.client.models.v1_queuing_configuration import V1QueuingConfiguration

# TODO update the JSON string below
json = "{}"
# create an instance of V1QueuingConfiguration from a JSON string
v1_queuing_configuration_instance = V1QueuingConfiguration.from_json(json)
# print the JSON string representation of the object
print(V1QueuingConfiguration.to_json())

# convert the object into a dict
v1_queuing_configuration_dict = v1_queuing_configuration_instance.to_dict()
# create an instance of V1QueuingConfiguration from a dict
v1_queuing_configuration_from_dict = V1QueuingConfiguration.from_dict(v1_queuing_configuration_dict)

[Back to Model list] [Back to API list] [Back to README]