Open hilwis opened 4 years ago
Perhaps related to this issue, I encounter the same error running the ksql-test-tool on confluent 5.4.1.
Following this tutorial, https://docs.confluent.io/current/ksql/docs/developer-guide/ksql-testing-tool.html, and changing the first create stream statement to
CREATE STREAM orders WITH (kafka_topic='test_topic', value_format='JSON');
Error:
Test failed: The statement does not define any columns. Statement: CREATE STREAM ORDERS WITH (KAFKA_TOPIC='test_topic', VALUE_FORMAT='JSON');
Related?
Perhaps related to this issue, I encounter the same error running the ksql-test-tool on confluent 5.4.1.
Following this tutorial, https://docs.confluent.io/current/ksql/docs/developer-guide/ksql-testing-tool.html, and changing the first create stream statement to
CREATE STREAM orders WITH (kafka_topic='test_topic', value_format='JSON');
Error:
Test failed: The statement does not define any columns. Statement: CREATE STREAM ORDERS WITH (KAFKA_TOPIC='test_topic', VALUE_FORMAT='JSON');
Related?
Did you ever resolve your problem with implicit CREATE STREAM statements?
Hi,
Currently i'm facing the error that my ksqldb server doesn't start. When i see the logs using
docker logs
command, then i found this errorActually i don't know where did this stream come from, because i'm really sure that i never create that stream.
I'm using docker to build ksqldb over existing kafka. Here's the yml file :
Anyone know how can i deal with this problem? Like how can i terminate or kill this stream without using ksqldb cli, because i cannot enter it. Thanks in advance.