Memory quota
The memquota
adapter can be used to support Istio’s quota management system. Although functional, this adapter is not intended for production use and is suited for local testing only. The reason for this limitation is that this adapter can only be used in meshes where there is a single instance of Mixer running for the whole mesh (i.e. non-HA configuration) and if that single instance crashes, all outstanding quota values will be lost.
Params
Configuration format for the memquota
adapter.
Field | Type | Description |
---|
quotas | Params.Quota[] | The set of known quotas. |
minDeduplicationDuration | google.protobuf.Duration | Minimum number of seconds that deduplication is possible for a given operation. |
Params.Override
Defines an override value for a quota. If no override matches a particular quota request, the default for the quota is used.
Field | Type | Description |
---|
dimensions | map<string, string> | The specific dimensions for which this override applies. String representation of instance dimensions is used to check against configured dimensions. |
maxAmount | int64 | The upper limit for this quota. |
validDuration | google.protobuf.Duration | The amount of time allocated quota remains valid before it is automatically released. This is only meaningful for rate limit quotas, otherwise the value must be zero. |
Params.Quota
Defines a quota’s limit and duration.
Field | Type | Description |
---|
name | string | The name of the quota |
maxAmount | int64 | The upper limit for this quota. |
validDuration | google.protobuf.Duration | The amount of time allocated quota remains valid before it is automatically released. This is only meaningful for rate limit quotas, otherwise the value must be zero. |
overrides | Params.Override[] | Overrides associated with this quota. The first matching override is applied. |