You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2020/07/14 17:27:33 UTC

[shardingsphere-elasticjob-lite] branch master updated: Update required ZooKeeper version (#1061)

This is an automated email from the ASF dual-hosted git repository.

zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere-elasticjob-lite.git


The following commit(s) were added to refs/heads/master by this push:
     new e2a9ede  Update required ZooKeeper version (#1061)
e2a9ede is described below

commit e2a9edee72d7afd36bd9e58b023fdc6ef08aead8
Author: Liang Zhang <te...@163.com>
AuthorDate: Wed Jul 15 01:27:26 2020 +0800

    Update required ZooKeeper version (#1061)
---
 docs/content/faq/_index.cn.md          | 18 +++++-------------
 docs/content/user-manual/job-api.cn.md |  6 +++---
 2 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/docs/content/faq/_index.cn.md b/docs/content/faq/_index.cn.md
index 4054b73..f887afe 100644
--- a/docs/content/faq/_index.cn.md
+++ b/docs/content/faq/_index.cn.md
@@ -79,15 +79,7 @@ ElasticJob 并未包含 Spring 的依赖,请用户自行添加需要的版本
 
 ***
 
-### 7. ZooKeeper 版本不是 3.4.6 会有什么问题?
-
-回答:
-
-根据测试,使用 3.3.6 版本的 ZooKeeper 在使用 Curator 2.10.0 的 CuratorTransactionFinal 的 commit 时会导致死锁。
-
-***
-
-### 8. ElasticJob 2.0.5 及之前版本的作业暂停 (Pause) 与作业失效 (Disable) 的区别是什么?
+### 7. ElasticJob 2.0.5 及之前版本的作业暂停 (Pause) 与作业失效 (Disable) 的区别是什么?
 
 回答:
 
@@ -95,26 +87,26 @@ ElasticJob 并未包含 Spring 的依赖,请用户自行添加需要的版本
 
 ***
 
-### 9. ElasticJob 2.1.0 版本支持单节点运行多个相同的作业实例,是否兼容原来的数据结构?
+### 8. ElasticJob 2.1.0 版本支持单节点运行多个相同的作业实例,是否兼容原来的数据结构?
 
 回答:
 
 是的。新 ElasticJob Lite 的数据结构和原有结构完全兼容。
 
-### 10. 界面 Console 无法正常显示?
+### 9. 界面 Console 无法正常显示?
 
 回答:
 
 使用 Web Console 时应确保与 ElasticJob 相关版本保持一致,否则会导致不可用。
 
-### 11. 作业与注册中心无法通信会如何?
+### 10. 作业与注册中心无法通信会如何?
 
 回答:
 
 为了保证作业的在分布式场景下的一致性,一旦作业与注册中心无法通信,运行中的作业会立刻停止执行,但作业的进程不会退出,这样做的目的是为了防止作业重分片时,将与注册中心失去联系的节点执行的分片分配给另外节点,导致同一分片在两个节点中同时执行。
 当作业节点恢复与注册中心联系时,将重新参与分片并恢复执行新的分配到的分片。
 
-### 12. 为什么界面中的作业状态是分片待调整?
+### 11. 为什么界面中的作业状态是分片待调整?
 
 回答:
 
diff --git a/docs/content/user-manual/job-api.cn.md b/docs/content/user-manual/job-api.cn.md
index fd3a03c..5395d03 100644
--- a/docs/content/user-manual/job-api.cn.md
+++ b/docs/content/user-manual/job-api.cn.md
@@ -9,15 +9,15 @@ chapter = true
 
 ### a. Java
 
-请使用JDK1.7及其以上版本。[详情参见](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
+请使用 Java 8 及其以上版本。
 
 ### b. Zookeeper
 
-请使用Zookeeper 3.4.6及其以上版本。[详情参见](https://zookeeper.apache.org/doc/trunk/zookeeperStarted.html)
+请使用Zookeeper 3.6.0 及其以上版本。[详情参见](https://zookeeper.apache.org/)
 
 ### c. Maven
 
-请使用Maven 3.0.4及其以上版本。[详情参见](http://maven.apache.org/install.html)
+请使用 Maven 3.0.4 及其以上版本。[详情参见](http://maven.apache.org/install.html)
 
 ## 1. 作业开发