-
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.
Merge pull request #20 from Kasean/12-artifact-processor-messaging
artifact processor messaging #12
- Loading branch information
Showing
5 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
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
2 changes: 1 addition & 1 deletion
2
...essor/src/main/java/org/student/Main.java → ...rc/main/java/org/student/Application.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
43 changes: 43 additions & 0 deletions
43
artifact-processor/src/main/java/org/student/messaging/MessageConsumer.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,43 @@ | ||
package org.student.messaging; | ||
|
||
import org.apache.kafka.clients.consumer.ConsumerConfig; | ||
import org.apache.kafka.clients.consumer.ConsumerRecord; | ||
import org.apache.kafka.clients.consumer.ConsumerRecords; | ||
import org.apache.kafka.clients.consumer.KafkaConsumer; | ||
import org.apache.kafka.common.TopicPartition; | ||
import org.apache.kafka.common.serialization.ByteArrayDeserializer; | ||
import org.apache.kafka.common.serialization.StringDeserializer; | ||
|
||
import java.time.Duration; | ||
import java.util.Collections; | ||
import java.util.Properties; | ||
|
||
public class MessageConsumer { | ||
|
||
private final KafkaConsumer<String, byte[]> consumer; | ||
|
||
public MessageConsumer(String bootstrapServers, String groupId) { | ||
Properties properties = new Properties(); | ||
properties.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers); | ||
properties.put(ConsumerConfig.GROUP_ID_CONFIG, groupId); | ||
properties.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class); | ||
properties.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, ByteArrayDeserializer.class); | ||
this.consumer = new KafkaConsumer<>(properties); | ||
} | ||
|
||
public void consume(String topic) { | ||
TopicPartition partition = new TopicPartition(topic, 0); | ||
consumer.assign(Collections.singletonList(partition)); | ||
|
||
while (true) { | ||
ConsumerRecords<String, byte[]> records = consumer.poll(Duration.ofMillis(100)); | ||
if (!records.isEmpty()) { | ||
for (ConsumerRecord<String, byte[]> record : records) { | ||
System.out.println("Consumed message: " + new String(record.value())); | ||
} | ||
} else | ||
System.out.println("No messages"); | ||
} | ||
|
||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
artifact-processor/src/main/java/org/student/messaging/MessageProducer.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,26 @@ | ||
package org.student.messaging; | ||
|
||
import org.apache.kafka.clients.producer.KafkaProducer; | ||
import org.apache.kafka.clients.producer.ProducerConfig; | ||
import org.apache.kafka.clients.producer.ProducerRecord; | ||
import org.apache.kafka.common.serialization.ByteArraySerializer; | ||
import org.apache.kafka.common.serialization.StringSerializer; | ||
|
||
import java.util.Properties; | ||
|
||
public class MessageProducer { | ||
|
||
private final KafkaProducer<String, byte[]> producer; | ||
|
||
public MessageProducer(String bootstrapServers) { | ||
Properties properties = new Properties(); | ||
properties.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers); | ||
properties.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class); | ||
properties.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, ByteArraySerializer.class); | ||
this.producer = new KafkaProducer<>(properties); | ||
} | ||
|
||
public void send(String topic, byte[] message) { | ||
producer.send(new ProducerRecord<>(topic, 1, null, message)); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...essor/src/main/java/org/student/Main.java → ...rc/main/java/org/student/Application.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