during.td 851 B

12345678910111213141516171819202122232425
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. $ kafka-ingest topic=largeinput format=bytes repeat=11000000
  10. A,B,0
  11. # Long enough to ingest all the data
  12. $ sleep-is-probably-flaky-i-have-justified-my-need-with-a-comment duration="60s"
  13. <null>
  14. > SELECT count(*) FROM largeinput_tbl
  15. 11000001
  16. > CREATE SINK output
  17. IN CLUSTER quickstart
  18. FROM largeinput_tbl
  19. INTO KAFKA CONNECTION kafka_conn (TOPIC 'output-byo-sink-${testdrive.seed}')
  20. FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY CONNECTION csr_conn
  21. ENVELOPE DEBEZIUM