-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-20713][core][runtime] out/err file support rolling
- Loading branch information
muzimusi
committed
Dec 23, 2020
1 parent
d42aa45
commit 7cfd1cf
Showing
8 changed files
with
163 additions
and
8 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
flink-core/src/main/java/org/apache/flink/util/log/LoggerStream.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* 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.util.log; | ||
|
||
import java.io.ByteArrayOutputStream; | ||
import java.io.IOException; | ||
|
||
/** | ||
* Redirect System.out System.err | ||
*/ | ||
public class LoggerStream extends java.io.OutputStream { | ||
protected static final byte[] LINE_SEPERATOR_BYTES = System.getProperty("line.separator").getBytes(); | ||
private ByteArrayOutputStream baos = new ByteArrayOutputStream(); | ||
|
||
private org.slf4j.Logger logger; | ||
private String level; | ||
|
||
public LoggerStream(org.slf4j.Logger logger, String level) { | ||
if (logger == null) { | ||
throw new IllegalArgumentException("logger cannot be null."); | ||
} | ||
this.logger = logger; | ||
this.level = level; | ||
} | ||
|
||
@Override | ||
public void write(int b) throws IOException { | ||
if (b == LINE_SEPERATOR_BYTES[LINE_SEPERATOR_BYTES.length - 1]) { | ||
switch (this.level) { | ||
case "ERROR": | ||
logger.error(baos.toString()); | ||
break; | ||
case "INFO": | ||
default: | ||
logger.info(baos.toString()); | ||
break; | ||
} | ||
baos.reset(); | ||
} else { | ||
baos.write(b); | ||
} | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
flink-core/src/main/java/org/apache/flink/util/log/OutErrLoggerUitls.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* 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.util.log; | ||
|
||
import org.slf4j.LoggerFactory; | ||
|
||
import java.io.PrintStream; | ||
|
||
public class OutErrLoggerUitls { | ||
|
||
private static String STDOUT_APPENDER = "stdout"; | ||
private static String STDERR_APPENDER = "stderr"; | ||
|
||
private static String INFO = "INFO"; | ||
private static String ERROR = "ERROR"; | ||
|
||
public static void setOutAndErrToLog() { | ||
setOutToLog(STDOUT_APPENDER, INFO); | ||
setErrToLog(STDERR_APPENDER, ERROR); | ||
} | ||
|
||
private static void setOutToLog(String name, String level) { | ||
System.setOut(new PrintStream(new LoggerStream(LoggerFactory.getLogger(name), level))); | ||
} | ||
|
||
private static void setErrToLog(String name, String level) { | ||
System.setErr(new PrintStream(new LoggerStream(LoggerFactory.getLogger(name), level))); | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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