123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # 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-arg-default single-replica-cluster=quickstart
- #
- # Test the case where we fail to publish the schema of the writer
- #
- $ set int-schema={"type": "record", "name": "schema_int", "fields": [ {"name": "f1", "type": "int"} ] }
- $ kafka-create-topic topic=resolution-no-publish-writer
- $ kafka-ingest format=avro topic=resolution-no-publish-writer schema=${int-schema} timestamp=1
- {"f1": 123}
- $ postgres-execute connection=postgres://mz_system@${testdrive.materialize-internal-sql-addr}/materialize
- DROP SCHEMA IF EXISTS public CASCADE
- CREATE SCHEMA public
- GRANT CREATE, USAGE ON SCHEMA public TO materialize
- > CREATE CONNECTION IF NOT EXISTS csr_conn TO CONFLUENT SCHEMA REGISTRY (
- URL '${testdrive.schema-registry-url}'
- );
- > CREATE CONNECTION kafka_conn
- TO KAFKA (BROKER '${testdrive.kafka-addr}', SECURITY PROTOCOL PLAINTEXT);
- > CREATE SOURCE resolution_no_publish_writer
- IN CLUSTER ${arg.single-replica-cluster}
- FROM KAFKA CONNECTION kafka_conn (TOPIC 'testdrive-resolution-no-publish-writer-${testdrive.seed}')
- # The value is {"f1": 123}, schema_id = 0x1000000 (16777216) - that should be far beyond what the previous tests create
- # We encode it manually to avoid publishing it.
- $ kafka-ingest format=bytes topic=resolution-no-publish-writer timestamp=1
- \\x00\x01\x00\x00\x00\xf6\x01
- SELECT status FROM mz_internal.mz_source_statuses WHERE source = 'resolution_no_publish_writer';
- stalled
|