Add ssl options description

This commit is contained in:
Hansey Lee 2019-08-17 14:17:30 +08:00 committed by GitHub
parent ef072b60c5
commit 089609c628
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,12 @@ MongoDBReader通过Datax框架从MongoDB并行的读取数据通过主控的J
"userPassword": "",
"dbName": "tag_per_data",
"collectionName": "tag_data12",
"authDb": "authDb",
"sslMode": "two-way",
"trustStorePath": "/path/to/trustStore",
"trustStorePwd": "",
"keyStorePath": "/path/to/keyStore",
"keyStorePwd": "",
"column": [
{
"name": "unique_id",
@ -128,6 +134,12 @@ MongoDBReader通过Datax框架从MongoDB并行的读取数据通过主控的J
* userNameMongoDB的用户名。【选填】
* userPassword MongoDB的密码。【选填】
* collectionName MonogoDB的集合名。【必填】
* authDb: MongoDB用户的鉴权数据库。【选填】
* sslMode: MongoDB ssl/tls 加密访问选项,支持 two-way(双向验证) | client-authentication(服务端确认客服端身份,客服端直接信赖服务端) | no-authentication(双方均不验证证书,直接新任) 【选填】
* trustStorePath: 信赖的证书库路径client-authentication时不需要。【选填】
* trustStorePwd: 信赖的证书库密码。【选填】
* keyStorePath: client端证书和密钥库。【选填】
* keyStorePwd: client端证书和密钥库密码。【选填】
* columnMongoDB的文档列名。【必填】
* nameColumn的名字。【必填】
* typeColumn的类型。【选填】