Skip to content
New issue

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

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

Already on GitHub? # to your account

Make Kafka KEY and PARTITION values more intuitive. #785

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public final class KafkaConstants {
public static final String DEFAULT_GROUP = "group1";

public static final String PARTITION_KEY = "kafka.PARTITION_KEY";
public static final String PARTITION = "kafka.EXCHANGE_NAME";
public static final String KEY = "kafka.CONTENT_TYPE";
public static final String PARTITION = "kafka.PARTITION";
public static final String KEY = "kafka.KEY";
public static final String TOPIC = "kafka.TOPIC";
public static final String OFFSET = "kafka.OFFSET";

Expand Down