-
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 #23 from Kasean/milestones/messaging
Milestones/messaging - Done
- Loading branch information
Showing
29 changed files
with
459 additions
and
21 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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
package org.student; | ||
|
||
import org.student.messaging.MessageConsumer; | ||
|
||
public class Application { | ||
public static void main(String[] args) { | ||
System.out.println("Hello world!"); | ||
MessageConsumer consumer = new MessageConsumer("localhost:9092", "core-file-garbage-group"); | ||
consumer.consume("archiver-topic"); | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
archiver/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,44 @@ | ||
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.Arrays; | ||
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
archiver/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)); | ||
} | ||
} |
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)); | ||
} | ||
} |
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 @@ | ||
org.apache.kafka.common.network.InvalidReceiveException: Invalid receive (size = 1195725856 larger than 104857600) |
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
35 changes: 35 additions & 0 deletions
35
core-back-end/src/main/java/org/student/messaging/KafkaConfig.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 @@ | ||
package org.student.messaging; | ||
|
||
import org.apache.kafka.clients.producer.ProducerConfig; | ||
import org.apache.kafka.common.serialization.ByteArraySerializer; | ||
import org.apache.kafka.common.serialization.StringSerializer; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.kafka.core.DefaultKafkaProducerFactory; | ||
import org.springframework.kafka.core.KafkaTemplate; | ||
import org.springframework.kafka.core.ProducerFactory; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
@Configuration | ||
public class KafkaConfig { | ||
|
||
@Value("${spring.kafka.bootstrap-servers}") | ||
private String bootstrapServers; | ||
|
||
@Bean | ||
public ProducerFactory<String, byte[]> producerFactory() { | ||
Map<String, Object> configProp = new HashMap<>(); | ||
configProp.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers); | ||
configProp.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class); | ||
configProp.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, ByteArraySerializer.class); | ||
return new DefaultKafkaProducerFactory<>(configProp); | ||
} | ||
|
||
@Bean | ||
public KafkaTemplate<String, byte[]> kafkaTemplate() { | ||
return new KafkaTemplate<>(producerFactory()); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
core-back-end/src/main/java/org/student/messaging/archiver/ArchiverListener.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,16 @@ | ||
package org.student.messaging.archiver; | ||
|
||
import org.springframework.kafka.annotation.KafkaListener; | ||
import org.springframework.kafka.annotation.TopicPartition; | ||
import org.springframework.stereotype.Service; | ||
import org.student.messaging.topics.KafkaTopics; | ||
|
||
@Service | ||
public class ArchiverListener { | ||
|
||
@KafkaListener(id = "archiver-listener", topicPartitions = @TopicPartition(topic = KafkaTopics.ARCHIVER_TOPIC, partitions = {"1"}), groupId = "core-file-garbage-group") | ||
public void consume(byte[] message) { | ||
System.out.println("Consumed message: " + new String(message)); | ||
} | ||
|
||
} |
21 changes: 21 additions & 0 deletions
21
core-back-end/src/main/java/org/student/messaging/archiver/ArchiverProducer.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,21 @@ | ||
package org.student.messaging.archiver; | ||
|
||
import org.apache.kafka.clients.producer.ProducerRecord; | ||
import org.springframework.kafka.core.KafkaTemplate; | ||
import org.springframework.stereotype.Service; | ||
import org.student.messaging.topics.KafkaTopics; | ||
|
||
@Service | ||
public class ArchiverProducer { | ||
|
||
private final KafkaTemplate<String, byte[]> template; | ||
|
||
ArchiverProducer(KafkaTemplate<String, byte[]> template) { | ||
this.template = template; | ||
} | ||
|
||
public void send(byte[] message) { | ||
template.send(new ProducerRecord<>(KafkaTopics.ARCHIVER_TOPIC, 0, null, message)); | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
...end/src/main/java/org/student/messaging/artifact_processor/ArtifactProcessorListener.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,15 @@ | ||
package org.student.messaging.artifact_processor; | ||
|
||
import org.springframework.kafka.annotation.KafkaListener; | ||
import org.springframework.kafka.annotation.TopicPartition; | ||
import org.springframework.stereotype.Service; | ||
import org.student.messaging.topics.KafkaTopics; | ||
|
||
@Service | ||
public class ArtifactProcessorListener { | ||
@KafkaListener(id = "artifact-processor-listener", topicPartitions = @TopicPartition(topic = KafkaTopics.ARTIFACT_PROCESSOR_TOPIC, partitions = {"1"}), groupId = "core-file-garbage-group") | ||
public void consume(byte[] message) { | ||
System.out.println("Consumed message: " + new String(message)); | ||
} | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
...end/src/main/java/org/student/messaging/artifact_processor/ArtifactProcessorProducer.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,17 @@ | ||
package org.student.messaging.artifact_processor; | ||
|
||
import org.apache.kafka.clients.producer.ProducerRecord; | ||
import org.springframework.kafka.core.KafkaTemplate; | ||
import org.student.messaging.topics.KafkaTopics; | ||
|
||
public class ArtifactProcessorProducer { | ||
private final KafkaTemplate<String, byte[]> template; | ||
|
||
ArtifactProcessorProducer(KafkaTemplate<String, byte[]> template) { | ||
this.template = template; | ||
} | ||
|
||
public void send(byte[] message) { | ||
template.send(new ProducerRecord<>(KafkaTopics.ARTIFACT_PROCESSOR_TOPIC, 0, null, message)); | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
core-back-end/src/main/java/org/student/messaging/data_processor/DataProcessorListener.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,15 @@ | ||
package org.student.messaging.data_processor; | ||
|
||
import org.springframework.kafka.annotation.KafkaListener; | ||
import org.springframework.kafka.annotation.TopicPartition; | ||
import org.springframework.stereotype.Service; | ||
import org.student.messaging.topics.KafkaTopics; | ||
|
||
@Service | ||
public class DataProcessorListener { | ||
@KafkaListener(id = "data-processor-listener", topicPartitions = @TopicPartition(topic = KafkaTopics.DATA_PROCESSOR_TOPIC, partitions = {"1"}), groupId = "core-file-garbage-group") | ||
public void consume(byte[] message) { | ||
System.out.println("Consumed message: " + new String(message)); | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
core-back-end/src/main/java/org/student/messaging/data_processor/DataProcessorProducer.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,19 @@ | ||
package org.student.messaging.data_processor; | ||
|
||
import org.apache.kafka.clients.producer.ProducerRecord; | ||
import org.springframework.kafka.core.KafkaTemplate; | ||
import org.springframework.stereotype.Service; | ||
import org.student.messaging.topics.KafkaTopics; | ||
|
||
@Service | ||
public class DataProcessorProducer { | ||
private final KafkaTemplate<String, byte[]> template; | ||
|
||
DataProcessorProducer(KafkaTemplate<String, byte[]> template) { | ||
this.template = template; | ||
} | ||
|
||
public void send(byte[] message) { | ||
template.send(new ProducerRecord<>(KafkaTopics.DATA_PROCESSOR_TOPIC, 0, null, message)); | ||
} | ||
} |
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.