mirror of https://github.com/apache/druid.git
Zookeeper version is updated. (#8363)
* Zookeeper version is updated. * Zookeeper version is updated at licenses.yaml * licenses.yaml is updated and dependencies are fixed to make the project successfully build. * Zookeeper versions are fixed at licenses.yaml
This commit is contained in:
parent
d5e3c53e74
commit
02fe3db911
|
@ -434,9 +434,9 @@ bin/start-cluster-master-no-zk-server
|
|||
If you plan to run ZK on Master servers, first update `conf/zoo.cfg` to reflect how you plan to run ZK. Then log on to your Master servers and install Zookeeper:
|
||||
|
||||
```bash
|
||||
curl http://www.gtlib.gatech.edu/pub/apache/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz -o zookeeper-3.4.11.tar.gz
|
||||
tar -xzf zookeeper-3.4.11.tar.gz
|
||||
mv zookeeper-3.4.11 zk
|
||||
curl http://www.gtlib.gatech.edu/pub/apache/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz -o zookeeper-3.4.14.tar.gz
|
||||
tar -xzf zookeeper-3.4.14.tar.gz
|
||||
mv zookeeper-3.4.14 zk
|
||||
```
|
||||
|
||||
If you are running ZK on the Master server, you can start the Master server processes together with ZK using:
|
||||
|
|
|
@ -80,9 +80,9 @@ need to download and run Zookeeper.
|
|||
In the package root, run the following commands:
|
||||
|
||||
```bash
|
||||
curl https://archive.apache.org/dist/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz -o zookeeper-3.4.11.tar.gz
|
||||
tar -xzf zookeeper-3.4.11.tar.gz
|
||||
mv zookeeper-3.4.11 zk
|
||||
curl https://archive.apache.org/dist/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz -o zookeeper-3.4.14.tar.gz
|
||||
tar -xzf zookeeper-3.4.14.tar.gz
|
||||
mv zookeeper-3.4.14 zk
|
||||
```
|
||||
|
||||
The startup scripts for the tutorial will expect the contents of the Zookeeper tarball to be located at `zk` under the
|
||||
|
|
|
@ -65,6 +65,16 @@
|
|||
<artifactId>easymock</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
<artifactId>hamcrest-all</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
|
@ -69,5 +69,15 @@
|
|||
<artifactId>curator-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
<artifactId>hamcrest-all</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -1450,13 +1450,13 @@ name: Apache Zookeeper
|
|||
license_category: binary
|
||||
module: java-core
|
||||
license_name: Apache License version 2.0
|
||||
version: 3.4.11
|
||||
version: 3.4.14
|
||||
libraries:
|
||||
- org.apache.zookeeper: zookeeper
|
||||
notices:
|
||||
- zookeeper: |
|
||||
Apache ZooKeeper
|
||||
Copyright 2009-2017 The Apache Software Foundation
|
||||
Copyright 2009-2019 The Apache Software Foundation
|
||||
|
||||
---
|
||||
|
||||
|
|
6
pom.xml
6
pom.xml
|
@ -100,7 +100,7 @@
|
|||
<aws.sdk.version>1.11.199</aws.sdk.version>
|
||||
<caffeine.version>2.5.5</caffeine.version>
|
||||
<!-- When upgrading ZK, edit docs and integration tests as well (integration-tests/docker-base/setup.sh) -->
|
||||
<zookeeper.version>3.4.11</zookeeper.version>
|
||||
<zookeeper.version>3.4.14</zookeeper.version>
|
||||
<checkerframework.version>2.5.7</checkerframework.version>
|
||||
<com.google.apis.client.version>1.22.0</com.google.apis.client.version>
|
||||
|
||||
|
@ -279,6 +279,10 @@
|
|||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>com.github.spotbugs</groupId>
|
||||
<artifactId>spotbugs-annotations</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in New Issue