|
|
|
@ -359,7 +359,7 @@ public abstract class AbstractCommandExecutor {
|
|
|
|
|
} |
|
|
|
|
logOutputIsSuccess = true; |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
logger.error(e.getMessage(), e); |
|
|
|
|
logger.error("Parse var pool error", e); |
|
|
|
|
logOutputIsSuccess = true; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -369,17 +369,16 @@ public abstract class AbstractCommandExecutor {
|
|
|
|
|
ExecutorService parseProcessOutputExecutorService = newDaemonSingleThreadExecutor(threadLoggerInfoName); |
|
|
|
|
parseProcessOutputExecutorService.submit(() -> { |
|
|
|
|
try { |
|
|
|
|
long lastFlushTime = System.currentTimeMillis(); |
|
|
|
|
while (logBuffer.size() > 0 || !logOutputIsSuccess) { |
|
|
|
|
if (logBuffer.size() > 0) { |
|
|
|
|
lastFlushTime = flush(lastFlushTime); |
|
|
|
|
while (!logBuffer.isEmpty() || !logOutputIsSuccess) { |
|
|
|
|
if (!logBuffer.isEmpty()) { |
|
|
|
|
logHandler.accept(logBuffer); |
|
|
|
|
logBuffer.clear(); |
|
|
|
|
} else { |
|
|
|
|
Thread.sleep(TaskConstants.DEFAULT_LOG_FLUSH_INTERVAL); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
Thread.currentThread().interrupt(); |
|
|
|
|
logger.error(e.getMessage(), e); |
|
|
|
|
logger.error("Output task log error", e); |
|
|
|
|
} finally { |
|
|
|
|
clear(); |
|
|
|
|
} |
|
|
|
@ -438,28 +437,6 @@ public abstract class AbstractCommandExecutor {
|
|
|
|
|
return processId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* when log buffer siz or flush time reach condition , then flush |
|
|
|
|
* |
|
|
|
|
* @param lastFlushTime last flush time |
|
|
|
|
* @return last flush time |
|
|
|
|
*/ |
|
|
|
|
private long flush(long lastFlushTime) { |
|
|
|
|
long now = System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
* when log buffer siz or flush time reach condition , then flush |
|
|
|
|
*/ |
|
|
|
|
if (logBuffer.size() >= TaskConstants.DEFAULT_LOG_ROWS_NUM |
|
|
|
|
|| now - lastFlushTime > TaskConstants.DEFAULT_LOG_FLUSH_INTERVAL) { |
|
|
|
|
lastFlushTime = now; |
|
|
|
|
logHandler.accept(logBuffer); |
|
|
|
|
|
|
|
|
|
logBuffer.clear(); |
|
|
|
|
} |
|
|
|
|
return lastFlushTime; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected abstract String buildCommandFilePath(); |
|
|
|
|
|
|
|
|
|
protected abstract void createCommandFileIfNotExists(String execCommand, String commandFile) throws IOException; |
|
|
|
|