[ 
https://issues.apache.org/jira/browse/FLINK-9850?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16581009#comment-16581009
 ] 

ASF GitHub Bot commented on FLINK-9850:
---------------------------------------

zentol commented on a change in pull request #6367: [FLINK-9850] Add a string 
to the print method to identify output for DataStream
URL: https://github.com/apache/flink/pull/6367#discussion_r210251656
 
 

 ##########
 File path: 
flink-core/src/main/java/org/apache/flink/api/common/functions/util/TaskOutputWriter.java
 ##########
 @@ -0,0 +1,81 @@
+/*
+ * 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.api.common.functions.util;
+
+import java.io.PrintStream;
+import java.io.Serializable;
+
+/**
+ * Task output writer for DataStream and DataSet print API.
+ */
+public class TaskOutputWriter<IN> implements Serializable {
+
+       private static final long serialVersionUID = 1L;
+
+       private static final boolean STD_OUT = false;
+       private static final boolean STD_ERR = true;
+
+       private final boolean target;
+       private transient PrintStream stream;
+       private final String sinkIdentifier;
+       private transient String completedPrefix;
+
+       public TaskOutputWriter() {
+               this("", STD_OUT);
+       }
+
+       public TaskOutputWriter(final boolean stdErr) {
+               this("", stdErr);
+       }
+
+       public TaskOutputWriter(final String sinkIdentifier, final boolean 
stdErr) {
 
 Review comment:
   This class could be simplified by simply passing in the `OutputStream`.

----------------------------------------------------------------
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


> Add a string to the print method to identify output for DataStream
> ------------------------------------------------------------------
>
>                 Key: FLINK-9850
>                 URL: https://issues.apache.org/jira/browse/FLINK-9850
>             Project: Flink
>          Issue Type: New Feature
>          Components: DataStream API
>            Reporter: Hequn Cheng
>            Assignee: vinoyang
>            Priority: Major
>              Labels: pull-request-available
>
> The output of the print method of {[DataSet}} allows the user to supply a 
> String to identify the output(see 
> [FLINK-1486|https://issues.apache.org/jira/browse/FLINK-1486]). But 
> {[DataStream}} doesn't support now. It is valuable to add this feature for 
> {{DataStream}}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to