在使用 snappy shell 中的 kafka 创建火花流表时,我看到了一个问题。
'异常'无效输入'C',预期dmlOperation,插入,withIdentifier,选择或放置(第1行,第1列):'
参考:http ://snappydatainc.github.io/snappydata/streamingWithSQL/#spark-streaming-overview
这是我的sql:
CREATE STREAM TABLE if not exists sensor_data_stream
(sensor_id string, metric string)
using kafka_stream
options (
storagelevel 'MEMORY_AND_DISK_SER_2',
rowConverter 'io.snappydata.app.streaming.KafkaStreamToRowsConverter',
zkQuorum 'localhost:2181',
groupId 'streamConsumer',
topics 'test:01');
shell 似乎不喜欢第一个字符“C”处的脚本。我正在尝试使用以下命令执行脚本:
snappy> run '/scripts/my_test_sensor_script.sql';
任何帮助表示赞赏!