Christos Bisias
Christos Bisias
@adoroszlai The exact commands to reproduce the test would be Running docker-compose and getting the aws key ``` cd hadoop-ozone/dist/target/ozone-1.3.0-SNAPSHOT/compose/ozonesecure docker-compose up -d --scale datanode=3 docker-compose exec scm bash bash-4.2$...
Thanks @adoroszlai for the clarification. @Zeddling should add that as well in the description.
@kerneltime @errose28 That's the new PR for the test changes from https://github.com/apache/ozone/pull/3750.
Hi @dombizita, thanks for the feedback. With two separate tables, what happens when Recon gets statistics for both bucket layouts? Do we iterate both tables and sum the results?
@dombizita @smengcl Another solution to this, would be to have a common NSSummary table for both bucket layouts. Instead of calling both tasks, we could add `process` and `reprocess` methods...
@dombizita `NSSummary` isn't bucket specific. We would have an issue if we were gathering info for volumes but we are dealing with buckets. > NSSummaryTask.process would call eg. first NSSummaryTaskWithFSO.process...
@GeorgeJahad I've made the changes based on your recommendations.
@dombizita I've made the changes so that `NSSummaryTask` gets called in place of `NSSummaryTaskWithFSO` and `NSSummaryTaskWithLegacy`, like we discussed. Let me know how it looks. I've also modified the tests...
@dombizita @smengcl Could you take a look at this patch?