Tejaskriya commented on PR #8260:
URL: https://github.com/apache/ozone/pull/8260#issuecomment-2800781138
@aryangupta1998 , I have added some more tests to cover invalid tables.
Regarding a priority list, as right now, we are using a List<String>, The
order in which we initialize the `final List<String> compactableTables` in the
compactionService will be the order in which the compactions are triggered.
This is being done in the order of list defined in the config:
```
for (String tableName : compactableTables) {
queue.add(new CompactTask(tableName));
}
```
But from the queue, as all tasks are assigned the same priority (0), I am
not sure if the order of picking up the tasks is maintained. Could you share
your thoughts on this?
--
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]