Add Resiliency section to QuickStarts README (#780)

* Add Resiliency section to QuickStarts README

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Fix spelling of CB and also fix missing components path

* Fixing grammar again :)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

---------

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
This commit is contained in:
greenie-msft 2023-01-31 13:50:51 -08:00 committed by GitHub
parent 33d1cbc901
commit 332ac444a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -18,6 +18,7 @@ Pick a building block API (for example, pub-sub, state management) and rapidly t
| [Secrets Management](./secrets_management/) | Securely fetch secrets |
| Actors | Coming soon... |
| [Configuration](./configuration) | Get configuration items as key/value pairs or subscribe to changes whenever a configuration item changes |
| [Resiliency](./resiliency) | Define and apply fault-tolerant policies (retries/back-offs, timeouts and circuit breakers) to your Dapr API requests |
### Tutorials
Go deeper into a topic or scenario, oftentimes using building block APIs together to solve problems (for example, build a distributed calculator, build and deploy an app to Kubernetes).

View File

@ -20,7 +20,7 @@ This quickstart includes one service:
cd ../service_invocation/csharp/http/order-processor
dotnet restore
dotnet build
dapr run --app-port 7001 --app-id order-processor --config ../config.yaml --components-path --app-protocol http --dapr-http-port 3501 -- dotnet run
dapr run --app-port 7001 --app-id order-processor --config ../config.yaml --components-path ../../../components/ --app-protocol http --dapr-http-port 3501 -- dotnet run
```
##### Checkout Service:
@ -36,7 +36,7 @@ dapr run --app-id checkout --config ../config.yaml --components-path ../../../c
```bash
cd ../service_invocation/go/http/order-processor
go build .
dapr run --app-port 6001 --app-id order-processor --config ../config.yaml --components-path --app-protocol http --dapr-http-port 3501 -- go run .
dapr run --app-port 6001 --app-id order-processor --config ../config.yaml --components-path ../../../components/ --app-protocol http --dapr-http-port 3501 -- go run .
```
##### Checkout Service:
@ -51,7 +51,7 @@ dapr run --app-id checkout --config ../config.yaml --components-path ../../../c
```bash
cd ../service_invocation/java/http/order-processor
mvn clean install
dapr run --app-id order-processor --config ../config.yaml --components-path --app-port 9001 --app-protocol http --dapr-http-port 3501 -- java -jar target/OrderProcessingService-0.0.1-SNAPSHOT.jar
dapr run --app-id order-processor --config ../config.yaml --components-path ../../../components/ --app-port 9001 --app-protocol http --dapr-http-port 3501 -- java -jar target/OrderProcessingService-0.0.1-SNAPSHOT.jar
```
##### Checkout Service:
@ -66,7 +66,7 @@ dapr run --app-id checkout --config ../config.yaml --components-path ../../../co
```bash
cd ../service_invocation/javascript/http/order-processor
npm install
dapr run --app-port 5001 --app-id order-processor --config ../config.yaml --components-path --app-protocol http --dapr-http-port 3501 -- npm start
dapr run --app-port 5001 --app-id order-processor --config ../config.yaml --components-path ../../../components/ --app-protocol http --dapr-http-port 3501 -- npm start
```
##### Checkout Service:
@ -81,7 +81,7 @@ dapr run --app-id checkout --config ../config.yaml --components-path ../../../c
```bash
cd ../service_invocation/python/http/order-processor
pip3 install -r requirements.txt
dapr run --app-port 8001 --app-id order-processor --config ../config.yaml --components-path --app-protocol http --dapr-http-port 3501 -- python3 app.py
dapr run --app-port 8001 --app-id order-processor --config ../config.yaml --components-path ../../../components/ --app-protocol http --dapr-http-port 3501 -- python3 app.py
```
##### Checkout Service: