Skip to content

Commit

Permalink
fix cluster limit
Browse files Browse the repository at this point in the history
  • Loading branch information
yezizp2012 committed Sep 29, 2024
1 parent d182fad commit 98ccf5c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/tests/simulation/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,17 @@ async fn main() {
meta_nodes: args.meta_nodes,
sqlite_data_dir: args.sqlite_data_dir,
per_session_queries: if args.use_arrangement_backfill {
vec!["SET STREAMING_USE_ARRANGEMENT_BACKFILL = true;".to_string()].into()
vec![
"SET STREAMING_USE_ARRANGEMENT_BACKFILL = true;".to_string(),
"SET bypass_cluster_limits TO true;".to_string(),
]
.into()
} else {
vec!["SET STREAMING_USE_ARRANGEMENT_BACKFILL = false;".to_string()].into()
vec![
"SET STREAMING_USE_ARRANGEMENT_BACKFILL = false;".to_string(),
"SET bypass_cluster_limits TO true;".to_string(),
]
.into()
},
..Default::default()
};
Expand Down

0 comments on commit 98ccf5c

Please sign in to comment.