mirror of https://github.com/apache/druid.git
Merge pull request #1935 from gianm/unbuffered-ftr-logging
ForkingTaskRunner: Log without buffering.
This commit is contained in:
commit
7816d67148
|
@ -260,7 +260,7 @@ public class ForkingTaskRunner implements TaskRunner, TaskLogStreamer
|
|||
log.info("Logging task %s output to: %s", task.getId(), logFile);
|
||||
boolean runFailed = true;
|
||||
|
||||
try (final OutputStream toLogfile = Files.asByteSink(logFile).openBufferedStream()) {
|
||||
try (final OutputStream toLogfile = Files.asByteSink(logFile).openStream()) {
|
||||
ByteStreams.copy(processHolder.process.getInputStream(), toLogfile);
|
||||
final int statusCode = processHolder.process.waitFor();
|
||||
log.info("Process exited with status[%d] for task: %s", statusCode, task.getId());
|
||||
|
|
Loading…
Reference in New Issue