以下の実行プランを使用して、ヘイゼルキャストバックイベントテーブルを作成しています。 問題は、この既存のヘイルキャストバックイベントテーブルを別の実行計画から再利用するにはどうすればいいですか?ヘーゼルキャストのイベントテーブル
もう1つは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