Skip to content

Commit

Permalink
set tunnel timeout to 60s by default in ut (#8381)
Browse files Browse the repository at this point in the history
close #8380
  • Loading branch information
windtalker authored Nov 17, 2023
1 parent 2dbb95a commit 4e2f86f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dbms/src/Debug/DAGProperties.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ struct DAGProperties
UInt64 local_query_id = 1;
Int64 task_id = 1;

Int32 mpp_timeout = 10;
Int32 mpp_timeout = 60;
};
} // namespace DB
} // namespace DB
4 changes: 2 additions & 2 deletions dbms/src/Flash/tests/gtest_spill_aggregation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ try
{"d", TiDB::TP::TypeLongLong},
{"e", TiDB::TP::TypeLongLong}};
ColumnsWithTypeAndName column_datas;
size_t table_rows = 102400;
size_t duplicated_rows = 51200;
size_t table_rows = 51200;
size_t duplicated_rows = 25600;
UInt64 max_block_size = 500;
size_t original_max_streams = 20;
size_t total_data_size = 0;
Expand Down

0 comments on commit 4e2f86f

Please sign in to comment.