You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-template.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -254,14 +254,14 @@ The properties for the Multi-App Run template align with the `dapr run` CLI flag
254
254
| `apiListenAddresses` | N | Dapr API listen addresses | |
255
255
| `logLevel` | N | The log verbosity. | |
256
256
| `appMaxConcurrency` | N | The concurrency level of the application; default is unlimited | |
257
-
| `placementHostAddress` | N | | |
257
+
| `placementHostAddress` | N | Comma separated list of addresses for Dapr placement servers | `127.0.0.1:50057,127.0.0.1:50058` |
258
+
| `schedulerHostAddress` | N | Dapr Scheduler Service host address | `localhost:50006` |
258
259
| `appSSL` | N | Enable https when Dapr invokes the application | |
259
-
| `daprHTTPMaxRequestSize` | N | Max size of the request body in MB. | |
260
-
| `daprHTTPReadBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. The default 4 KB | |
260
+
| `maxBodySize` | N | Max size of the request body in MB. Set the value using size units (e.g., `16Mi` for 16MB). The default is `4Mi` | |
261
+
| `readBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. Set the value using size units, for example `32Ki` will support headers up to 32KB . Default is `4Ki` for 4KB | |
261
262
| `enableAppHealthCheck` | N | Enable the app health check on the application | `true`, `false` |
262
263
| `appHealthCheckPath` | N | Path to the health check file | `/healthz` |
263
-
| `appHealthProbeInterval` | N | Interval to probe for the health of the app in seconds
264
-
| |
264
+
| `appHealthProbeInterval` | N | Interval to probe for the health of the app in seconds | |
265
265
| `appHealthProbeTimeout` | N | Timeout for app health probes in milliseconds | |
266
266
| `appHealthThreshold` | N | Number of consecutive failures for the app to be considered unhealthy | |
267
267
| `enableApiLogging` | N | Enable the logging of all API calls from application to Dapr | |
@@ -303,10 +303,11 @@ The properties for the Multi-App Run template align with the `dapr run -k` CLI f
303
303
| `apiListenAddresses` | N | Dapr API listen addresses | |
304
304
| `logLevel` | N | The log verbosity. | |
305
305
| `appMaxConcurrency` | N | The concurrency level of the application; default is unlimited | |
306
-
| `placementHostAddress` | N | | |
306
+
| `placementHostAddress` | N | Comma separated list of addresses for Dapr placement servers | `127.0.0.1:50057,127.0.0.1:50058` |
307
+
| `schedulerHostAddress` | N | Dapr Scheduler Service host address | `127.0.0.1:50006` |
307
308
| `appSSL` | N | Enable https when Dapr invokes the application | |
308
-
| `daprHTTPMaxRequestSize` | N | Max size of the request body in MB. | |
309
-
| `daprHTTPReadBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. The default 4 KB | |
309
+
| `maxBodySize` | N | Max size of the request body in MB. Set the value using size units (e.g., `16Mi` for 16MB). The default is `4Mi`| `16Mi` |
310
+
| `readBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. Set the value using size units, for example `32Ki` will support headers up to 32KB . Default is `4Ki` for 4KB| `32Ki` |
310
311
| `enableAppHealthCheck` | N | Enable the app health check on the application | `true`, `false` |
311
312
| `appHealthCheckPath` | N | Path to the health check file | `/healthz` |
312
313
| `appHealthProbeInterval` | N | Interval to probe for the health of the app in seconds | |
Copy file name to clipboardExpand all lines: daprdocs/content/en/operations/hosting/kubernetes/kubernetes-persisting-scheduler.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ This means the actual disk usage of Scheduler will be higher than the current ob
41
41
### Setting the Storage Size on Installation
42
42
43
43
If you need to increase an **existing** Scheduler storage size, see the [Increase Scheduler Storage Size](#increase-existing-scheduler-storage-size) section below.
44
-
To increase the storage size (in this example- `16Gi`) for a **fresh** Dapr instalation, you can use the following command:
44
+
To increase the storage size (in this example- `16Gi`) for a **fresh** Dapr installation, you can use the following command:
For storage providers that do NOT support dynamic volume expansion: If Dapr has ever been installed on the cluster before, the Scheduler's Persistent Volume Claims must be manually uninstalled in order for new ones with increased storage size to be created.
Persistent Volume Claims are not deleted automatically with an [uninstall]({{< ref dapr-uninstall.md >}}). This is a deliberate safety measure to prevent accidental data loss.
Copy file name to clipboardExpand all lines: daprdocs/content/en/reference/api/jobs_api.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ With the jobs API, you can schedule jobs and tasks in the future.
20
20
Schedule a job with a name. Jobs are scheduled based on the clock of the server where the Scheduler service is running. The timestamp is not converted to UTC. You can provide the timezone with the timestamp in RFC3339 format to specify which timezone you'd like the job to adhere to. If no timezone is provided, the server's local time is used.
21
21
22
22
```
23
-
POST http://localhost:3500/v1.0-alpha1/jobs/<name>
23
+
POST http://localhost:<daprPort>/v1.0-alpha1/jobs/<name>
24
24
```
25
25
26
26
### URL parameters
@@ -100,7 +100,7 @@ $ curl -X POST \
100
100
Get a job from its name.
101
101
102
102
```
103
-
GET http://localhost:3500/v1.0-alpha1/jobs/<name>
103
+
GET http://localhost:<daprPort>/v1.0-alpha1/jobs/<name>
Copy file name to clipboardExpand all lines: daprdocs/content/en/reference/api/workflow_api.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Dapr provides users with the ability to interact with workflows through its buil
13
13
Start a workflow instance with the given name and optionally, an instance ID.
14
14
15
15
```
16
-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<workflowName>/start[?instanceID=<instanceID>]
16
+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<workflowName>/start[?instanceID=<instanceID>]
17
17
```
18
18
19
19
Note that workflow instance IDs can only contain alphanumeric characters, underscores, and dashes.
@@ -53,7 +53,7 @@ The API call will provide a response similar to this:
53
53
Terminate a running workflow instance with the given name and instance ID.
54
54
55
55
```
56
-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/terminate
56
+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/terminate
57
57
```
58
58
59
59
{{% alert title="Note" color="primary" %}}
@@ -87,7 +87,7 @@ This API does not return any content.
87
87
For workflow components that support subscribing to external events, such as the Dapr Workflow engine, you can use the following "raise event" API to deliver a named event to a specific workflow instance.
88
88
89
89
```
90
-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceID>/raiseEvent/<eventName>
90
+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceID>/raiseEvent/<eventName>
91
91
```
92
92
93
93
{{% alert title="Note" color="primary" %}}
@@ -120,7 +120,7 @@ None.
120
120
Pause a running workflow instance.
121
121
122
122
```
123
-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/pause
123
+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/pause
124
124
```
125
125
126
126
### URL parameters
@@ -147,7 +147,7 @@ None.
147
147
Resume a paused workflow instance.
148
148
149
149
```
150
-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/resume
150
+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/resume
151
151
```
152
152
153
153
### URL parameters
@@ -174,7 +174,7 @@ None.
174
174
Purge the workflow state from your state store with the workflow's instance ID.
175
175
176
176
```
177
-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/purge
177
+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/purge
178
178
```
179
179
180
180
{{% alert title="Note" color="primary" %}}
@@ -205,7 +205,7 @@ None.
205
205
Get information about a given workflow instance.
206
206
207
207
```
208
-
GET http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>
208
+
GET http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>
0 commit comments