vesoft-inc / nebula-importer

Nebula Graph Importer with Go
Apache License 2.0
90 stars 60 forks source link

Adjust wait time on Retry #216

Closed cangfengzhs closed 1 year ago

cangfengzhs commented 2 years ago

https://github.com/vesoft-inc/nebula-importer/blob/e7281ccc8a1af64c9769743ff937cec4f26bc0e4/pkg/client/clientpool.go#L181

In case of write failure, in order to avoid avalanche, the waiting time here is better to increase exponentially, because it is likely that the write speed is too fast, causing the WAL of the storage to be full.

veezhang commented 1 year ago

fixed