Installing the Salesforce PubSub API Source Connector
Obtaining the connector library
The Salesforce PubSub API Source Connector is currently hosted in a private repository. To install the connector, you must request the library from the {axual-support-url} team .
Installing the connector
Once you have obtained the connector library, follow these steps to deploy it:
-
Determine all machines in the Kafka Connect cluster.
-
Follow these steps for each machine found:
-
Determine the plugins directory used by Kafka Connect.
-
Create a subdirectory *salesforce-pubsub* in the *plugins* directory.
-
Copy the JAR library to the newly created *salesforce-pubsub* directory.
-
Restart Kafka Connect.
-
Verify that the
SalesforcePubSubSourceConnectoris shown by querying the connector-plugins endpoint of the REST API of Kafka Connect on the machine.# curl command piped through the JQ tool to format the JSON output curl -s -X GET http://localhost:8083/connector-plugins | jq -S '.[]'The URL used depends on the configuration of your Kafka Connect installation. Additional curl options might be required if basic authentication or TLS is used.
-