I am using below execution plan to populate my hazelcast backed event table. Problem is, how can I reuse this existing hazelcast backed event table from another execution plan ?
It is a followup question for another 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 = 'pass@cluster_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;