Change import task timeout value (#20717)

Signed-off-by: yhmo <yihua.mo@zilliz.com>

Signed-off-by: yhmo <yihua.mo@zilliz.com>
pull/20474/head
groot 2022-11-21 10:11:11 +08:00 committed by GitHub
parent 0a5270e8c0
commit c8022ea63c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -80,8 +80,9 @@ const (
// ConnectEtcdMaxRetryTime is used to limit the max retry time for connection etcd
ConnectEtcdMaxRetryTime = 100
// ImportCallTimeout is the timeout used in Import() method calls.
ImportCallTimeout = 30 * time.Second
// ImportCallTimeout is the timeout used in Import() method calls
// This value is equal to RootCoord's task expire time
ImportCallTimeout = 15 * 60 * time.Second
)
var getFlowGraphServiceAttempts = uint(50)