YARN-10328. Fixed ZK Curator NodeExists exception in YARN service AM logs
Contributed by Bilwa S T via eyang
This commit is contained in:
parent
c71ce7ac33
commit
0be26811f3
|
@ -143,7 +143,10 @@ public class YarnRegistryViewForProviders {
|
|||
ServiceRecord record) throws IOException {
|
||||
String path = RegistryUtils.componentPath(
|
||||
user, serviceClass, serviceName, componentName);
|
||||
registryOperations.mknode(RegistryPathUtils.parentOf(path), true);
|
||||
String parentPath = RegistryPathUtils.parentOf(path);
|
||||
if (!registryOperations.exists(parentPath)) {
|
||||
registryOperations.mknode(parentPath, true);
|
||||
}
|
||||
registryOperations.bind(path, record, BindFlags.OVERWRITE);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue