Add missing config (#11020)

This commit is contained in:
Atul Mohan 2021-03-26 06:45:53 -05:00 committed by GitHub
parent 248af38777
commit e2c4466fbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View File

@ -183,6 +183,14 @@ exports[`coordinator dynamic config matches snapshot 1`] = `
"name": "pauseCoordination",
"type": "boolean",
},
Object {
"defaultValue": false,
"info": <React.Fragment>
Boolean flag for whether or not additional replication is needed for segments that have failed to load due to the expiry of coordinator load timeout. If this is set to true, the coordinator will attempt to replicate the failed segment on a different historical server.
</React.Fragment>,
"name": "replicateAfterLoadTimeout",
"type": "boolean",
},
]
}
model={Object {}}

View File

@ -222,4 +222,16 @@ export const COORDINATOR_DYNAMIC_CONFIG_FIELDS: Field<CoordinatorDynamicConfig>[
</>
),
},
{
name: 'replicateAfterLoadTimeout',
type: 'boolean',
defaultValue: false,
info: (
<>
Boolean flag for whether or not additional replication is needed for segments that have
failed to load due to the expiry of coordinator load timeout. If this is set to true, the
coordinator will attempt to replicate the failed segment on a different historical server.
</>
),
},
];