Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have several java application server running here, with several apps. They all log with Log4J into the same file system, which we created only for that reason. From time to time it happens that the file system runs out of space and the app gets

log4j:ERROR Failed to flush writer,                                             
java.io.IOException

Unfortunately Log4J does not recover from this error, so that even after space is freed in the file system, no more logs are written from that app. Are there any options, programming-wise or setting-wise, to get Log4J going again, besides restarting the app?

share|improve this question

3 Answers

up vote 1 down vote accepted

What do you see is an acceptable outcome here? I'd consider writing a new Appender that wraps whichever appender is accessing the disk, and tries to do something sensible when it detects IOExceptions. Maybe get it to wrap the underlying Appenders write methods in a try-catch block, and send you or a sysadmin an email.

share|improve this answer
From what I gather from logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/helpers/… the error is thrown once and after that it's over. What I would wish for is that, although the error is thrown only once, the appender continues to try to write to that file system... maybe with 5 minute pauses... it seems like a wrapper around the appender is a viable idea – dertoni Aug 27 '09 at 10:04
4  
If you're using the OnlyOnceErrorHandler, you might consider using the FallbackErrorHandler (logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/varia/…) instead. That way you can specify a second appender (maybe an email appender) when the first can't write any more. That'll handle a lot of what wrapping would do. – GaryF Aug 27 '09 at 12:16

limit the size of your logs and try using a custom appender to archive logs to a backup machine with lots of disk space.

share|improve this answer

I didn't test this, but the website of logback states:

Graceful recovery from I/O failures

Logback's FileAppender and all its sub-classes, including RollingFileAppender, can gracefully recover from I/O failures. Thus, if a file server fails temporarily, you no longer need to restart your application just to get logging working again. As soon as the file server comes back up, the relevant logback appender will transparently and quickly recover from the previous error condition.

I assume the same would be true for the above situation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.