manika137 commented on code in PR #7837: URL: https://github.com/apache/hadoop/pull/7837#discussion_r2246885435
########## hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/AbfsInputStream.java: ########## @@ -544,7 +555,9 @@ private int readInternal(final long position, final byte[] b, final int offset, } // got nothing from read-ahead, do our own read now - receivedBytes = readRemote(position, b, offset, length, new TracingContext(tracingContext)); + TracingContext tc = new TracingContext(tracingContext); + tc.setReadType(ReadType.MISSEDCACHE_READ); + receivedBytes = readRemote(position, b, offset, length, tc); return receivedBytes; } else { LOG.debug("read ahead disabled, reading remote"); Review Comment: Should we add readtype as normal read for this TC as well? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-issues-h...@hadoop.apache.org