HDFS-14836. FileIoProvider should not increase FileIoErrors metric in datanode volume metric. Contributed by Aiphago.
Reviewed-by: He Xiaoqiao <hexiaoqiao@apache.org> (cherry picked from commit5dd859a8a0
) (cherry picked from commitb906f53b0d
)
This commit is contained in:
parent
eb5c4ce432
commit
0fcbeed49a
|
@ -281,7 +281,10 @@ public class FileIoProvider {
|
|||
waitTime, transferTime);
|
||||
profilingEventHook.afterFileIo(volume, TRANSFER, begin, count);
|
||||
} catch (Exception e) {
|
||||
onFailure(volume, begin);
|
||||
String em = e.getMessage();
|
||||
if (!em.startsWith("Broken pipe") && !em.startsWith("Connection reset")) {
|
||||
onFailure(volume, begin);
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue