mirror of
https://github.com/apache/druid.git
synced 2025-02-20 00:47:40 +00:00
Web console: expose new coordinator properties in the dialog (#14791)
* expose new coordinator properties in the dialog * escape
This commit is contained in:
parent
37db5d9b81
commit
59415ba9b2
@ -27,6 +27,8 @@ export const DEFAULT_COORDINATOR_DYNAMIC_CONFIG: CoordinatorDynamicConfig = {
|
|||||||
replicationThrottleLimit: 500,
|
replicationThrottleLimit: 500,
|
||||||
balancerComputeThreads: 1,
|
balancerComputeThreads: 1,
|
||||||
killDataSourceWhitelist: [],
|
killDataSourceWhitelist: [],
|
||||||
|
killTaskSlotRatio: 1,
|
||||||
|
maxKillTaskSlots: 2147483647,
|
||||||
killPendingSegmentsSkipList: [],
|
killPendingSegmentsSkipList: [],
|
||||||
maxSegmentsInNodeLoadingQueue: 500,
|
maxSegmentsInNodeLoadingQueue: 500,
|
||||||
decommissioningNodes: [],
|
decommissioningNodes: [],
|
||||||
|
@ -28,6 +28,8 @@ export interface CoordinatorDynamicConfig {
|
|||||||
balancerComputeThreads?: number;
|
balancerComputeThreads?: number;
|
||||||
killAllDataSources?: boolean;
|
killAllDataSources?: boolean;
|
||||||
killDataSourceWhitelist?: string[];
|
killDataSourceWhitelist?: string[];
|
||||||
|
killTaskSlotRatio?: number;
|
||||||
|
maxKillTaskSlots?: number;
|
||||||
killPendingSegmentsSkipList?: string[];
|
killPendingSegmentsSkipList?: string[];
|
||||||
maxSegmentsInNodeLoadingQueue?: number;
|
maxSegmentsInNodeLoadingQueue?: number;
|
||||||
mergeBytesLimit?: number;
|
mergeBytesLimit?: number;
|
||||||
@ -229,6 +231,32 @@ export const COORDINATOR_DYNAMIC_CONFIG_FIELDS: Field<CoordinatorDynamicConfig>[
|
|||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'killTaskSlotRatio',
|
||||||
|
type: 'ratio',
|
||||||
|
defaultValue: 1,
|
||||||
|
info: (
|
||||||
|
<>
|
||||||
|
Ratio of total available task slots, including autoscaling if applicable that will be
|
||||||
|
allowed for kill tasks. This limit only applies for kill tasks that are spawned
|
||||||
|
automatically by the Coordinator's auto kill duty, which is enabled when
|
||||||
|
<Code>druid.coordinator.kill.on</Code> is true.
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'maxKillTaskSlots',
|
||||||
|
type: 'number',
|
||||||
|
defaultValue: 2147483647,
|
||||||
|
info: (
|
||||||
|
<>
|
||||||
|
Maximum number of tasks that will be allowed for kill tasks. This limit only applies for
|
||||||
|
kill tasks that are spawned automatically by the Coordinator's auto kill duty, which is
|
||||||
|
enabled when <Code>druid.coordinator.kill.on</Code> is true.
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
min: 1,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'balancerComputeThreads',
|
name: 'balancerComputeThreads',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user