Bibin A Chundatt created YARN-9148:
--------------------------------------
Summary: AggregatedLogDeletion doesnt work with S3
Key: YARN-9148
URL: https://issues.apache.org/jira/browse/YARN-9148
Project: Hadoop YARN
Issue Type: Bug
Reporter: Bibin A Chundatt
Aggregated Log deletion works based on modification time of application
directory
S3AFileStatus give current time in case of directory.
{code}
if (appDir.isDirectory() &&
appDir.getModificationTime() < cutoffMillis) {
ApplicationId appId = ApplicationId.fromString(
{code}
S3AFileStatus#getModificationTime
{code}
@Override
public long getModificationTime(){
if(isDirectory()){
return System.currentTimeMillis();
} else {
return super.getModificationTime();
}
}
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]