erenavsarogullari opened a new issue, #21314:
URL: https://github.com/apache/datafusion/issues/21314

   ### Is your feature request related to a problem or challenge?
   
   
   Currently, DataFusion supports `RESET` Command when resetting the 
configuration to its default value. PostgreSQL and AWS RDS DB Engines also 
support `RESET ALL` Command to reset all settable run-time parameters to 
default values as follows:
   PostgreSQL: https://www.postgresql.org/docs/current/sql-reset.html
   AWS RDS: 
https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_ResetDBParameterGroup.html
   
   `RESET ALL` Command can also be useful for DataFusion to reset the configs 
to default values by single command as follows:
   ```
   SET datafusion.execution.batch_size = 10000
   SET datafusion.runtime.memory_limit = '1M'
   
   RESET ALL
   
   SHOW datafusion.execution.batch_size
   datafusion.execution.batch_size 8192
   
   SHOW datafusion.runtime.memory_limit
   datafusion.runtime.memory_limit unlimited
   ```
   
   ### Describe the solution you'd like
   
   Explained in the first section.
   
   ### Describe alternatives you've considered
   
   _No response_
   
   ### Additional context
   
   _No response_


-- 
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]

Reply via email to