Skip to content

Commit

Permalink
importer 4.1.0 support ssl (#2284)
Browse files Browse the repository at this point in the history
* importer 4.1.0 support ssl

* update

* Update mkdocs.yml
  • Loading branch information
cooper-lzy authored Oct 19, 2023
1 parent 968cdf8 commit bb4f773
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs-2.0/nebula-importer/use-importer.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ NebulaGraph Importer (Importer) is a standalone tool for importing data from CSV
- Support connecting to multiple Graph services simultaneously for importing and dynamic load balancing.
- Support reconnect or retry after failure.
- Support displaying statistics in multiple dimensions, including import time, import percentage, etc. Support for printing statistics in Console or logs.
- Support SSL.

## Advantage

Expand Down Expand Up @@ -156,6 +157,12 @@ client:
address: "192.168.1.100:9669,192.168.1.101:9669"
user: root
password: nebula
ssl:
enable: true
certPath: "/home/xxx/cert/importer.crt"
keyPath: "/home/xxx/cert/importer.key"
caPath: "/home/xxx/cert/root.crt"
insecureSkipVerify: false
concurrencyPerAddress: 10
reconnectInitialInterval: 1s
retry: 3
Expand All @@ -168,6 +175,11 @@ client:
|`client.address`|`"127.0.0.1:9669"`|Yes| Specifies the address of the NebulaGraph. Multiple addresses are separated by commas.|
|`client.user`|`root`|No| NebulaGraph user name.|
|`client.password`|`nebula`|No| The password for the NebulaGraph user name.|
|`client.ssl.enable`|`false`|No| Specifies whether to enable SSL authentication.|
|`client.ssl.certPath`|-|No| Specifies the storage path for the SSL public key certificate.</br>This parameter is required when SSL authentication is enabled.|
|`client.ssl.keyPath`|-|No|S pecifies the storage path for the SSL key.</br>This parameter is required when SSL authentication is enabled.|
|`client.ssl.caPath`|-|No| Specifies the storage path for the CA root certificate.</br>This parameter is required when SSL authentication is enabled.|
|`client.ssl.insecureSkipVerify`|`false`|No|Specifies whether the client skips verifying the server's certificate chain and hostname. If set to `true`, any certificate chain and hostname provided by the server is accepted.|
|`client.concurrencyPerAddress`|`10`|No| The number of concurrent client connections for a single graph service.|
|`client.retryInitialInterval`|`1s`|No| Reconnect interval time.|
|`client.retry`|`3`|No| The number of retries for failed execution of the nGQL statement.|
Expand Down

0 comments on commit bb4f773

Please sign in to comment.