diff --git a/CHANGELOG.md b/CHANGELOG.md index 43f1af6..8eec1b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.31.0] - 2024-10-07 + +### Changed + +Added two new methods to the `TkmsMessage` that allow to conveniently use standard uuid and priority headers: + +- `x-wise-uuid` - defines uniqueness of the message. +- `x-wise-priority` - defines priority of the message. Lower number - higher priority. + +Consumers of messages that have UUID and priority headers can efficiently use provided values for deduplication and other processing purposes with no need to deserialize payloads. + +Best practices for setting UUID header value: +- Likely the UUID value provided will be stored and indexed on consumer side. It's recommended to use sequential UUIDs in such scenarios, which proved to yield better performance. One way to generate sequential UUIDs is by using [tw-base-utils](https://github.com/transferwise/tw-base-utils/blob/master/tw-base-utils/src/main/java/com/transferwise/common/baseutils/UuidUtils.java) library. +- If payload already has UUID value then set the same value in header. It ensures that consumers of such messages can consistently deduplicate them by depending on one of those UUIDs. It simplifies consumers migration to standard header based UUID deduplication. +- If custom message identification mechanism is used (not based on UUID), still generate and add UUID to the headers. However, be mindful of cases when messages are sent in non-transactional environments. For example, the same message might be sent twice with different UUIDs but the same identity (according to the custom identification mechanism). + ## [0.30.1] - 2024-08-08 ### Changed - MeterFilter's applied by the library are no longer explicitly applied and are instead diff --git a/gradle.properties b/gradle.properties index fe6a7f0..229d380 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.30.1 +version=0.31.0 diff --git a/tw-tkms-starter/src/main/java/com/transferwise/kafka/tkms/api/TkmsMessage.java b/tw-tkms-starter/src/main/java/com/transferwise/kafka/tkms/api/TkmsMessage.java index cd394b5..4b66cba 100644 --- a/tw-tkms-starter/src/main/java/com/transferwise/kafka/tkms/api/TkmsMessage.java +++ b/tw-tkms-starter/src/main/java/com/transferwise/kafka/tkms/api/TkmsMessage.java @@ -1,11 +1,14 @@ package com.transferwise.kafka.tkms.api; +import com.transferwise.common.baseutils.UuidUtils; import com.transferwise.kafka.tkms.CompressionAlgorithm; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; +import java.nio.charset.StandardCharsets; import java.time.Instant; import java.util.ArrayList; import java.util.List; import java.util.Map; +import java.util.UUID; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; import javax.validation.constraints.PositiveOrZero; @@ -71,6 +74,39 @@ public class TkmsMessage { */ private Map, ?> metadata; + /** + * Adds {@code x-wise-uuid} header to the message, which uniquely identifies this message for consumers. + * + *
Having UUID in header allows consumers to run deduplication check on this value without need to deserialize payload. + * If payload provides uuid it must be the same as this value so that consumers that depend on either of these values can have consistent + * deduplication. + * + *
Prefer using sequential uuids (e.g. {@link UuidUtils#generatePrefixCombUuid()}) which are proved to yield better performance. + */ + public TkmsMessage addUuidHeader(UUID uuid) { + return addHeader( + new Header() + .setKey("x-wise-uuid") + .setValue(uuid.toString().getBytes(StandardCharsets.UTF_8)) + ); + } + + /** + * Adds {@code x-wise-priority} header to the message, which defines priority of this message for consumers. + * + *
Lower value means higher priority. For example, 0 is higher priority than 10. + * + *
Having priority in header allows consumers to derive priority without need to deserialize payload. For example, it can be useful
+ * when consumers filter messages based on priority before deciding how to process those.
+ */
+ public TkmsMessage addPriorityHeader(long priority) {
+ return addHeader(
+ new Header()
+ .setKey("x-wise-priority")
+ .setValue(Long.toString(priority).getBytes(StandardCharsets.UTF_8))
+ );
+ }
+
public TkmsMessage addHeader(Header header) {
if (headers == null) {
headers = new ArrayList<>();
diff --git a/tw-tkms-starter/src/test/java/com/transferwise/kafka/tkms/EndToEndIntTest.java b/tw-tkms-starter/src/test/java/com/transferwise/kafka/tkms/EndToEndIntTest.java
index 5747db8..51dc59d 100644
--- a/tw-tkms-starter/src/test/java/com/transferwise/kafka/tkms/EndToEndIntTest.java
+++ b/tw-tkms-starter/src/test/java/com/transferwise/kafka/tkms/EndToEndIntTest.java
@@ -6,6 +6,7 @@
import com.fasterxml.jackson.databind.ObjectMapper;
import com.transferwise.common.baseutils.ExceptionUtils;
+import com.transferwise.common.baseutils.UuidUtils;
import com.transferwise.common.baseutils.transactionsmanagement.ITransactionsHelper;
import com.transferwise.kafka.tkms.api.ITransactionalKafkaMessageSender;
import com.transferwise.kafka.tkms.api.ITransactionalKafkaMessageSender.SendMessageRequest;
@@ -28,6 +29,7 @@
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
+import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.ThreadLocalRandom;
@@ -107,6 +109,8 @@ void testThatJsonStringMessageCanBeSentAndRetrieved(boolean deferUntilCommit) {
for (int i = 0; i < messageMultiplier; i++) {
sb.append(messagePart);
}
+ var uuid = UuidUtils.generatePrefixCombUuid();
+ var priority = 17L;
tkmsStorageToKafkaProxy.pause();
@@ -116,10 +120,20 @@ void testThatJsonStringMessageCanBeSentAndRetrieved(boolean deferUntilCommit) {
Consumer