szetszwo commented on PR #3482:
URL: https://github.com/apache/ozone/pull/3482#issuecomment-1150507012

   Then, I would suggest to have the following confs:
   ```
       @Config(key = "container.max",
           type = ConfigType.INT,
           defaultValue = "0", // 0 means unlimited.
           tags = {SCM, OZONE},
           description = "This property is used to limit the maximum number " +
               "of containers to process in each loop.";
       )
       private int containerMax = 0;
   
       @Config(key = "container.inflight.replication.limit",
           type = ConfigType.INT,
           defaultValue = "0", // 0 means unlimited.
           tags = {SCM, OZONE},
           description = "This property is used to limit the maximum number " +
               "of inflight replication in each containers."
       )
       private int containerInflightReplicationLimit = 0;
   
       @Config(key = "container.inflight.deletion.limit",
           type = ConfigType.INT,
           defaultValue = "0", // 0 means unlimited.
           tags = {SCM, OZONE},
           description = "This property is used to limit the maximum number " +
               "of inflight deletion in each containers."
       )
       private int containerInflightDeletionLimit = 0;
   ```


-- 
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]

Reply via email to