Logger in ASP.NET stops after a few hours, won't restart until app is cycled
2012-01-11 16:38:18 GMT
I have been using the AdoNetAppender for a while now and have a few issues with it.
1) If the database that it logs to goes offline it will stop logging messages until the application is restarted
· You can overcome that issue by setting ReconnectOnError but the problem with that is that if the database is still offline it will block your program thread until it times out every time it tries to flush the events.
2) Since the AdoNetAppender derives from BufferAppenderSkeleton it buffers events before writing to the DB. Not a bad idea unless you want to monitor the DB for exceptions in real-time. So let’s say I set the default buffer size to 20 events. If I am monitoring the DB I won’t see any of the exceptions till it hits the buffer size of 20 events.
· The fix for me is to set the buffer to 1 event so that I get real-time results when an exception happens. However I am not taking advantage of buffering the events so that the application thread returns quicker and writes to the DB less frequent.
Here is the behavior I want.
1) Set by default buffer size to 100
2) Set a buffer flush interval to 60 seconds
3) Set retry logic for DB connection in the event that the DB is unavailable and cache the log events being written
So here is an example of how it would work.
Write an exception to AdoNetAppender
Event is buffered
If buffer exceeds 100 events or 60 seconds has elapsed the buffer will be flushed
If the appender is unable to talk to the DB it marks the connection as failed and caches the events locally
Next write attempts looks to see if the retry time has been exceeded and if so attempts to write buffer to DB
Also any local events previously cached from a failure will be written as well.
So now I am back to using a buffer
I now see any exceptions at most 60 seconds after they happen
If the DB goes down I now have retry logic for attempting to write the events (key is not every attempt so the application is not being blocked on every write)
Now not being entirely familiar with the source for Log4Net I attempted to add these features and have it working. However not sure if my approach is the approach you would take for including in your source.
If anyone likes the features listed above I would be happy to provide the source changes. I did this by creating a AdoNetAppenderEx class that looks just like the AdoNetAppender but with my additions.
However I personally think the concept of flushing events on an interval should be coded up higher in the BufferAppenderSkeleton as the issue I don’t like is having to wait till the number of buffered events is exceeded. Would be nice to specify another threshold for buffered events to be time based.
The retry logic however for the DB is essential but don’t want it happening on every write but rather a retry after X seconds has elapsed since the last failed connection.
· You can overcome that issue by setting ReconnectOnError but the problem with that is that if the database is still offline it will block your program thread until it times out every time it tries to flush the events.
· The fix for me is to set the buffer to 1 event so that I get real-time results when an exception happens. However I am not taking advantage of buffering the events so that the application thread returns quicker and writes to the DB less frequent.
Thanks for your input!
That is, of course, the problem. The site is up all day. One of the sources of messages logs something every time a user logs in. Thus, any minor database downtime or timeout could cause a connection failure.
I’ll be setting the ReconnectOnError to true immediately, but I agree with your idea. I haven’t messed with log4net code, but I’ve written services that handle database downtime just as you’ve suggested. In those cases, the source input was not dependent on the database (data was coming in from factory equipment), there was no user interaction, and it was acceptable to buffer the input until the database came back up.
I’m not sure my current application needs the same functionality because the site is completely dependent on the database. If the database is down, then every query is timing out for every user and nothing can be done. The logging hardly matters. Of course, I can’t log database-down errors, but that’s not my primary interest in logging.
From: Jim Scott [mailto:jscott <at> infoconex.com]
Sent: Wednesday, January 11, 2012 6:58 PM
To: log4net-user <at> logging.apache.org
Subject: Re: Logger in ASP.NET stops after a few hours, won't restart until app is cycled
FYI, here is the enhancements that I suggested back in Jan, 2011 that I was referring to in my last email.
I have been using the AdoNetAppender for a while now and have a few issues with it.
1) If the database that it logs to goes offline it will stop logging messages until the application is restarted
· You can overcome that issue by setting ReconnectOnError but the problem with that is that if the database is still offline it will block your program thread until it times out every time it tries to flush the events.
2) Since the AdoNetAppender derives from BufferAppenderSkeleton it buffers events before writing to the DB. Not a bad idea unless you want to monitor the DB for exceptions in real-time. So let’s say I set the default buffer size to 20 events. If I am monitoring the DB I won’t see any of the exceptions till it hits the buffer size of 20 events.
· The fix for me is to set the buffer to 1 event so that I get real-time results when an exception happens. However I am not taking advantage of buffering the events so that the application thread returns quicker and writes to the DB less frequent.
Here is the behavior I want.
1) Set by default buffer size to 100
2) Set a buffer flush interval to 60 seconds
3) Set retry logic for DB connection in the event that the DB is unavailable and cache the log events being written
So here is an example of how it would work.
Write an exception to AdoNetAppender
Event is buffered
If buffer exceeds 100 events or 60 seconds has elapsed the buffer will be flushed
If the appender is unable to talk to the DB it marks the connection as failed and caches the events locally
Next write attempts looks to see if the retry time has been exceeded and if so attempts to write buffer to DB
Also any local events previously cached from a failure will be written as well.
So now I am back to using a buffer
I now see any exceptions at most 60 seconds after they happen
If the DB goes down I now have retry logic for attempting to write the events (key is not every attempt so the application is not being blocked on every write)
Now not being entirely familiar with the source for Log4Net I attempted to add these features and have it working. However not sure if my approach is the approach you would take for including in your source.
If anyone likes the features listed above I would be happy to provide the source changes. I did this by creating a AdoNetAppenderEx class that looks just like the AdoNetAppender but with my additions.
However I personally think the concept of flushing events on an interval should be coded up higher in the BufferAppenderSkeleton as the issue I don’t like is having to wait till the number of buffered events is exceeded. Would be nice to specify another threshold for buffered events to be time based.
The retry logic however for the DB is essential but don’t want it happening on every write but rather a retry after X seconds has elapsed since the last failed connection.
· You can overcome that issue by setting ReconnectOnError but the problem with that is that if the database is still offline it will block your program thread until it times out every time it tries to flush the events.
· The fix for me is to set the buffer to 1 event so that I get real-time results when an exception happens. However I am not taking advantage of buffering the events so that the application thread returns quicker and writes to the DB less frequent.
Hi,
I have an application in which I have tried to use both a FileAppender and a RemotingAppender.
I notice that when I have the following line in my config file, both appenders work fine:
<onlyFixPartialEventData value="true" />
When I do not have this line or set the value to “false”, then the FileAppender continues to work, but my RemotingAppender stops working.
You may wonder why I wish to set onlyFixPartialEventData to “false”. The reason:
My application is multi-threaded and creates a fixed number of threads. My loggers are static loggers (not instance loggers), and I have 2 of them. When I set onlyFixPartialEventData to “true”, I see that the number of threads in my application increases with time. These threads never seem to terminate.
How do I avoid this multiplication of threads?
Thanks in advance for any help.
Regards,
Jaya.
Hi,
Is it possible to setup log4net to re-throw exceptions back to caller? For example, if logging to database is timed out, we might want to save such exception to a file or to send e-mail to the support team. Thank you.
Best regards,
Roman
Hi,
We have web server with about 60,000 page visits a day. Within the next 6 months the load is expected to reach 1,000,000 page visits a day. We use log4net to store logs into the log database.
What is now unclear to me is if log4net is able to manage such a big load from performance point of view. Log4net is synchronous and if log database is down, then the entire process is waiting for log4net return call back (I assume it returns call back when database connection timeout occurs).
Should we write our own appender to save logs into the database asynchronously?
Or we would revisit our logging strategy and log only exceptions and errors in production environment, turning on other levels of logging during troubleshooting time?
Many thanks for replies.
Best regards,
Roman
RSS Feed6 | |
|---|---|
22 | |
24 | |
4 | |
8 | |
2 | |
9 | |
6 | |
9 | |
14 | |
19 | |
17 | |
8 | |
15 | |
8 | |
9 | |
17 | |
25 | |
52 | |
8 | |
21 | |
5 | |
2 | |
30 | |
7 | |
2 | |
8 | |
12 | |
20 | |
12 | |
4 | |
23 | |
35 | |
37 | |
20 | |
60 | |
42 | |
18 | |
18 | |
34 | |
17 | |
16 | |
25 | |
32 | |
94 | |
60 | |
84 | |
25 | |
47 | |
23 | |
42 | |
28 | |
37 | |
52 | |
90 | |
26 | |
41 | |
30 | |
35 | |
79 | |
39 | |
47 | |
89 | |
65 | |
19 | |
38 | |
61 | |
25 | |
64 | |
76 | |
43 | |
54 | |
51 | |
28 | |
49 | |
37 | |
46 | |
54 | |
26 | |
69 | |
40 | |
75 | |
98 | |
71 | |
87 | |
78 | |
124 | |
52 | |
102 | |
138 | |
65 | |
209 | |
116 | |
168 | |
249 | |
83 | |
174 | |
143 | |
107 | |
101 | |
175 | |
66 |