-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Functions worker nodes can't be accessed #7
Comments
Hi, |
The administration of the dedicated worker nodes is currently not managed by the proxy. Currenty to manage them, you need to pass the bin/pulsar-admin --admin-url https://<dedicatedfunctionsworkerhost> --auth-params "token:<token>" functions create --jar <jarfile> --classname <classname> --tenant <tenant> --namespace functions |
In this page https://pulsar.apache.org/docs/fr/functions-worker/, there is a description of the proxy configuration that route the requests (broker and function worker), does it not fulfill the need ? |
IIRC: nope, this page describes how to make dedicated functions worker communicate to brokers via proxy. But the management of the functions and get their information can't be done using proxies. |
Mmmh, are you sure ? because the last diagram in this page shows that with the proxy you will have a single endpoint for the admin URL.
|
I have tested a config with a proxy, a broker and a worker node: the proxy route the requests, BUT, for now, only the old API requests are routed (i.e. /admin/functions and /admin/v2/functions), not the new API requests for the functions (/admin/v3/functions used by pulsar-admin). |
Hi,
If function worker are not in the broker but in dedicated node, they can be accessed via custom admin-url which is the url of the function worker.
So, I think pulsar-express must have functions worker list that be managed then the functions tab will display functions worker list and functions as subitems.
The text was updated successfully, but these errors were encountered: