9.KafkaSQL
select * from "ke_test_topic" where "partition" in (0,1,2) limit 100Edit SQL
DataSets
Parse JSONObject Or JSONArrays
Filter Query [where ... and]
Last updated
select * from "ke_test_topic" where "partition" in (0,1,2) limit 100Last updated
Note: Access to topic message data, depending on the underlying interface record of the earliest and latest offset, the default display up to 5000 records.[{"id":123,"name":"smartloli"},{"id":456,"name":"smartloli2"},{"id":789,"name":"smartloli3"}]select JSONS("msg",'name') from "topic_name" where "partition" in (0) limit 10{"id":123,"name":"smartloli001"}
{"id":456,"name":"smartloli002"}select JSON("msg",'name') from "topic_name" where "partition" in (0) limit 10select JSON("msg",'name') from "topic_name" where "partition" in (0) and JSON("msg",'name') = 'smartloli001' limit 10kafka-eagle-01
kafka-eagle-02
kafka-eagle-02
kafka-eagle-03
kafka-eagle-03
...
kafka-eagle-03
kafka-eagle-04select * from "topic_name" where "partition" in (0) and "msg" = 'kafka-eagle-03' limit 10select * from "topic_name" where "partition" in (0) and "msg" like 'kafka-eagle%' limit 10select * from "topic_name" where "partition" in (0) and "msg" like '%kafka-eagle%' limit 10