You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: benchmark/feldera-sql/run.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -291,6 +291,7 @@ def main():
291
291
parser.add_argument('--output', action=argparse.BooleanOptionalAction, help='whether to write query output back to Kafka (default: --no-output)')
292
292
parser.add_argument('--merge', action=argparse.BooleanOptionalAction, help='whether to merge all the queries into one program (default: --no-merge)')
293
293
parser.add_argument('--storage', action=argparse.BooleanOptionalAction, help='whether to enable storage (default: --no-storage)')
294
+
parser.add_argument("--poller-threads", required=False, type=int, help="Override number of poller threads to use")
294
295
parser.add_argument('--min-storage-bytes', type=int, help='If storage is enabled, the minimum number of bytes to write a batch to storage.')
295
296
parser.add_argument('--query', action='append', help='queries to run (by default, all queries), specify one or more of: '+','.join(sort_queries(QUERY_SQL.keys())))
296
297
parser.add_argument('--input-topic-suffix', help='suffix to apply to input topic names (by default, "")')
0 commit comments