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
group.add_argument("--api-url", required=True, help="Feldera API URL (e.g., http://localhost:8080 )")
145
146
group.add_argument("--api-key", required=False, help="Feldera API key (e.g., \"apikey:0123456789ABCDEF\")")
146
147
group.add_argument("--cores", type=int, help="Number of cores to use for workers (default: 16)")
148
+
group.add_argument("--batchsize", type=int, help="Batch size to use for input (default: 10000)")
147
149
group.add_argument('--storage', action=argparse.BooleanOptionalAction, help='whether to enable storage (default: --no-storage)')
148
150
group.add_argument('--min-storage-bytes', type=int, help='If storage is enabled, the minimum number of bytes to write a batch to storage.')
149
151
group.add_argument('--folder', help='Folder with table and queries, organized as folder/table.sql, folder/queries/qN.sql for numbers N (default: benchmarks/nexmark)')
@@ -163,7 +165,7 @@ def main():
163
165
help="Kafka options passed as -O option=value, e.g., -O bootstrap.servers=localhost:9092; ignored for Nexmark, required for other benchmarks")
164
166
group.add_argument("--poller-threads", required=False, type=int, help="Override number of poller threads to use")
165
167
group.add_argument('--input-topic-suffix', help='suffix to apply to input topic names (by default, "")')
0 commit comments