我正在使用下面的執行計劃來填充我的hazelcast支持的事件表。 問題是,如何從其他執行計劃重用此現有的支持hazelcast的事件表?來自Hazelcast的事件表
這是另一個similar question的後續問題。
@Import('users:1.0.0')
define stream users (meta_name string, correlation_id int);
@from(eventtable = 'hazelcast', cluster.name = 'cluster_a', cluster.password = '[email protected]_a')
define table UserTable (name string, id int) ;
from users
select meta_name as name, correlation_id as id
insert OVERWRITE UserTable
on UserTable.id == id;
是否使用CEP 4.2.0? – Grainier
是的,我正在使用4.2.0。 – Obaid