Skip to content

Commit b14c50b

Browse files
authored
Correct sasl and lagTreshold in Apache Kafka scalers (#1556)
* Correct default lagTreshold Apache Kafka scaler Signed-off-by: Rick Brouwer <[email protected]> * Correct sasl Apache Kafka scaler Signed-off-by: Rick Brouwer <[email protected]> * Correct default lagTreshold Apache Kafka Go scaler Signed-off-by: Rick Brouwer <[email protected]> --------- Signed-off-by: Rick Brouwer <[email protected]>
1 parent e364a4f commit b14c50b

File tree

24 files changed

+36
-36
lines changed

24 files changed

+36
-36
lines changed

content/docs/2.0/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ triggers:
3030
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
3131
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
3232
- `topic` - Name of the topic on which processing the offset lag.
33-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
33+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
3434
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
3535

3636
### Authentication Parameters

content/docs/2.1/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ triggers:
3030
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
3131
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
3232
- `topic` - Name of the topic on which processing the offset lag.
33-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
33+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
3434
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
3535

3636
### Authentication Parameters

content/docs/2.10/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ triggers:
4343
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4444
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
4545
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
46-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
46+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
4747
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
4848
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
4949
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of

content/docs/2.11/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ triggers:
4343
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4444
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
4545
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
46-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
46+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
4747
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
4848
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
4949
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of

content/docs/2.12/scalers/apache-kafka-go.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ triggers:
4646
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4747
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
4848
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
49-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
49+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
5050
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
5151
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5252
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of
@@ -56,7 +56,7 @@ If 'false' (the default), the scaler will keep a single consumer for that partit
5656
partition will be scaled to zero. See the [discussion](https://github.com/kedacore/keda/issues/2612) about this parameter.
5757
- `excludePersistentLag` - When set to `true`, the scaler will exclude partition lag for partitions which current offset is the same as the current offset of the previous polling cycle. This parameter is useful to prevent scaling due to partitions which current offset message is unable to be consumed. If `false` (the default), scaler will include all consumer lag in all partitions as per normal. (Default: `false`, Optional)
5858
- `partitionLimitation` - Comma separated list of partition ids to scope the scaling on. Allowed patterns are "x,y" and/or ranges "x-y". If set, the calculation of the lag will only take these ids into account. (Default: All partitions, Optional)
59-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
59+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
6060
- `tls` - To enable SSL auth for Kafka, set this to `enable`. If not set, TLS for Kafka is not used. (Values: `enable`, `disable`, Default: `disable`, Optional). This parameter could also be specified in `tls` in TriggerAuthentication
6161

6262
> **Note:**
@@ -81,7 +81,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
8181

8282
**SASL:**
8383

84-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional)
84+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional)
8585
- `username` - Username used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
8686
- `password` - Password used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
8787

content/docs/2.12/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ triggers:
4444
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4545
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
4646
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
47-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
47+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
4848
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
4949
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5050
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of

content/docs/2.13/scalers/apache-kafka-go.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ triggers:
4848
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4949
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
5050
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
51-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
51+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
5252
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
5353
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5454
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of
@@ -59,7 +59,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
5959
- `excludePersistentLag` - When set to `true`, the scaler will exclude partition lag for partitions which current offset is the same as the current offset of the previous polling cycle. This parameter is useful to prevent scaling due to partitions which current offset message is unable to be consumed. If `false` (the default), scaler will include all consumer lag in all partitions as per normal. (Default: `false`, Optional)
6060
- `limitToPartitionsWithLag` - When set to `true`, the number of replicas will not exceed the number of partitions having non-zero lag. `topic` must be specified when this parameter is set to `true`. `allowIdleConsumers` cannot be `true` when this parameter is `true`. (Default: `false`, Optional)
6161
- `partitionLimitation` - Comma separated list of partition ids to scope the scaling on. Allowed patterns are "x,y" and/or ranges "x-y". If set, the calculation of the lag will only take these ids into account. (Default: All partitions, Optional)
62-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
62+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
6363
- `tls` - To enable SSL auth for Kafka, set this to `enable`. If not set, TLS for Kafka is not used. (Values: `enable`, `disable`, Default: `disable`, Optional). This parameter could also be specified in `tls` in TriggerAuthentication
6464

6565
> **Note:**
@@ -84,7 +84,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
8484

8585
**SASL:**
8686

87-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional)
87+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional)
8888
- `username` - Username used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
8989
- `password` - Password used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
9090

content/docs/2.13/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ triggers:
4545
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4646
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
4747
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
48-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
48+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
4949
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
5050
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5151
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of

content/docs/2.14/scalers/apache-kafka-go.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ triggers:
4949
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
5050
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
5151
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
52-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
52+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
5353
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
5454
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5555
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of
@@ -60,7 +60,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
6060
- `excludePersistentLag` - When set to `true`, the scaler will exclude partition lag for partitions which current offset is the same as the current offset of the previous polling cycle. This parameter is useful to prevent scaling due to partitions which current offset message is unable to be consumed. If `false` (the default), scaler will include all consumer lag in all partitions as per normal. (Default: `false`, Optional)
6161
- `limitToPartitionsWithLag` - When set to `true`, the number of replicas will not exceed the number of partitions having non-zero lag. `topic` must be specified when this parameter is set to `true`. `allowIdleConsumers` cannot be `true` when this parameter is `true`. (Default: `false`, Optional)
6262
- `partitionLimitation` - Comma separated list of partition ids to scope the scaling on. Allowed patterns are "x,y" and/or ranges "x-y". If set, the calculation of the lag will only take these ids into account. (Default: All partitions, Optional)
63-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
63+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
6464
- `tls` - To enable SSL auth for Kafka, set this to `enable`. If not set, TLS for Kafka is not used. (Values: `enable`, `disable`, Default: `disable`, Optional). This parameter could also be specified in `tls` in TriggerAuthentication
6565

6666
> **Note:**
@@ -85,7 +85,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
8585

8686
**SASL:**
8787

88-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional)
88+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional)
8989
- `username` - Username used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
9090
- `password` - Password used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
9191

content/docs/2.14/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ triggers:
4646
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4747
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
4848
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
49-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
49+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
5050
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
5151
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5252
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of

content/docs/2.15/scalers/apache-kafka-go.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ triggers:
4949
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
5050
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
5151
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
52-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
52+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
5353
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
5454
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5555
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of
@@ -60,7 +60,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
6060
- `excludePersistentLag` - When set to `true`, the scaler will exclude partition lag for partitions which current offset is the same as the current offset of the previous polling cycle. This parameter is useful to prevent scaling due to partitions which current offset message is unable to be consumed. If `false` (the default), scaler will include all consumer lag in all partitions as per normal. (Default: `false`, Optional)
6161
- `limitToPartitionsWithLag` - When set to `true`, the number of replicas will not exceed the number of partitions having non-zero lag. `topic` must be specified when this parameter is set to `true`. `allowIdleConsumers` cannot be `true` when this parameter is `true`. (Default: `false`, Optional)
6262
- `partitionLimitation` - Comma separated list of partition ids to scope the scaling on. Allowed patterns are "x,y" and/or ranges "x-y". If set, the calculation of the lag will only take these ids into account. (Default: All partitions, Optional)
63-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
63+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
6464
- `tls` - To enable SSL auth for Kafka, set this to `enable`. If not set, TLS for Kafka is not used. (Values: `enable`, `disable`, Default: `disable`, Optional). This parameter could also be specified in `tls` in TriggerAuthentication
6565

6666
> **Note:**
@@ -85,7 +85,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
8585

8686
**SASL:**
8787

88-
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `aws_msk_iam` or `none`, Default: `none`, Optional)
88+
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `gssapi`, `aws_msk_iam` or `none`, Default: `none`, Optional)
8989
- `username` - Username used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
9090
- `password` - Password used for sasl authentication. (Required if `sasl` is not `none` or `aws_msk_iam`)
9191

content/docs/2.15/scalers/apache-kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ triggers:
4646
- `bootstrapServers` - Comma separated list of Kafka brokers "hostname:port" to connect to for bootstrap.
4747
- `consumerGroup` - Name of the consumer group used for checking the offset on the topic and processing the related lag.
4848
- `topic` - Name of the topic on which processing the offset lag. (Optional, see note below)
49-
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `5`, Optional)
49+
- `lagThreshold` - Average target value to trigger scaling actions. (Default: `10`, Optional)
5050
- `activationLagThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
5151
- `offsetResetPolicy` - The offset reset policy for the consumer. (Values: `latest`, `earliest`, Default: `latest`, Optional)
5252
- `allowIdleConsumers` - When set to `true`, the number of replicas can exceed the number of

0 commit comments

Comments
 (0)