File tree Expand file tree Collapse file tree 12 files changed +26
-15
lines changed
fate-serving-core/src/main/java/com/webank/ai/fate/serving/core/bean Expand file tree Collapse file tree 12 files changed +26
-15
lines changed Original file line number Diff line number Diff line change 1+ # Release 2.1.3
2+ ## Major Features and Improvements
3+ * Fix the HttpAdapter thread leakage problem.
4+ * Upgrade log4j dependent version.
5+
16# Release 2.1.2
27## Major Features and Improvements
38* Fix serious security vulnerabilities in log4j.
Original file line number Diff line number Diff line change 173173 " default " : {
174174 " default " : [
175175 {
176- " url" :"http://127.0.0.1:8879 /unary"
176+ " url" :"http://127.0.0.1:8869 /unary"
177177 }
178178 ]
179179 },
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ $ mvn clean package
1515随后拷贝,比如 serving-server/target/fate-serving-server-{version}-release.zip 到想要部署的路径下,并解压。(version为当前版本号)
1616
1717用户也可选择下载已编译好的版本,链接如下:
18- • [ fate-serving-server-2.1.2 -release.zip] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-server-2.1.2 -release.zip )
19- • [ fate-serving-proxy-2.1.2 -release.zip] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-proxy-2.1.2 -release.zip )
20- • [ fate-serving-admin-2.1.2 -release.zip] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-admin-2.1.2 -release.zip )
18+ • [ fate-serving-server-2.1.3 -release.zip] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-server-2.1.3 -release.zip )
19+ • [ fate-serving-proxy-2.1.3 -release.zip] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-proxy-2.1.3 -release.zip )
20+ • [ fate-serving-admin-2.1.3 -release.zip] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-admin-2.1.3 -release.zip )
2121
2222
2323### zookeeper部署
Original file line number Diff line number Diff line change 1+ ## FATE-SERVING 2.1.3
2+ ``` text
3+ 1.修复内置HttpAdapter线程泄露问题。
4+ 2.升级log4j依赖版本。
5+ ```
6+
17## FATE-SERVING 2.1.2
28``` text
391.修复log4j的严重安全漏洞。
Original file line number Diff line number Diff line change 11FATE-Serving提供了fate-serving-client工具
22### 下载对应版本的fate-serving-client
3- > linux版本:[ fate-serving-client-2.1.2 -linux.tar.gz] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.2 -linux.tar.gz )
4- > mac版本:[ fate-serving-client-2.1.2 -darwin.tar.gz] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.2 -darwin.tar.gz )
3+ > linux版本:[ fate-serving-client-2.1.3 -linux.tar.gz] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.3 -linux.tar.gz )
4+ > mac版本:[ fate-serving-client-2.1.3 -darwin.tar.gz] ( https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.3 -darwin.tar.gz )
55
6- 需要先确认下载解压出来的文件有没有可执行权限,没有权限就执行 ` chmod +777 fate-serving-client-2.1.2 -linux ` 授权。
6+ 需要先确认下载解压出来的文件有没有可执行权限,没有权限就执行 ` chmod +777 fate-serving-client-2.1.3 -linux ` 授权。
77
88### 启动client
9- 在终端中使用` ./fate-serving-client-2.1.2 -linux ` 启动client
9+ 在终端中使用` ./fate-serving-client-2.1.3 -linux ` 启动client
1010![ connect] ( ../img/client-connect.jpg )
1111
1212### 提供了以下几种指令
Original file line number Diff line number Diff line change 11{
22 "name" : " FATE-Serving" ,
3- "version" : " 2.1.2 " ,
3+ "version" : " 2.1.3 " ,
44 "private" : true ,
55 "author" : " FATE Serving" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ basepath=$(cd `dirname $0`;pwd)
2424configpath=$( cd $basepath /conf; pwd)
2525module=serving-admin
2626main_class=com.webank.ai.fate.serving.admin.Bootstrap
27- module_version=2.1.2
27+ module_version=2.1.3
2828
2929case " $1 " in
3030 start)
Original file line number Diff line number Diff line change 2424import java .util .Map ;
2525
2626public class MetaInfo {
27- public static final long CURRENT_VERSION = 212 ;
27+ public static final long CURRENT_VERSION = 213 ;
2828 public static List <AdaptorDescriptor .ParamDescriptor > inferenceParamDescriptorList ;
2929 public static List <AdaptorDescriptor .ParamDescriptor > batchInferenceParamDescriptorList ;
3030 public static Boolean PROPERTY_REMOTE_MODEL_INFERENCE_RESULT_CACHE_SWITCH ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ basepath=$(cd `dirname $0`;pwd)
2424configpath=$( cd $basepath /conf; pwd)
2525module=serving-proxy
2626main_class=com.webank.ai.fate.serving.proxy.bootstrap.Bootstrap
27- module_version=2.1.2
27+ module_version=2.1.3
2828
2929
3030case " $1 " in
Original file line number Diff line number Diff line change 44 "default" : [
55 {
66 "ip" : " 127.0.0.1" ,
7- "port" : 8879 ,
7+ "port" : 8869 ,
88 "useSSL" : false
99 }
1010 ]
You can’t perform that action at this time.
0 commit comments