mikemccand commented on PR #16086: URL: https://github.com/apache/lucene/pull/16086#issuecomment-4583115680
I think during merging we wrap all `IndexOutput` in order to possible rate-limit the IO (off by default), and to check for aborting every X bytes (on). Maybe the problem here is we only instrumented that write path, not the read path, and `checkIntegrity` obviously is all about reading. Could we just instrument the read path for abort checking, symmetric to the write path, and hopefully as delegator so we don't add extra buffering/copying on read? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
