According to Citus documentation , it's easy to distribute a table using a single column:
SELECT master_create_distributed_table('github_events', 'created_at', 'append');
Is there a way to spread the table using multiple columns? For example, something like:
SELECT master_create_distributed_table('github_events', 'user_id,site_id', 'append');
source
share