diff --git a/README.md b/README.md index 2f12e0da..04f208dc 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/resiliency/service-to-service-resiliency.md b/resiliency/service-to-service-resiliency.md index 2c310511..96b6bfde 100644 --- a/resiliency/service-to-service-resiliency.md +++ b/resiliency/service-to-service-resiliency.md @@ -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: