2010YOUY01 commented on code in PR #15586:
URL: https://github.com/apache/datafusion/pull/15586#discussion_r2029691057
##########
docs/source/user-guide/cli/usage.md:
##########
@@ -57,6 +57,9 @@ OPTIONS:
--mem-pool-type <MEM_POOL_TYPE>
Specify the memory pool type 'greedy' or 'fair', default to
'greedy'
+ -d, --disk-limit <DISK_LIMIT>
+ Available disk space for spilling queries (e.g. '10g'), default to
None (no limit)
Review Comment:
```suggestion
Available disk space for spilling queries (e.g. '10g'), default
to None (use DataFusion's default value of '100g')
```
##########
datafusion-cli/src/main.rs:
##########
@@ -125,6 +127,14 @@ struct Args {
#[clap(long, help = "Enables console syntax highlighting")]
color: bool,
+
+ #[clap(
+ short = 'd',
+ long,
+ help = "Available disk space for spilling queries (e.g. '10g'),
default to None (no limit)",
Review Comment:
```suggestion
help = "Available disk space for spilling queries (e.g. '10g'),
default to None (use DataFusion's default value of '100g')",
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]