Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Outbox docs #3763

Merged
merged 28 commits into from
Oct 3, 2023
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
aee22ad
add outbox docs
yaron2 Sep 25, 2023
b8b1b41
Merge branch 'v1.12' into outbox-1
yaron2 Sep 25, 2023
e0124b5
update preview features
yaron2 Sep 25, 2023
466e0c9
Merge branch 'outbox-1' of github.com:yaron2/docs into outbox-1
yaron2 Sep 25, 2023
cfa77a4
Merge branch 'v1.12' into outbox-1
yaron2 Sep 26, 2023
53781e6
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
ec43914
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
fd46240
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
0c67a66
updates
yaron2 Sep 26, 2023
6ddf0ad
changes
yaron2 Sep 26, 2023
7f4a20f
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
8769743
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
77f430e
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
b10d665
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
18a60af
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Sep 26, 2023
f1d4917
add demo
yaron2 Sep 26, 2023
8e85140
Merge branch 'outbox-1' of github.com:yaron2/docs into outbox-1
yaron2 Sep 26, 2023
f79b298
change redis to mysql
yaron2 Sep 26, 2023
0759b92
add outboxDiscardWhenMissingState clarification
yaron2 Sep 26, 2023
a2557f9
added diagram
yaron2 Sep 26, 2023
e88a195
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
44fa3c9
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
2aba97e
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
0118ebc
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
1487693
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
53c33dc
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
8c58c21
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
646ebea
Update daprdocs/content/en/developing-applications/building-blocks/st…
yaron2 Oct 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update daprdocs/content/en/developing-applications/building-blocks/st…
…ate-management/howto-outbox.md

Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com>
Signed-off-by: Yaron Schneider <schneider.yaron@live.com>
  • Loading branch information
yaron2 and hhunter-ms authored Oct 3, 2023
commit 53c33dcee757c342a29349819d87679da08fb6c1
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
| Name | Required | Default Value | Description |
| --------------------|-------------|---------------|------------------------------------------------------- |
| outboxPublishPubsub | Yes | N/A | Sets the name of the pub/sub component to deliver the notifications when publishing state changes
| outboxPublishTopic | Yes | N/A | Sets the topic to send the state changes to on the pub/sub configured with `outboxPublishPubsub`. The message body will be a state transaction item for an insert or update operation
| outboxPublishTopic | Yes | N/A | Sets the topic that receives the state changes on the pub/sub configured with `outboxPublishPubsub`. The message body will be a state transaction item for an `insert` or `update` operation
| outboxPubsub | No | `outboxPublishPubsub` | Sets the pub/sub component to use by Dapr to coordinate the state and pub/sub transactions. If not set, the pub/sub component configured with `outboxPublishPubsub` is used. This is useful if you want to separate the pub/sub component used to send the notification state changes from the one used to coordinate the transaction
yaron2 marked this conversation as resolved.
Show resolved Hide resolved
| outboxDiscardWhenMissingState | No | `false` | By setting `outboxDiscardWhenMissingState` to `true`, Dapr will discard the transaction if it cannot find the state in the database and does not retry again. This setting can be useful if the state store data has been deleted for any reason before Dapr was able to deliver the message and you would like Dapr to drop the items from the pub/sub and stop retrying to fetch the state
yaron2 marked this conversation as resolved.
Show resolved Hide resolved

Expand Down
Loading