forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow byte[] keys for messages (apache#1016) (apache#2612)
Sometimes it can be useful to send something more complex than a string as the key of the message. However, early on Pulsar chose to make String the only way to send a key, and this permeates throughout the code, so we can't very well change it now. This patch adds rudamentary byte[] key support. If a user adds a byte[] key, the byte[] is base64 encoded and stored in the normal key field. We also send a flag to denote that it is base64 encoded, so the receiving end knows to decode it correct. There's no schema or anything attached to this. Any SerDe has to be handled manually by the client.
- Loading branch information
Showing
9 changed files
with
257 additions
and
2 deletions.
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
pulsar-broker/src/test/java/org/apache/pulsar/client/api/BytesKeyTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.client.api; | ||
|
||
import java.util.Random; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import org.testng.Assert; | ||
import org.testng.annotations.AfterMethod; | ||
import org.testng.annotations.BeforeMethod; | ||
import org.testng.annotations.Test; | ||
|
||
public class BytesKeyTest extends ProducerConsumerBase { | ||
|
||
@BeforeMethod | ||
@Override | ||
protected void setup() throws Exception { | ||
super.internalSetup(); | ||
super.producerBaseSetup(); | ||
} | ||
|
||
@AfterMethod | ||
@Override | ||
protected void cleanup() throws Exception { | ||
super.internalCleanup(); | ||
} | ||
|
||
private void byteKeysTest(boolean batching) throws Exception { | ||
Random r = new Random(0); | ||
Consumer<String> consumer = pulsarClient.newConsumer(Schema.STRING) | ||
.topic("persistent://my-property/my-ns/my-topic1") | ||
.subscriptionName("my-subscriber-name").subscribe(); | ||
|
||
Producer<String> producer = pulsarClient.newProducer(Schema.STRING) | ||
.enableBatching(batching) | ||
.batchingMaxPublishDelay(Long.MAX_VALUE, TimeUnit.SECONDS) | ||
.batchingMaxMessages(Integer.MAX_VALUE) | ||
.topic("persistent://my-property/my-ns/my-topic1").create(); | ||
|
||
byte[] byteKey = new byte[1000]; | ||
r.nextBytes(byteKey); | ||
producer.newMessage().keyBytes(byteKey).value("TestMessage").sendAsync(); | ||
producer.flush(); | ||
|
||
Message<String> m = consumer.receive(); | ||
Assert.assertEquals(m.getValue(), "TestMessage"); | ||
Assert.assertEquals(m.getKeyBytes(), byteKey); | ||
Assert.assertTrue(m.hasBase64EncodedKey()); | ||
} | ||
|
||
@Test | ||
public void testBytesKeyBatch() throws Exception { | ||
byteKeysTest(true); | ||
} | ||
|
||
@Test | ||
public void testBytesKeyNoBatch() throws Exception { | ||
byteKeysTest(false); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.