Skip to content

Commit

Permalink
docs: fixing paths in concurrency docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bojand committed Nov 21, 2020
1 parent d3b6cb8 commit befeb61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions www/docs/concurrency.md
Expand Up @@ -10,7 +10,7 @@ Many of these options are similar to the load control options, but independently
## Step Up Concurrency

```
./dist/ghz --insecure --async --proto /Users/bdjurkovic/go/grpc-helloworld-oc/helloworld/helloworld.proto \
./dist/ghz --insecure --async --proto /protos/helloworld.proto \
--call helloworld.Greeter/SayHello \
-n 10000 --rps 200 \
--concurrency-schedule=step --concurrency-start=5 --concurrency-step=5 --concurrency-end=50 --concurrency-step-duration=5s \
Expand Down Expand Up @@ -56,7 +56,7 @@ This test performs a constant load at `200` RPS, starting with `5` workers, and
## Step Down Concurrency

```
./dist/ghz --insecure --async --proto /Users/bdjurkovic/go/grpc-helloworld-oc/helloworld/helloworld.proto \
./dist/ghz --insecure --async --proto /protos/helloworld.proto \
--call helloworld.Greeter/SayHello \
-n 10000 --rps 200 \
--concurrency-schedule=step --concurrency-start=50 --concurrency-step=-5 \
Expand Down Expand Up @@ -104,7 +104,7 @@ This test performs a constant load at `200` RPS, starting with `50` workers, and
## Linear increase of concurrency

```
./dist/ghz --insecure --async --proto /Users/bdjurkovic/go/grpc-helloworld-oc/helloworld/helloworld.proto \
./dist/ghz --insecure --async --proto /protos/helloworld.proto \
--call helloworld.Greeter/SayHello \
-n 10000 --rps 200 \
--concurrency-schedule=line --concurrency-start=20 --concurrency-step=2 --concurrency-max-duration=30s \
Expand Down

0 comments on commit befeb61

Please sign in to comment.