keith-turner commented on issue #4324: URL: https://github.com/apache/accumulo/issues/4324#issuecomment-1981441097
@ctubbsii suggested expanding the compaction range to match table split points to avoid having to do the periodic cleanup of compaction tablet metadata mentioned in this issue. I think this will work and will be much simpler. I think all that needs to be done is [at this point in the code](https://github.com/apache/accumulo/blob/1688cecd5a8889bcb41cec2bdb45d2f063d1d9a9/server/manager/src/main/java/org/apache/accumulo/manager/tableOps/compact/CompactRange.java#L86) do the following. * if startRow is not null then find the tablet containing startRow and pass its prev row to the ComactionDriver constructor * if endRow is not null then find the tablet containing endRow and pass its end row to the CompactionDriver constructor. Going to look at the bulk import code next. -- 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]
