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
During a cloud deployment I'd like to call app.feed_data_point() on the just deployed Vespa app, but it does not take a cluster argument and arbitrarily can call the wrong cluster's endpoint on our multi-cluster deployment.
The cloud deployment's get_endpoint() method does take this argument, so hacking something like
before trying to feed works, but it seems like the feeding methods should take a cluster argument and pass it through to determine which endpoint to use? Or else, the app should be initialized to point to a specific cluster?
The text was updated successfully, but these errors were encountered:
During a cloud deployment I'd like to call
app.feed_data_point()
on the just deployedVespa
app, but it does not take acluster
argument and arbitrarily can call the wrong cluster's endpoint on our multi-cluster deployment.The cloud deployment's
get_endpoint()
method does take this argument, so hacking something likebefore trying to feed works, but it seems like the feeding methods should take a
cluster
argument and pass it through to determine which endpoint to use? Or else, the app should be initialized to point to a specific cluster?The text was updated successfully, but these errors were encountered: