You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stream Name | Kafka Topic | Format
--------------------------------------------------------------------
ks.hgame.projects.11_stream | ks.hgame.projects.11_stream | JSON
vs.hgame.projects.1_stream | maxwell.hgame.projects | JSON
vs.hgame.projects.n1_stream | maxwell.hgame.projects | JSON
--------------------------------------------------------------------
ksql> drop stream `vs.hgame.projects.1_stream`;
Cannot drop vs.hgame.projects.1_stream.
The following queries read from this source: [CSAS_ks.hgame.projects.11_stream_3].
The following queries write into this source: [].
You need to terminate them before dropping vs.hgame.projects.1_stream.
ksql> terminate `CSAS_ks.hgame.projects.11_stream_3`;
java.lang.Exception: No running query with id `CSAS_ks.hgame.projects.11_stream_3` was found
ksql> show queries;
Query ID | Kafka Topic | Query String
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
CSAS_ks.hgame.projects.11_stream_3 | ks.hgame.projects.11_stream | CREATE STREAM `ks.hgame.projects.11_stream` WITH (VALUE_FORMAT='JSON') AS SELECT data->`userid` AS userid, data->`iscancel` AS iscancel, data->`totalprice` AS totalprice, data->`bouns` AS bouns, data->`bonustime` AS bonustime, data->`writetime` AS writetime, data->`deducttime` AS deducttime, data->`projectid` AS projectid, data->`lotteryid` AS lotteryid, data->`methodid` AS methodid, data->`modes` AS modes FROM `vs.hgame.projects.1_stream`;
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
For detailed information on a Query run: EXPLAIN <Query ID>;
ksql> terminate `CSAS_ks.hgame.projects.11_stream_3`;
java.lang.Exception: No running query with id `CSAS_ks.hgame.projects.11_stream_3` was found
ksql>
The text was updated successfully, but these errors were encountered:
miguno
changed the title
why running query not found, and can not terminate?
Cannot DROP or TERMINATE when names of streams, tables, queries are quoted (backticks)
Nov 23, 2018
The text was updated successfully, but these errors were encountered: