diff --git a/doc/DEPLOY.md b/doc/DEPLOY.md index f6ae807910a5c7da325f40227f9fbdca50ba591d..1af74ebbe097fee0fd608d78cef714305705d812 100755 --- a/doc/DEPLOY.md +++ b/doc/DEPLOY.md @@ -391,7 +391,7 @@ $ tree nohup bin/cube & nohup bin/cube-agent -P 8001 & ``` -其中cube-agent在启动命令中使用 -P 参数指定监听端口号 +其中cube-agent在启动命令中使用 -P 参数指定监听端口号,在log文件夹可以查看cube server的日志。 ### 3. cube-builder部署 @@ -435,7 +435,7 @@ $ tree #### 3.3 启动cube-builder ##### 3.3.1接入配送流程 拷贝bin/cube-builder和cube-transfer程序到同一机器。 -相关参数已经封装好,只需要在cube-transfer的conf/transfer.conf里配置好cube-builder的地址、源数据和建库数据output的地址即可, 执行cube-transfer时会通过配置文件中的路径调用cube-builder,所以通常不需要手动执行cube-builder。 +相关参数已经封装好,只需要在cube-transfer的conf/transfer.conf里配置好cube-builder的地址、源数据和建库数据output的地址即可, 执行cube-transfer时会通过配置文件中的路径调用cube-builder,所以通常不需要手动执行cube-builder。 ##### 3.3.2单机builder @@ -530,6 +530,7 @@ $ tree builder输入数据的源格式必须为seqfile,key为uint64(输入必须为二进制8个字节),value为序列化的二进制。 提供明文转seqfile工具和读seqfile工具,位置在output/tool里kvtool.py和kv_to_seqfile.py。 kvtool.py 是读seqfile工具,会输出读到的kv信息,参数是文件地址假设在/home/work/test下的seqfile,运行方式如下: + ``` python kvtool.py /home/work/test/seqfile ``` @@ -594,7 +595,16 @@ $ tree ```bash ./cube-transfer -p 8099 -l 4 --config conf/transfer.conf ``` +配送完毕cube-transfer会进入监听数据更新的状态,日志以及命令行会输出以下信息 + +![wait-update](./deploy/wait-update.png) + + + + + #### 4.4 cube-transfer支持查询接口 + > 获取当前词典状态 > http://10.10.10.5:8099/dict/info diff --git a/doc/deploy/._wait-update.png b/doc/deploy/._wait-update.png new file mode 100644 index 0000000000000000000000000000000000000000..94525564456931a25aec334d71e0b57e135c0d8f Binary files /dev/null and b/doc/deploy/._wait-update.png differ diff --git a/doc/deploy/wait-update.png b/doc/deploy/wait-update.png new file mode 100755 index 0000000000000000000000000000000000000000..29989a345861d32444080438a18db0a1743df2c0 Binary files /dev/null and b/doc/deploy/wait-update.png differ