Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sohurdc committed Jan 9, 2025
1 parent 1da16b5 commit a0ae866
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -978,12 +978,12 @@ private void handleApplicationAttemptStateOp(
LOG.error("Application " + appId.toString()
+ " exceeds the maximum allowed size for application data. "
+ "The length is " + attemptStateData.length
+ ", The node update path is " + nodeUpdatePath
+ ", The node update path is " + path
+ ". Current yarn.resourcemanager.zk-max-znode-size.bytes is " + zknodeLimit);
throw new StoreLimitException("Application " + appId.toString()
+ " exceeds the maximum allowed size for application data. "
+ "The length is " + attemptStateData.length
+ ", The node update path is " + nodeUpdatePath
+ ", The node update path is " + path
+ ". Current yarn.resourcemanager.zk-max-znode-size.bytes is " + zknodeLimit);
}
break;
Expand All @@ -999,12 +999,12 @@ private void handleApplicationAttemptStateOp(
LOG.error("Application " + appId.toString()
+ " exceeds the maximum allowed size for application data. "
+ "The length is " + attemptStateData.length
+ ", The node update path is " + nodeUpdatePath
+ ", The node update path is " + path
+ ". Current yarn.resourcemanager.zk-max-znode-size.bytes is " + zknodeLimit);
throw new StoreLimitException("Application " + appId.toString()
+ " exceeds the maximum allowed size for application data. "
+ "The length is " + attemptStateData.length
+ ", The node update path is " + nodeUpdatePath
+ ", The node update path is " + path
+ ". Current yarn.resourcemanager.zk-max-znode-size.bytes is " + zknodeLimit);
}
break;
Expand Down

0 comments on commit a0ae866

Please sign in to comment.