-
How to notify RDB that there’s a new table in the tp that it can subscribe to?
One of our data plants it’s a self-updating data plant that handles column additions/deletions (type changes still manual)
The problem I am facing now is that .u.sub subscribes the first time the rdb connects to the tp and then it doesn’t check if new tables end up in the tp so if we are being sent a new table, the schema is set in the tp, but the rdb doesn’t know about it.
How can I notify the rdb that it needs to subscribe to this new table ?
Should I just send an async call with the name of the table and make the rdb subscribe to it?
Could that lead to loss of data?
Log in to reply.