The following diagram illustrates the deployment of function workers running along with brokers.
:::note
The Service URLs in the illustration represent Pulsar service URLs that Pulsar client and Pulsar admin use to connect to a Pulsar cluster.
:::
To set up function workers to run with brokers, complete the following steps:
In the conf/broker.conf file (conf/standalone.conf for Pulsar standalone), set functionsWorkerEnabled to true.
functionsWorkerEnabled=true
In the run-with-brokers mode, most settings of function workers are inherited from your broker configuration (for example, configuration store settings, authentication settings, and so on). You can customize other worker settings by configuring the conf/functions_worker.yml file based on your needs.
:::tip
numFunctionPackageReplicas to equal the number of bookies. The default value 1 is only for one-node cluster deployment.initializedDlogMetadata = true), ensure that it has been initialized by the bin/pulsar initialize-cluster-metadata command.:::
When authentication is enabled on the BookKeeper cluster, you need to configure the following authentication settings for your function workers.
bookkeeperClientAuthenticationPlugin: the authentication plugin name of BookKeeper client.bookkeeperClientAuthenticationParametersName: the authentication plugin parameters of BookKeeper client, including names and values.bookkeeperClientAuthenticationParameters: the authentication plugin parameters of BookKeeper client.Once function workers are configured properly, you can start the brokers (function workers are running with the brokers).
To verify whether each worker is running or not, you can use the following command.
curl <broker-ip>:8080/admin/v2/worker/cluster
If a list of active function workers is returned, it means they have been started successfully. The output is similar to the following.
[{"workerId":"<worker-id>","workerHostname":"<worker-hostname>","port":8080}]