12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- # ==> Set up. <==
- $ set-from-file ca-crt=/share/secrets/ca.crt
- > CREATE CONNECTION kafka to KAFKA (
- BROKER 'kafka:9092',
- SECURITY PROTOCOL PLAINTEXT
- )
- $ set schema={
- "name": "row",
- "type": "record",
- "fields": [
- {"name": "a", "type": "long"}
- ]
- }
- $ kafka-create-topic topic=avro-data
- $ kafka-ingest topic=avro-data format=avro schema=${schema}
- {"a": 1}
- # ==> Test invalid configurations. <==
- ! CREATE CONNECTION schema_registry_invalid TO CONFLUENT SCHEMA REGISTRY (
- URL 'http://ssl.schema-registry.local:8082'
- )
- contains:invalid HTTP version parsed
- ! CREATE CONNECTION schema_registry_invalid TO CONFLUENT SCHEMA REGISTRY (
- URL 'https://ssl.schema-registry.local:8082'
- )
- contains:certificate verify failed
- # ==> Test without an SSH tunnel. <==
- > CREATE CONNECTION schema_registry TO CONFLUENT SCHEMA REGISTRY (
- URL 'https://ssl.schema-registry.local:8082',
- SSL CERTIFICATE AUTHORITY = '${ca-crt}'
- )
- > CREATE SOURCE avro_data FROM KAFKA CONNECTION kafka (
- TOPIC 'testdrive-avro-data-${testdrive.seed}'
- )
- > CREATE TABLE avro_data_tbl FROM SOURCE avro_data (REFERENCE "testdrive-avro-data-${testdrive.seed}")
- FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION schema_registry
- > SELECT * FROM avro_data_tbl
- a
- ----
- 1
- # ==> Test with an SSH tunnel. <==
- > CREATE CONNECTION schema_registry_ssh TO CONFLUENT SCHEMA REGISTRY (
- URL 'https://ssl.schema-registry.local:8082',
- SSL CERTIFICATE AUTHORITY = '${ca-crt}',
- SSH TUNNEL testdrive_no_reset_connections.public.ssh
- )
- > CREATE SOURCE avro_data_ssh FROM KAFKA CONNECTION kafka (
- TOPIC 'testdrive-avro-data-${testdrive.seed}'
- )
- > CREATE TABLE avro_data_ssh_tbl FROM SOURCE avro_data_ssh (REFERENCE "testdrive-avro-data-${testdrive.seed}")
- FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION schema_registry
- > SELECT * FROM avro_data_ssh_tbl
- a
- ----
- 1
|