Closed terryf82 closed 4 years ago
I am seeing the same issue, Is this to do with ksql and kafka version compatibility? I am running ksqldb - cp-5.5.0 kafka - cp-5.3.1
@terryf82 You had some additional insight into this, correct? I seem to recall it was a version issue... is that the case?
I am unable to reproduce this, using CP 5.5.1:
--> gradle ksqlPipelineTest --tests "ExecuteTest.Execute :pipelineExecute task with default values"
> Task :ksqlPipelinesTest
ExecuteTest
Test Execute :pipelineExecute task with default values PASSED (24.5s)
Results: SUCCESS (1 tests, 1 successes, 0 failures, 0 skipped)
SUCCESS: Executed 1 tests in 29s
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.5.1/userguide/command_line_interface.html#sec:command_line_warnings
BUILD SUCCESSFUL in 32s
7 actionable tasks: 7 executed
~/Source/gradle-confluent issues/86 33s
--> ksql
ksql> describe PAGES_PER_MIN;
Name : PAGES_PER_MIN
Field | Type
------------------------------------------------------------
ROWTIME | BIGINT (system)
ROWKEY | INTEGER (system) (Window type: HOPPING)
USERID | INTEGER
PAGES | BIGINT
------------------------------------------------------------
For runtime statistics and query details run: DESCRIBE EXTENDED <Stream,Table>;
ksql>
@stewartbryson yep, I hit this bug while using the confluentinc/cp-ksqldb-server:5.5.0
image, which you thought was based on ksqldb 0.7.
It went away after I swapped to using confluentinc/ksqldb-server:0.9.0
. Sounds like confluentinc/cp-ksqldb-server:5.5.1
is now using 0.9 or 0.10?
@squ1d123 Is it possible for you to verify using a newer version of Kafka? I have verified now with 5.5.0 and 5.5.1 of CP, and I cannot reproduce this.
Describe the bug DESCRIBE (and DESCRIBE EXTENDED) statements run against streams / tables created through the plugin throw an error similar to the following:
To Reproduce Steps to reproduce the behavior:
Expected behavior A stream description should be returned