This file contains hidden or 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
@Component | |
public class BasicStream { | |
private static final Serde<String> STRING_SERDE = Serdes.String(); | |
private static final String INPUT_TOPIC = "basic-stream-input-topic"; | |
private static final String OUTPUT_TOPIC = "basic-stream-output-topic"; | |
@Autowired | |
void buildPipeline(StreamsBuilder streamsBuilder) { | |
KStream<String, String> messageStream = streamsBuilder.stream(INPUT_TOPIC, Consumed.with(STRING_SERDE, STRING_SERDE)); |
This file contains hidden or 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
@Configuration | |
@EnableKafka | |
@EnableKafkaStreams | |
public class KafkaConfig { | |
@Value(value = "${spring.kafka.bootstrap-servers}") | |
private String bootstrapAddress; | |
@Bean(name = KafkaStreamsDefaultConfiguration.DEFAULT_STREAMS_CONFIG_BEAN_NAME) |
This file contains hidden or 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
HOUR/TAG:NY | TL/EUR | |
---|---|---|
11:00 | 18.20 | |
11:05 | 18.19 | |
11:10 | 18.21 |
This file contains hidden or 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
HOUR/TAG:BI | TL/EUR | |
---|---|---|
11:00 | 18.20 | |
11:05 | 18.20 | |
11:10 | 18.22 |
This file contains hidden or 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
HOUR/TAG:NY | TL/USD | |
---|---|---|
11:00 | 18.22 | |
11:05 | 18.21 | |
11:10 | 18.25 |
This file contains hidden or 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
HOUR/TAG:BI | TL/USD | |
---|---|---|
11:00 | 18.23 | |
11:05 | 18.22 | |
11:10 | 18.24 |
This file contains hidden or 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
HOUR | TL/USD | TL/EUR | TAG | |
---|---|---|---|---|
11:00 | 18.23 | 18.20 | BI | |
11:00 | 18.22 | 18.20 | NY | |
11:05 | 18.22 | 18.20 | BI | |
11:05 | 18.21 | 18.19 | NY | |
11:10 | 18.24 | 18.22 | BI | |
11:10 | 18.25 | 18.21 | NY |
This file contains hidden or 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
HOUR | TL/EUR | |
---|---|---|
11:00 | 18.20 | |
11:05 | 18.19 | |
11:10 | 18.21 |
This file contains hidden or 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
HOUR | TL/USD | |
---|---|---|
11:00 | 18.23 | |
11:05 | 18.22 | |
11:10 | 18.24 |
This file contains hidden or 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
HOUR | TL/USD | TL/EUR | |
---|---|---|---|
11:00 | 18.23 | 18.20 | |
11:05 | 18.22 | 18.19 | |
11:10 | 18.24 | 18.21 |
NewerOlder