>From Hussain Towaileb <[email protected]>: Hussain Towaileb has submitted this change. ( https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/17937 )
Change subject: [NO ISSUE]: Only include written bytes when reporting write IO ...................................................................... [NO ISSUE]: Only include written bytes when reporting write IO Change-Id: Ic4df1d055a2a101b6951ab8a18a72596f4b9c487 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/17937 Integration-Tests: Jenkins <[email protected]> Reviewed-by: Murtadha Hubail <[email protected]> Reviewed-by: Michael Blow <[email protected]> Tested-by: Michael Blow <[email protected]> --- M hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/io/profiling/IOCounterProc.java 1 file changed, 15 insertions(+), 3 deletions(-) Approvals: Murtadha Hubail: Looks good to me, approved Michael Blow: Looks good to me, approved; Verified Anon. E. Moose #1000171: Jenkins: Verified diff --git a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/io/profiling/IOCounterProc.java b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/io/profiling/IOCounterProc.java index 8882271..fe84ee7 100644 --- a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/io/profiling/IOCounterProc.java +++ b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/io/profiling/IOCounterProc.java @@ -50,9 +50,7 @@ public long getWrites() { try { List<String> rows = getInfo(); - long writes = extractRow(rows, 5); - long cancelledWrites = extractRow(rows, 6); - return writes - cancelledWrites; + return extractRow(rows, 5); } catch (Exception e) { LOGGER.log(failureCount++ > 0 ? Level.DEBUG : Level.WARN, "Failure getting writes", e); return IOCounterDefault.IO_COUNTER_UNAVAILABLE; -- To view, visit https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/17937 To unsubscribe, or for help writing mail filters, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-Project: asterixdb Gerrit-Branch: trinity Gerrit-Change-Id: Ic4df1d055a2a101b6951ab8a18a72596f4b9c487 Gerrit-Change-Number: 17937 Gerrit-PatchSet: 2 Gerrit-Owner: Hussain Towaileb <[email protected]> Gerrit-Reviewer: Anon. E. Moose #1000171 Gerrit-Reviewer: Hussain Towaileb <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]> Gerrit-Reviewer: Murtadha Hubail <[email protected]> Gerrit-MessageType: merged
