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
Expose the previously-hardcoded request concurrency cap as a flag on the
`databricks sync` command. Defaults to the existing limit (20) so behavior
is unchanged when the flag is omitted; values < 1 are rejected.
Co-authored-by: Isaac
cmd.Flags().StringVar(&f.excludeFrom, "exclude-from", "", "file containing patterns to exclude from sync (one pattern per line)")
188
198
cmd.Flags().StringVar(&f.includeFrom, "include-from", "", "file containing patterns to include to sync (one pattern per line)")
189
199
cmd.Flags().BoolVar(&f.dryRun, "dry-run", false, "simulate sync execution without making actual changes")
200
+
cmd.Flags().IntVar(&f.maxConcurrentRequests, "max-concurrent-requests", sync.MaxRequestsInFlight, "maximum number of concurrent requests to the workspace")
190
201
191
202
// Wrapper for [root.MustWorkspaceClient] that disables loading authentication configuration from a bundle.
0 commit comments