Skip to content

Commit

Permalink
add dlq information to message's systemProperties (#64)
Browse files Browse the repository at this point in the history
* add dlq information to message's systemProperties

* do the rename work

* do the rename work
  • Loading branch information
lollipopjin authored Oct 10, 2022
1 parent d78d4ac commit 7ed3e26
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apache/rocketmq/v2/definition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,16 @@ message SystemProperties {
// orphan. Servers that manages orphan messages would pick up
// a capable publisher to resolve
optional google.protobuf.Duration orphaned_transaction_recovery_duration = 19;

// Information to identify whether this message is from dead letter queue.
optional DeadLetterQueue dead_letter_queue = 20;
}

message DeadLetterQueue {
// Original topic for this DLQ message.
string topic = 1;
// Original message id for this DLQ message.
string message_id = 2;
}

message Message {
Expand Down

0 comments on commit 7ed3e26

Please sign in to comment.