You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the user launches a weather-mv job with topics (meaning it's watching for streaming events like new objects being created), it is possible that the provided URI pattern doesn't match any existing objects in the bucket yet.
This will cause immediate failures for the user so they are not able to launch the streaming job at all.
The check for all URIs exist should only happen for the case when no topics are created. Similarly, for the first_uri argument, we only use it for the non-streaming case. With topics, we should not create first_uri to be clearer.
The text was updated successfully, but these errors were encountered:
When the user launches a
weather-mv
job with topics (meaning it's watching for streaming events like new objects being created), it is possible that the provided URI pattern doesn't match any existing objects in the bucket yet.However, we currently always require all URIs exist before we launch the beam job code.
This will cause immediate failures for the user so they are not able to launch the streaming job at all.
The check for all URIs exist should only happen for the case when no topics are created. Similarly, for the
first_uri
argument, we only use it for the non-streaming case. Withtopics
, we should not createfirst_uri
to be clearer.The text was updated successfully, but these errors were encountered: