momo-jun commented on code in PR #17499:
URL: https://github.com/apache/pulsar/pull/17499#discussion_r964540883
##########
site2/docs/io-quickstart.md:
##########
@@ -26,18 +24,42 @@ the commands used in this tutorial can be used in a
multi-node Pulsar cluster wi
Before connecting Pulsar to a database, you need to install Pulsar and the
desired built-in connector.
-For more information about **how to install a standalone Pulsar and built-in
connectors**, see [here](getting-started-standalone.md/#installing-pulsar).
+Read the [Run a standalone Pulsar cluster
locally](getting-started-standalone.md) for downloading the Pulsar distribution.
-## Start Pulsar standalone
+Pulsar releases a separate binary distribution to contain all the built-in
connectors. To enable those connectors, you need to download the connectors
tarball release:
+
+```bash
+wget pulsar:connector_release_url/{connector}-@pulsar:[email protected]
+```
+
+After you download the NAR file, copy the file to the `connectors` directory
in the Pulsar directory. For example, if you download the
`pulsar-io-aerospike-@pulsar:[email protected]` connector file, enter the following
commands:
+
+```bash
+mkdir connectors
+mv pulsar-io-aerospike-@pulsar:[email protected] connectors
+
+ls connectors
+# pulsar-io-aerospike-@pulsar:[email protected]
+# ...
+```
+
+:::note
+
+* If you are running Pulsar in a bare metal cluster, make sure `connectors`
tarball is unzipped in every pulsar directory of the broker (or in every pulsar
directory of function-worker if you are running a separate worker cluster for
Pulsar Functions).
+* If you are [running Pulsar in Docker](getting-started-docker.md) or
deploying Pulsar using a docker image (e.g. [K8S](deploy-kubernetes.md)), you
can use the `apachepulsar/pulsar-all` image instead of the
`apachepulsar/pulsar` image. `apachepulsar/pulsar-all` image has already
bundled all built-in connectors.
Review Comment:
```suggestion
* If you are [running Pulsar in Docker](getting-started-docker.md) or
deploying Pulsar using a docker image (e.g. [K8S](deploy-kubernetes.md)), you
can use the `apachepulsar/pulsar-all` image instead of the
`apachepulsar/pulsar` image. The `apachepulsar/pulsar-all` image has already
bundled all built-in connectors.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]