forked from apache/hadoop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
YARN-7599. [BackPort][GPG] ApplicationCleaner in Global Policy Genera…
…tor. (apache#5934) Contributed by Botong Huang, Shilun Fan. Co-authored-by: Botong Huang <[email protected]> Co-authored-by: slfan1989 <[email protected]> Reviewed-by: Inigo Goiri <[email protected]> Signed-off-by: Shilun Fan <[email protected]>
- Loading branch information
1 parent
56b928b
commit 8538af4
Showing
11 changed files
with
510 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
153 changes: 153 additions & 0 deletions
153
...pache/hadoop/yarn/server/globalpolicygenerator/applicationcleaner/ApplicationCleaner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.hadoop.yarn.server.globalpolicygenerator.applicationcleaner; | ||
|
||
import java.util.HashSet; | ||
import java.util.Set; | ||
|
||
import org.apache.commons.lang3.time.DurationFormatUtils; | ||
import org.apache.hadoop.conf.Configuration; | ||
import org.apache.hadoop.yarn.api.records.ApplicationId; | ||
import org.apache.hadoop.yarn.conf.YarnConfiguration; | ||
import org.apache.hadoop.yarn.exceptions.YarnException; | ||
import org.apache.hadoop.yarn.exceptions.YarnRuntimeException; | ||
import org.apache.hadoop.yarn.server.globalpolicygenerator.GPGContext; | ||
import org.apache.hadoop.yarn.server.globalpolicygenerator.GPGUtils; | ||
import org.apache.hadoop.yarn.server.resourcemanager.webapp.DeSelectFields; | ||
import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.AppInfo; | ||
import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.AppsInfo; | ||
import org.apache.hadoop.yarn.webapp.util.WebAppUtils; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* The ApplicationCleaner is a runnable that cleans up old applications from | ||
* table applicationsHomeSubCluster in FederationStateStore. | ||
*/ | ||
public abstract class ApplicationCleaner implements Runnable { | ||
private static final Logger LOG = | ||
LoggerFactory.getLogger(ApplicationCleaner.class); | ||
|
||
private Configuration conf; | ||
private GPGContext gpgContext; | ||
|
||
private int minRouterSuccessCount; | ||
private int maxRouterRetry; | ||
private long routerQueryIntevalMillis; | ||
|
||
public void init(Configuration config, GPGContext context) | ||
throws YarnException { | ||
|
||
this.gpgContext = context; | ||
this.conf = config; | ||
|
||
String routerSpecString = | ||
this.conf.get(YarnConfiguration.GPG_APPCLEANER_CONTACT_ROUTER_SPEC, | ||
YarnConfiguration.DEFAULT_GPG_APPCLEANER_CONTACT_ROUTER_SPEC); | ||
String[] specs = routerSpecString.split(","); | ||
if (specs.length != 3) { | ||
throw new YarnException("Expect three comma separated values in " | ||
+ YarnConfiguration.GPG_APPCLEANER_CONTACT_ROUTER_SPEC + " but get " | ||
+ routerSpecString); | ||
} | ||
this.minRouterSuccessCount = Integer.parseInt(specs[0]); | ||
this.maxRouterRetry = Integer.parseInt(specs[1]); | ||
this.routerQueryIntevalMillis = Long.parseLong(specs[2]); | ||
|
||
if (this.minRouterSuccessCount > this.maxRouterRetry) { | ||
throw new YarnException("minRouterSuccessCount " | ||
+ this.minRouterSuccessCount | ||
+ " should not be larger than maxRouterRetry" + this.maxRouterRetry); | ||
} | ||
if (this.minRouterSuccessCount <= 0) { | ||
throw new YarnException("minRouterSuccessCount " | ||
+ this.minRouterSuccessCount + " should be positive"); | ||
} | ||
|
||
LOG.info( | ||
"Initialized AppCleaner with Router query with min success {}, " | ||
+ "max retry {}, retry interval {}", | ||
this.minRouterSuccessCount, this.maxRouterRetry, | ||
DurationFormatUtils.formatDurationISO(this.routerQueryIntevalMillis)); | ||
} | ||
|
||
public GPGContext getGPGContext() { | ||
return this.gpgContext; | ||
} | ||
|
||
/** | ||
* Query router for applications. | ||
* | ||
* @return the set of applications | ||
* @throws YarnRuntimeException when router call fails | ||
*/ | ||
public Set<ApplicationId> getAppsFromRouter() throws YarnRuntimeException { | ||
String webAppAddress = WebAppUtils.getRouterWebAppURLWithScheme(conf); | ||
|
||
LOG.info(String.format("Contacting router at: %s", webAppAddress)); | ||
AppsInfo appsInfo = GPGUtils.invokeRMWebService(webAppAddress, "apps", AppsInfo.class, conf, | ||
DeSelectFields.DeSelectType.RESOURCE_REQUESTS.toString()); | ||
|
||
Set<ApplicationId> appSet = new HashSet<>(); | ||
for (AppInfo appInfo : appsInfo.getApps()) { | ||
appSet.add(ApplicationId.fromString(appInfo.getAppId())); | ||
} | ||
return appSet; | ||
} | ||
|
||
/** | ||
* Get the list of known applications in the cluster from Router. | ||
* | ||
* @return the list of known applications | ||
* @throws YarnException if get app fails | ||
*/ | ||
public Set<ApplicationId> getRouterKnownApplications() throws YarnException { | ||
int successCount = 0, totalAttemptCount = 0; | ||
Set<ApplicationId> resultSet = new HashSet<>(); | ||
while (totalAttemptCount < this.maxRouterRetry) { | ||
try { | ||
Set<ApplicationId> routerApps = getAppsFromRouter(); | ||
resultSet.addAll(routerApps); | ||
LOG.info("Attempt {}: {} known apps from Router, {} in total", | ||
totalAttemptCount, routerApps.size(), resultSet.size()); | ||
|
||
successCount++; | ||
if (successCount >= this.minRouterSuccessCount) { | ||
return resultSet; | ||
} | ||
|
||
// Wait for the next attempt | ||
try { | ||
Thread.sleep(this.routerQueryIntevalMillis); | ||
} catch (InterruptedException e) { | ||
LOG.warn("Sleep interrupted after attempt {}.", totalAttemptCount); | ||
} | ||
} catch (Exception e) { | ||
LOG.warn("Router query attempt {} failed.", totalAttemptCount, e); | ||
} finally { | ||
totalAttemptCount++; | ||
} | ||
} | ||
throw new YarnException("Only " + successCount | ||
+ " success Router queries after " + totalAttemptCount + " retries"); | ||
} | ||
|
||
@Override | ||
public abstract void run(); | ||
} |
Oops, something went wrong.