From db7f5e5855efadbb2fbc9b2829073e7afcc99827 Mon Sep 17 00:00:00 2001 From: Phillip LeBlanc Date: Wed, 11 Dec 2024 09:20:52 +0900 Subject: [PATCH] Update docs to add new Debezium parameter --- spiceaidocs/docs/components/data-connectors/debezium.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spiceaidocs/docs/components/data-connectors/debezium.md b/spiceaidocs/docs/components/data-connectors/debezium.md index b25c67c0..141582f6 100644 --- a/spiceaidocs/docs/components/data-connectors/debezium.md +++ b/spiceaidocs/docs/components/data-connectors/debezium.md @@ -21,6 +21,7 @@ datasets: kafka_sasl_password: ${secrets:kafka_sasl_password} # Required if `kafka_security_protocol` is `SASL_PLAINTEXT` or `SASL_SSL`. kafka_ssl_ca_location: ./certs/kafka_ca_cert.pem # Optional. Used to verify the SSL/TLS certificate of the Kafka broker. kafka_enable_ssl_certificate_verification: true # Default is `true`. Set to `false` to disable SSL/TLS certificate verification. + kafka_ssl_endpoint_identification_algorithm: https # Default is `https`. Valid values are `none` and `https`. acceleration: enabled: true # Acceleration is required for the debezium connector. @@ -70,6 +71,7 @@ SELECT COUNT(*) FROM cool_dataset; | `kafka_sasl_password` | SASL password. | | `kafka_ssl_ca_location` | Path to the SSL/TLS CA certificate file for server verification. | | `kafka_enable_ssl_certificate_verification` | Enable SSL/TLS certificate verification. Default: `true`. | +| `kafka_ssl_endpoint_identification_algorithm` | SSL/TLS endpoint identification algorithm. Default: `https`. Options: | ### Acceleration Settings