This is an automated email from the ASF dual-hosted git repository.
sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.wiki.git
The following commit(s) were added to refs/heads/master by this push:
new 9f6557e add instructions to unpack connectors
9f6557e is described below
commit 9f6557e16b49ded795512671c7bb53ea6811f743
Author: Sijie Guo <[email protected]>
AuthorDate: Thu Jul 19 12:11:57 2018 -0700
add instructions to unpack connectors
---
Release-Candidate-Validation.md | 28 +++++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/Release-Candidate-Validation.md b/Release-Candidate-Validation.md
index 0813891..be734db 100644
--- a/Release-Candidate-Validation.md
+++ b/Release-Candidate-Validation.md
@@ -2,7 +2,33 @@ Here are some instructions for reviewing and validating a
release candidate.
### Validate the binary distribution
-Unzip the binary distribution. The unzipped binary should be in a directory
called `apache-pulsar-<release>`. All the operations below happen within that
directory.
+#### Download the binary distributions
+
+Since Pulsar 2.1, we are shipping two binary distributions. one is server
component, containing all the binaries for running Pulsar Service, the other
one is a built-in connectors distribution, containing all the built-in
connectors.
+
+Unzip the server distribution `apache-pulsar-<release>-bin.tar.gz`. The
unzipped binary should be in a directory called `apache-pulsar-<release>`. All
the operations below happen within that directory.
+
+```shell
+$ cd apache-pulsar-<release>
+```
+
+In the apache pulsar directory, unzip the io package and copy the connectors
as `connectors` in the pulsar distribution.
+
+```shell
+$ tar xf /path/to/apache-pulsar-io-connectors-<release>-bin.tar.gz
+// you will find a directory named `apache-pulsar-io-connectors-<release>`
+// move the connectors
+$ mv apache-pulsar-io-connectors-<release>/connectors connectors
+$ ls connectors
+pulsar-io-aerospike-<release>.nar
+pulsar-io-cassandra-<release>.nar
+pulsar-io-kafka-<release>.nar
+pulsar-io-kinesis-<release>.nar
+pulsar-io-rabbitmq-<release>.nar
+pulsar-io-twitter-<release>.nar
+```
+
+#### Validate Pub/Sub and Java Functions
1. Open one terminal to start a standalone cluster.