CREATE TABLE github_events ( event_id bigint, event_type text, event_public boolean, repo_id bigint, payload jsonb, repo jsonb, actor jsonb, org jsonb, created_at timestamp );
SELECT master_create_distributed_table('github_events', 'repo_id');SELECT master_create_worker_shards('github_events', 16, 2);Then populated the table with data.I created an index on actor field on master node. This index is not propagated to worker node sharded tables.This index should be created on master node only?or this should propagate to worker nodes sharded tables also?If this should update in worker nodes sharded tables how can we update all the distribured shards on all worker nodes?ThanksShankar