umamaheswararao commented on PR #3379: URL: https://github.com/apache/ozone/pull/3379#issuecomment-1122951761
Thanks @aswinshakil for working on this patch. I got a scenario to check, Let's say if cache has elements like 0 101 102 .......1125..... But they may be loaded in different order into TreeMap....what if they loaded 101....1124 = 1024 Now we will go through the dirTable and it has 1-100. So, the tempCache is having 1....1124. Now we need only 1024. So, it should pick 1...1024. But the startKey for next iteration is 1024. It did not get chance to load 0 from TableCache before and it will not consider it as startKey(1024) already advanced. Is this a possible case? or I am missing something here? -- 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]
