quotas
Contains information about quotas.
Columns:
name
(String) β Quota name.id
(UUID) β Quota ID.storage
(String) β Storage of quotas. Possible value: βusers.xmlβ if a quota configured in the users.xml file, βdiskβ if a quota configured by an SQL-query.keys
(Array(Enum8)) β Key specifies how the quota should be shared. If two connections use the same quota and key, they share the same amounts of resources. Values:[]
β All users share the same quota.['user_name']
β Connections with the same user name share the same quota.['ip_address']
β Connections from the same IP share the same quota.['client_key']
β Connections with the same key share the same quota. A key must be explicitly provided by a client. When using clickhouse-client, pass a key value in the--quota_key
parameter, or use thequota_key
parameter in the client configuration file. When using HTTP interface, use theX-ClickHouse-Quota
header.['user_name', 'client_key']
β Connections with the sameclient_key
share the same quota. If a key isnβt provided by a client, the qouta is tracked foruser_name
.['client_key', 'ip_address']
β Connections with the sameclient_key
share the same quota. If a key isnβt provided by a client, the qouta is tracked forip_address
.
durations
(Array(UInt64)) β Time interval lengths in seconds.apply_to_all
(UInt8) β Logical value. It shows which users the quota is applied to. Values:0
β The quota applies to users specify in theapply_to_list
.1
β The quota applies to all users except those listed inapply_to_except
.
apply_to_list
(Array(String)) β List of user names/roles that the quota should be applied to.apply_to_except
(Array(String)) β List of user names/roles that the quota should not apply to.