Age Apache
unread,May 3, 2023, 4:22:06 AM5/3/23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to citus...@googlegroups.com
Say, I want to develop a simple blog and real-time event system. And I decide on the following design:
All the Account, Blog and Session tables of Citus DB are on one node, while all the Event and Subscription tables are on another node. The app server will use Postgres Listen/Notify on the event node of the DB.
So all the account, blog and session related requests will go to the first node, and all the event and subscription related requests(Listen) and responses(Notify) will go to the second node.
Will this design approach work with Citus DB?