[
https://issues.apache.org/jira/browse/DRILL-8502?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Maksym Rymar resolved DRILL-8502.
---------------------------------
Fix Version/s: 1.22.0
Resolution: Fixed
Merged to master: https://github.com/apache/drill/pull/2923
> Some boot options with drill.exec.options prefix are missed in configuration
> options
> ------------------------------------------------------------------------------------
>
> Key: DRILL-8502
> URL: https://issues.apache.org/jira/browse/DRILL-8502
> Project: Apache Drill
> Issue Type: Bug
> Affects Versions: 1.21.2
> Reporter: Maksym Rymar
> Assignee: Maksym Rymar
> Priority: Minor
> Fix For: 1.22.0
>
>
> Drill has boot options with {{drill.exec.options}} prefix which are missed in
> configuration options. It can be easily checked by comparing the system
> tables:
> {code:java}
> apache drill> select name from sys.boot where name like 'drill.exec.options%'
> AND name not in (select concat('drill.exec.options.', name) from
> sys.internal_options union all select concat('drill.exec.options.', name)
> from sys.options);
> +-------------------------------------------------------+
> | name |
> +-------------------------------------------------------+
> | drill.exec.options.drill.exec.testing.controls |
> | drill.exec.options.exec.hashagg.max_batches_in_memory |
> | drill.exec.options.exec.hashagg.num_rows_in_batch |
> | drill.exec.options.exec.hashjoin.mem_limit |
> | drill.exec.options.exec.return_result_set_for_ddl |
> +-------------------------------------------------------+{code}
> Expected – empty result.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)