tanvipenumudy opened a new pull request, #3383:
URL: https://github.com/apache/ozone/pull/3383
## What changes were proposed in this pull request?
To develop a new Ozone Freon command tool where one can generate a synthetic
read and write operation mix workload using `OBJECT_STORE ("OBS")` APIs.
**Step-1:** Create `keyCountForRead` (defaultValue = 100) keys under
path/readPath
**Step-2:** Start `readThreadCount` (defaultValue = 90) concurrent read
threads
 each new Thread (() ->{
  for(1...`numOfReadOperations` (defaultValue = 50))
   bucket.listKeys(_path/readPath_)
 }
**Step-3:** Start `writeThreadCount` (defaultValue = 10) concurrent write
threads
 each new Thread (() -> {
  for(1...`numOfWriteOperations` (defaultValue = 10))
   bucket.createKey(_path/writePath/file-random-keypath_)
 }
## What is the link to the Apache JIRA
https://issues.apache.org/jira/browse/HDDS-6619
## How was this patch tested?
Added integration tests.
--
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]