rmetzger commented on a change in pull request #6594: [FLINK-9311] [pubsub] 
Added PubSub source connector with support for checkpointing (ATLEAST_ONCE)
URL: https://github.com/apache/flink/pull/6594#discussion_r256496252
 
 

 ##########
 File path: 
flink-connectors/flink-connector-pubsub/src/main/java/org/apache/flink/streaming/connectors/pubsub/PubSubSink.java
 ##########
 @@ -0,0 +1,270 @@
+/*
+ * 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.streaming.connectors.pubsub;
+
+import org.apache.flink.api.common.serialization.SerializationSchema;
+import org.apache.flink.configuration.Configuration;
+import org.apache.flink.streaming.api.functions.sink.RichSinkFunction;
+import org.apache.flink.streaming.api.functions.sink.SinkFunction;
+import 
org.apache.flink.streaming.connectors.pubsub.common.SerializableCredentialsProvider;
+
+import com.google.api.gax.core.CredentialsProvider;
+import com.google.api.gax.grpc.GrpcTransportChannel;
+import com.google.api.gax.rpc.FixedTransportChannelProvider;
+import com.google.api.gax.rpc.TransportChannel;
+import com.google.auth.Credentials;
+import com.google.cloud.pubsub.v1.Publisher;
+import com.google.protobuf.ByteString;
+import com.google.pubsub.v1.ProjectTopicName;
+import com.google.pubsub.v1.PubsubMessage;
+import io.grpc.ManagedChannel;
+import io.grpc.ManagedChannelBuilder;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.IOException;
+import java.util.concurrent.TimeUnit;
+
+/**
+ * A sink function that outputs to PubSub.
+ *
+ * @param <IN> type of PubSubSink messages to write
+ */
+public class PubSubSink<IN> extends RichSinkFunction<IN> {
+       private static final Logger LOG = 
LoggerFactory.getLogger(PubSubSink.class);
+
+       private final SerializableCredentialsProvider 
serializableCredentialsProvider;
+       private final SerializationSchema<IN> serializationSchema;
+       private final String projectName;
+       private final String topicName;
+       private final String hostAndPort;
+
+       private transient Publisher publisher;
+
+       private PubSubSink(
+               SerializableCredentialsProvider serializableCredentialsProvider,
+               SerializationSchema<IN> serializationSchema,
+               String projectName,
+               String topicName,
+               String hostAndPort) {
+               this.serializableCredentialsProvider = 
serializableCredentialsProvider;
+               this.serializationSchema = serializationSchema;
+               this.projectName = projectName;
+               this.topicName = topicName;
+               this.hostAndPort = hostAndPort;
+       }
+
+       private transient ManagedChannel managedChannel = null;
+       private transient TransportChannel channel = null;
+
+       @Override
+       public void open(Configuration configuration) throws Exception {
+               Publisher.Builder builder = Publisher
+                       .newBuilder(ProjectTopicName.of(projectName, topicName))
+                       
.setCredentialsProvider(serializableCredentialsProvider);
+
+               if (hostAndPort != null) {
+                       managedChannel = ManagedChannelBuilder
+                               .forTarget(hostAndPort)
+                               .usePlaintext(true) // This is 'Ok' because 
this is ONLY used for testing.
+                               .build();
+                       channel = 
GrpcTransportChannel.newBuilder().setManagedChannel(managedChannel).build();
+                       
builder.setChannelProvider(FixedTransportChannelProvider.create(channel));
+               }
+
+               publisher = builder.build();
+       }
+
+       @Override
+       public void close() throws Exception {
+               super.close();
+               shutdownPublisher();
+               shutdownTransportChannel();
+               shutdownManagedChannel();
 
 Review comment:
   I don't see why it's necessary to close the different things in separate 
methods.
   I would handle all the closing in the `close()` method, without calling 
these additional methods (which are not shared with any other place)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to