I want to get the result of my schedule query as soon as it completes, Big Query scheduler API provide pub-sub notification but the message doesn't contain anything about the result.
There is a consumer service which is waiting for the schedule query result we want to notify the consumer service once we have result ready and the service can start consuming it, How we can achieve this ?
The result is stored in the table but there are multiple schedule queries writing the result to the same table, so consumer service, can't just read my table as we need have some offset. So any help regarding this ?