Skip to content
Snippets Groups Projects

Migrate Beam benchmark implementation

Compare and Show latest version
21 files
+ 172
75
Compare changes
  • Side-by-side
  • Inline
Files
21
@@ -28,11 +28,20 @@ public class KafkaActivePowerRecordReader extends
final Map<String, Object> consumerConfig) {
super();
if (bootstrapServer == null) {
throw new IllegalArgumentException("bootstrapServer is null");
}
if (inputTopic == null) {
throw new IllegalArgumentException("inputTopic is null");
}
// Check if boostrap server and inputTopic are defined
if (bootstrapServer.isEmpty() || inputTopic.isEmpty()) {
throw new IllegalArgumentException("bootstrapServer or inputTopic missing");
}
reader =
KafkaIO.<String, ActivePowerRecord>read()
.withBootstrapServers(bootstrapServer)
Loading