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.
Support Pulsar schema for pulsar kafka client wrapper (apache#4534)
Fixes apache#4228 Master Issue: apache#4228 ### Motivation Use Pulsar schema in pulsar kafka client. ### Modifications Support schema of pulsar for pulsar kafka client ### Verifying this change Add Unit test
- Loading branch information
Showing
12 changed files
with
804 additions
and
104 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
...sts/src/test/java/org/apache/pulsar/client/kafka/compat/examples/ConsumerAvroExample.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,75 @@ | ||
/** | ||
* 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.kafka.compat.examples; | ||
|
||
import org.apache.kafka.clients.consumer.Consumer; | ||
import org.apache.kafka.clients.consumer.ConsumerRecords; | ||
import org.apache.kafka.clients.consumer.KafkaConsumer; | ||
import org.apache.kafka.common.serialization.IntegerDeserializer; | ||
import org.apache.kafka.common.serialization.StringDeserializer; | ||
import org.apache.pulsar.client.api.schema.SchemaDefinition; | ||
import org.apache.pulsar.client.impl.schema.AvroSchema; | ||
import org.apache.pulsar.client.kafka.compat.examples.utils.Bar; | ||
import org.apache.pulsar.client.kafka.compat.examples.utils.Foo; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.util.Arrays; | ||
import java.util.Properties; | ||
|
||
public class ConsumerAvroExample { | ||
|
||
public static void main(String[] args) { | ||
String topic = "persistent://public/default/test-avro"; | ||
|
||
Properties props = new Properties(); | ||
props.put("bootstrap.servers", "pulsar://localhost:6650"); | ||
props.put("group.id", "my-subscription-name"); | ||
props.put("enable.auto.commit", "false"); | ||
props.put("key.deserializer", IntegerDeserializer.class.getName()); | ||
props.put("value.deserializer", StringDeserializer.class.getName()); | ||
|
||
AvroSchema<Bar> barSchema = AvroSchema.of(SchemaDefinition.<Bar>builder().withPojo(Bar.class).build()); | ||
AvroSchema<Foo> fooSchema = AvroSchema.of(SchemaDefinition.<Foo>builder().withPojo(Foo.class).build()); | ||
|
||
Bar bar = new Bar(); | ||
bar.setField1(true); | ||
|
||
Foo foo = new Foo(); | ||
foo.setField1("field1"); | ||
foo.setField2("field2"); | ||
foo.setField3(3); | ||
|
||
@SuppressWarnings("resource") | ||
Consumer<Foo, Bar> consumer = new KafkaConsumer<>(props, fooSchema, barSchema); | ||
consumer.subscribe(Arrays.asList(topic)); | ||
|
||
while (true) { | ||
ConsumerRecords<Foo, Bar> records = consumer.poll(100); | ||
records.forEach(record -> { | ||
log.info("Received record: {}", record); | ||
}); | ||
|
||
// Commit last offset | ||
consumer.commitSync(); | ||
} | ||
} | ||
|
||
private static final Logger log = LoggerFactory.getLogger(ConsumerExample.class); | ||
} |
68 changes: 68 additions & 0 deletions
68
...sts/src/test/java/org/apache/pulsar/client/kafka/compat/examples/ProducerAvroExample.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,68 @@ | ||
/** | ||
* 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.kafka.compat.examples; | ||
|
||
import org.apache.kafka.clients.producer.KafkaProducer; | ||
import org.apache.kafka.clients.producer.Producer; | ||
import org.apache.kafka.clients.producer.ProducerRecord; | ||
import org.apache.kafka.common.serialization.IntegerSerializer; | ||
import org.apache.kafka.common.serialization.StringSerializer; | ||
import org.apache.pulsar.client.api.schema.SchemaDefinition; | ||
import org.apache.pulsar.client.impl.schema.AvroSchema; | ||
import org.apache.pulsar.client.kafka.compat.examples.utils.Bar; | ||
import org.apache.pulsar.client.kafka.compat.examples.utils.Foo; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.util.Properties; | ||
|
||
public class ProducerAvroExample { | ||
public static void main(String[] args) { | ||
String topic = "persistent://public/default/test-avro"; | ||
|
||
Properties props = new Properties(); | ||
props.put("bootstrap.servers", "pulsar://localhost:6650"); | ||
|
||
props.put("key.serializer", IntegerSerializer.class.getName()); | ||
props.put("value.serializer", StringSerializer.class.getName()); | ||
|
||
AvroSchema<Bar> barSchema = AvroSchema.of(SchemaDefinition.<Bar>builder().withPojo(Bar.class).build()); | ||
AvroSchema<Foo> fooSchema = AvroSchema.of(SchemaDefinition.<Foo>builder().withPojo(Foo.class).build()); | ||
|
||
Bar bar = new Bar(); | ||
bar.setField1(true); | ||
|
||
Foo foo = new Foo(); | ||
foo.setField1("field1"); | ||
foo.setField2("field2"); | ||
foo.setField3(3); | ||
|
||
|
||
Producer<Foo, Bar> producer = new KafkaProducer<>(props, fooSchema, barSchema); | ||
|
||
for (int i = 0; i < 10; i++) { | ||
producer.send(new ProducerRecord<Foo, Bar>(topic, i, foo, bar)); | ||
log.info("Message {} sent successfully", i); | ||
} | ||
|
||
producer.close(); | ||
} | ||
|
||
private static final Logger log = LoggerFactory.getLogger(ProducerExample.class); | ||
} |
30 changes: 30 additions & 0 deletions
30
...t-kafka-tests/src/test/java/org/apache/pulsar/client/kafka/compat/examples/utils/Bar.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,30 @@ | ||
/** | ||
* 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.kafka.compat.examples.utils; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.ToString; | ||
|
||
@Data | ||
@ToString | ||
@EqualsAndHashCode | ||
public class Bar { | ||
private boolean field1; | ||
} |
35 changes: 35 additions & 0 deletions
35
...t-kafka-tests/src/test/java/org/apache/pulsar/client/kafka/compat/examples/utils/Foo.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,35 @@ | ||
/** | ||
* 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.kafka.compat.examples.utils; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.ToString; | ||
import org.apache.avro.reflect.Nullable; | ||
|
||
@Data | ||
@ToString | ||
@EqualsAndHashCode | ||
public class Foo { | ||
@Nullable | ||
private String field1; | ||
@Nullable | ||
private String field2; | ||
private int field3; | ||
} |
Oops, something went wrong.