Skip to content

Commit

Permalink
Add snippet documenting how to disable target_throughput when using O…
Browse files Browse the repository at this point in the history
…SB in bash script

Signed-off-by: Ian Hoang <ianhoang16@gmail.com>
  • Loading branch information
IanHoang committed Sep 10, 2024
1 parent 3798b08 commit be28f07
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions big5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ This workload allows the following parameters to be specified using `--workload-
* `target_throughput` (default: 2): Target throughput for each query operation in requests per second, use 0 or "" for no throughput throttling.
* `warmup_iterations` (default: 100): Number of warmup query iterations prior to actual measurements commencing.

NOTE: If disabling `target_throughput` when using OSB in a bash script, use `0` or do not specify quotations after `target_throughput`. See the following code for invalid and valid examples:
```
# In a bash script, this will be invalid
--workload-params=target_throughput:""
# In a bash script, these two lines will be valid
--workload-params=target_throughput:0
--workload-params=target_throughput:
```

### Data Document Structure

Expand Down

0 comments on commit be28f07

Please sign in to comment.