All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.statefun.examples.greeter.GreetingIO Maven / Gradle / Ivy

/*
 * 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.flink.statefun.examples.greeter;

import java.nio.charset.StandardCharsets;
import java.util.Objects;
import org.apache.flink.statefun.examples.greeter.generated.GreetRequest;
import org.apache.flink.statefun.examples.greeter.generated.GreetResponse;
import org.apache.flink.statefun.sdk.io.EgressIdentifier;
import org.apache.flink.statefun.sdk.io.EgressSpec;
import org.apache.flink.statefun.sdk.io.IngressIdentifier;
import org.apache.flink.statefun.sdk.io.IngressSpec;
import org.apache.flink.statefun.sdk.kafka.KafkaEgressBuilder;
import org.apache.flink.statefun.sdk.kafka.KafkaEgressSerializer;
import org.apache.flink.statefun.sdk.kafka.KafkaIngressBuilder;
import org.apache.flink.statefun.sdk.kafka.KafkaIngressDeserializer;
import org.apache.kafka.clients.consumer.ConsumerConfig;
import org.apache.kafka.clients.consumer.ConsumerRecord;
import org.apache.kafka.clients.producer.ProducerRecord;

/**
 * A collection of all the components necessary to consume from and write to an external system, in
 * this case Apache Kafka.
 *
 * 

The ingress and egress identifiers provide named references without exposing the underlying * system. This way, in a multi-module deployment, functions can interact with IO modules through * identifiers without depending on specific implementations. */ final class GreetingIO { static final IngressIdentifier GREETING_INGRESS_ID = new IngressIdentifier<>(GreetRequest.class, "apache", "greet-ingress"); static final EgressIdentifier GREETING_EGRESS_ID = new EgressIdentifier<>("apache", "kafka-greeting-output", GreetResponse.class); private final String kafkaAddress; GreetingIO(String kafkaAddress) { this.kafkaAddress = Objects.requireNonNull(kafkaAddress); } IngressSpec getIngressSpec() { return KafkaIngressBuilder.forIdentifier(GREETING_INGRESS_ID) .withKafkaAddress(kafkaAddress) .withTopic("names") .withDeserializer(GreetKafkaDeserializer.class) .withProperty(ConsumerConfig.GROUP_ID_CONFIG, "greetings") .build(); } EgressSpec getEgressSpec() { return KafkaEgressBuilder.forIdentifier(GREETING_EGRESS_ID) .withKafkaAddress(kafkaAddress) .withSerializer(GreetKafkaSerializer.class) .build(); } private static final class GreetKafkaDeserializer implements KafkaIngressDeserializer { private static final long serialVersionUID = 1L; @Override public GreetRequest deserialize(ConsumerRecord input) { String who = new String(input.value(), StandardCharsets.UTF_8); return GreetRequest.newBuilder().setWho(who).build(); } } private static final class GreetKafkaSerializer implements KafkaEgressSerializer { private static final long serialVersionUID = 1L; @Override public ProducerRecord serialize(GreetResponse response) { byte[] key = response.getWho().getBytes(StandardCharsets.UTF_8); byte[] value = response.getGreeting().getBytes(StandardCharsets.UTF_8); return new ProducerRecord<>("greetings", key, value); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy