diff --git a/src/query/src/queryMain.c b/src/query/src/queryMain.c index 5e26bb534acd1a4773b6f1f93cb70535c31e0453..b92a4625f633cae2486a82bfb3cc7c3d6bf721ec 100644 --- a/src/query/src/queryMain.c +++ b/src/query/src/queryMain.c @@ -754,8 +754,8 @@ bool qFixedNoBlock(void* pRepo, void* pMgmt, int32_t longQueryMs) { //solve tsdb no block to commit bool qSolveCommitNoBlock(void* pRepo, void* pMgmt) { qWarn("pRepo=%p start solve no block problem.", pRepo); - if(qFixedNoBlock(pRepo, pMgmt, 20*1000)) { + if(qFixedNoBlock(pRepo, pMgmt, 10*60*1000)) { return true; } - return qFixedNoBlock(pRepo, pMgmt, 5*1000); + return qFixedNoBlock(pRepo, pMgmt, 2*60*1000); }