log4cxx 의 동기화문제
글쓴이: mr.lee / 작성시간: 토, 2006/07/01 - 11:01오후
아파치 log4j 의 cpp 버젼인 log4cxx가 thread-safe 한지요?
이를테면, 클래스에서 아래와 같은 static ptr이 있다고 가정하고,
static LoggerPtr ptr = Logger::getLogger("Test");
여러 쓰레드가 아래와 같이 로깅을 한다고 봤을때
LOG4CXX_DEBUG(ptr, "write logging...");
문제가 생길 소지가 있는건지요.
자바의 log4j에서도 멀티쓰레드 환경에서 특별히 동기화 안하고 로깅했는데 별 문제가 없었기에
thread-safe하다고 생각하고 있었는데,
log4cxx에서 간혹, log4cxx::helper::IllegalMonitorStateException 이 발생하고 있어서 혹시
쓰레드 세이프하지 않는게 아닐까 하고 생각하고 있습니다.
만약, 그렇다면 log4j도 쓰레드 세이프하지 않는건지요?
Forums:
구글을 보니 아래와
구글을 보니 아래와 같은 글이 있네요.
A logger is should be thread-safe and can be used from multiple
threads. You do not need to request a logger for each thread. If you
do, you will just get multiple references to the same logger object.
The things you cannot do (without using socket listener) is to write
have two appenders write to the same file or have two instances of
log4cxx write to the same file.
On Dec 6, 2004, at 11:44 AM, Jeff Lynn wrote:
> Hi,
> ?
> Is is safe to log to the same log file from multiple worker threads
> with each thread calling the following to get a new logger instance:
> ?
> LoggerPtr logger = Logger::getLogger("Test1");
> ?
> whereas the main thread configured the logger as:
> ?
> PropertyConfigurator::configure("log4cxx.properties");
> ?
> I understand I can use the socket listener for multi-processes and
> multi-server environment but just wonder if it is safe if my app only
> runs in a single server with multiple worker threads.
> ?
> Thanks!
이것을 봐서는 (당연한 얘기겠지만) logger는 thread-safe하다고 봐도 될것같은데.. 왜 저런 예외가 라이버러리 내부에서 가끔 발생하는지 원인을 모르겠습니다. 현재 64비트로 컴파일하여 사용하고 있는데..그것과 연관된 버그가 있을지도 모르겠습니다만, 혹시 짐작가는부분이라도 있으신지요?
댓글 달기