mirror of https://github.com/apache/druid.git
Web console: totalNumMergeTasks can be set on range also (#12648)
* totalNumMergeTasks can be set on range also * fix formatting
This commit is contained in:
parent
68bae6eafb
commit
6f7fa334fd
|
@ -250,7 +250,8 @@ export const COMPACTION_CONFIG_FIELDS: Field<CompactionConfig>[] = [
|
||||||
type: 'number',
|
type: 'number',
|
||||||
defaultValue: 10,
|
defaultValue: 10,
|
||||||
min: 1,
|
min: 1,
|
||||||
defined: t => oneOf(deepGet(t, 'tuningConfig.partitionsSpec.type'), 'hashed', 'single_dim'),
|
defined: t =>
|
||||||
|
oneOf(deepGet(t, 'tuningConfig.partitionsSpec.type'), 'hashed', 'single_dim', 'range'),
|
||||||
info: <>Maximum number of merge tasks which can be run at the same time.</>,
|
info: <>Maximum number of merge tasks which can be run at the same time.</>,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue