JingsongLi commented on a change in pull request #11474: FLINK-10114: Add ORC 
BulkWriter support for StreamingFileSink
URL: https://github.com/apache/flink/pull/11474#discussion_r400708403
 
 

 ##########
 File path: 
flink-formats/flink-orc-compress/src/main/java/org/apache/flink/formats/orc/writers/OrcBulkWriter.java
 ##########
 @@ -0,0 +1,61 @@
+/*
+ * 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.formats.orc.writers;
+
+import org.apache.flink.annotation.PublicEvolving;
+import org.apache.flink.api.common.serialization.BulkWriter;
+import org.apache.flink.formats.orc.vectorizer.Vectorizer;
+
+import org.apache.orc.Writer;
+
+import java.io.IOException;
+
+import static org.apache.flink.util.Preconditions.checkNotNull;
+
+/**
+ * A {@link BulkWriter} implementation that writes data in ORC format.
+ *
+ * @param <T> The type of element written.
+ */
+@PublicEvolving
+public class OrcBulkWriter<T> implements BulkWriter<T> {
+
+       private final Writer writer;
+       private final Vectorizer<T> vectorizer;
+
+       public OrcBulkWriter(Vectorizer<T> vectorizer, Writer writer) {
+               this.vectorizer = checkNotNull(vectorizer);
+               this.writer = checkNotNull(writer);
+       }
+
+       @Override
+       public void addElement(T element) throws IOException {
+               writer.addRowBatch(vectorizer.vectorize(element));
+       }
+
+       @Override
+       public void flush() throws IOException {
+               // We can't do anything here
 
 Review comment:
   We should do something.
   ORC will keep stripe in memory, we need flush them to Flink output stream.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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