I have a very basic Logger class:

public class Logger
{
    public static void Log(string message)
    {
        mySqlClassInDAL.ExecuteNonQuery(string.Format("Insert into LogTable (msg) values ({0})",message));
    }
}

I use it as such:

try
{
    PlayGame("Angry Pigs");
}
catch
{
    Logger.Log("Can't Play Game");
}

Using the logger makes the app run very slow, the process takes about 2 minutes to run from start to finish (if I comment out the code in the Log method). Otherwise, using the logger to log events, errors and etc. results in the app running in 5 mins.

How can one overcome this issue? Do you suggest I collect the Logs in a DataTable and then dump then bulk dump them into the DataBase Table at the end of the app? But I want to be able to log in real time.


I should have included this initially:

I believe it's how I'm doing things the DAL:

public int ExecuteNonQuery(string NonQuery)
{
    using (SqlConnection sc = new SqlConnection(AppConnectionString))
    {
        SqlCommand sqlCommand = new SqlCommand(NonQuery, sc);
        sqlCommand.Connection.Open();
        return sqlCommand.ExecuteNonQuery();
    }
}

When I run SQL Profiler here's what I see:

Audit Login -- network protocol: TCP/IP
RPC:Completed   exec sp_executesql N'INSERT INTO ...
Audit Logout
RPC:Completed   exec sp_reset_connection
Audit Login -- network protocol: TCP/IP
RPC:Completed   exec sp_executesql N'INSERT INTO ...
Audit Logout
RPC:Completed   exec sp_reset_connection

...

I think if I can avoid having 'sp_reset_connection' executed, I can overcome this issue.


UPDATE:

In order to test the suggestions given here. I created a class with the following methods:

  1. ExecuteNonQuery(string NonQuery) : same ExecuteNonQuery method posted above
  2. ExecuteNonQuery(string NonQuery, List params) : executes query by adding parameters
  3. ExecuteNonQuery2(string NonQuery, List params) : same as above but does not open connection each time, connection needs to be open when using this method
  4. ExecuteSP(string SPName, List parameterValues) : executes stored procedure
  5. ExecuteSP2(string SPName, List parameterValues) : same as #4 but connection needs to be open before using this method

Now here's how I created the code to test each of the above methods:

Console.WriteLine(DateTime.Now);
for (int i = 0; i < 1000; i++)
{
    ExecuteNonQuery(string.Format("INSERT INTO LogTable ... ", (i+baseNo).ToString()));
    ExecuteNonQuery("UPDATE Customers... Where ID = " + (i+baseNo).ToString());
}
Console.WriteLine(DateTime.Now);
.
.
.
for (int i = 0; i < 1000; i++)
{
    List<object> parameterValues = new List<object> { "abc", 1, (i+baseNo).ToString() };
    ExecuteSP("INSERTINTOLOG", parameterValues);
    ExecuteSP("UPDATECustomers", new List<object> { i+baseNo });
}

Console.WriteLine(DateTime.Now);
.
.
.

Here is the result I get:

2:25:46 - represents time app started

2:27:18 - first loop for running first method is complete

2:28:47

2:30:14

2:31:47

2:33:17 - time 5th loop for running 5th method (ExecuteSP2) is complete

Check out the time diffs (almost no diff among them):

in 1:32 - executes 2000 raw sql commands. (in 1 min 32 seconds).

in 1:29 - executes sql commands with params

in 1:27 - while connection is open, executes sql commands with params

in 1:33 - executes SP

in 1:30 - executes SP while connection is open

On a separate note, why was one of the answers deleted?

link|improve this question

33% accept rate
3  
Have you looked at using a specific logging framework, like log4net? – Lloyd Dec 7 '11 at 2:24
@Lloyd7 I'm not interested in using 3rd party tools in my app. Plus, I'm interested in learning why this is slowing down the process by so much. – lester burnham Dec 7 '11 at 2:32
I'm shocked that adding code, as well as try/catch blocks, should slow down the part that's supposed to get work done. How about get rid of the try/catch blocks so you can find out what's wrong with your code? – John Saunders Dec 7 '11 at 2:33
@JohnSaunders I guess the try catch block was not a good example. Actually no exceptions are occurring the app is running fine. It's mainly being used as such: Log("App Started"); Log("App updated table XYZ"); Log("Object with ID 123 was flagged for processing"); – lester burnham Dec 7 '11 at 2:36
1  
How fast does it run if your Log method does nothing and just returns? – John Saunders Dec 7 '11 at 2:53
show 5 more comments
feedback

3 Answers

You should look into a logging framework like log4net or NLog. Logging frameworks provide functionality to do asynchronous logging and there is no need to re-invent the wheel when perfectly good wheels already exist out there to solve this very problem.

But if you must implement this yourself try offloading the logging to a different thread that blocks on an in-memory queue of log events. This way your main application thread only needs to drop the message onto the queue and continue on its way.

link|improve this answer
feedback

A couple of ideas that may help improve the performance:

1) Create a command using parameters once at the start of the game. When you need to log, update the command's parameters and then ExecuteNonQuery.

2) Store a specific number of log messages in the logger class (say 10), then on the 10th one, start a transaction, store each of the messages, and commit the transaction. The only complication here is that you will need to have a cleanup method that will dump any remaining messages at the end of the game.

link|improve this answer
I voted this answer up. I understand that there's no need to re-invent the wheel. But at this point I'm interested in learning how this issue can actually be resolved. These are good ideas. – lester burnham Dec 7 '11 at 2:51
feedback

Couple of things you could look @

1) First compile the SQl in a SP this will execute a hello ofg a lot faster than the SQL script you are sending to the DB as it is compiled and the quyery optimiser can work its magic on accessing this large table

2) Need to remove any extra indexs to the the tblog in question as the inserts will cause the indexs to reindex for the selects i.e read fast add slow...reporting can be preformed on another table..

3) Look at puting the log files on seperate filegroups within the DB this will get things going 4) You could add a thread safe Producer/Consumer Pattern

var blockingCollection = new BlockingCollection<LogWriter>();

This way you game offloads the logwriting process to another Thread and you game continues happily ...Also you could be put a continue.waitall(tasks) this way you perform the writes of 5 logs in 1 call

There is another thread that then consumes these logwriter class that hits the DB using your compiled sp

5) Look at clearing out the LogTable Daily etc i.e use it as a staging table for a day then move off to a datawharehouse type of deal

This should Increase performance

UPDATED

6) This one rocks and I have used it many times for situations like this

Craete a Log SP using

  CREATE PROC sp_AddtoLog @in_values nText AS



DECLARE @hDoc int

--Prepare input values as an XML documnet

exec sp_xml_preparedocument @hDoc OUTPUT, @in_values

--Select data from the table based on values in XML

Insert into Log values (LogiD,Message)

SELECT * FROM Orders WHERE CustomerID IN (
      SELECT LogID,Message FROM OPENXML (@hdoc, '/NewDataSet/Logs', 1)
      WITH (LogID NCHAR(5),Message varchar(200)))

EXEC sp_xml_removedocument @hDoc

You need to be careful with the schema structure as this can be touchy especially with DatasetNames and Such.

Ok Now the code is easy any dataset

string logs =dsLog.GetXml();

*(You may need to play with setting the colum values in the DS to attribute XML etc or vice versa depending on the schema structure )

pass logs as a parm to this SP rememeber that the sp parm has to be NTEXT

With this you can pass your 2000+ log writes in 1 sp ...see how fast that goes ..

If you need instant Log info read from the buffer IEnumrable collection for display in app and then when buffer is full write out using this XML/SP or have a time value of buffer overflows into SP. You could set IEnumerable of 30 seconds of log info at all times and write out overflow when overflow buffer reachs certain size

link|improve this answer
Thanks for the suggestions. Please see my updated question post. Creating SPs for the Non-Queries doesn't seem to be helpful. – lester burnham Dec 7 '11 at 20:05
Well thats wierd... Query optimiser will work better on more complex qureies than the trivial inserts that you are doing ...With the SP you can load up Performance tuner and view its suggestions....Theree may be some other reason for the results you are getting – Justin Oehlmann Dec 7 '11 at 20:26
Thanks for the update. I haven't got a chance to test your #6 suggestion. I will let you know the outcome once I do. Again thanks for the share. – lester burnham Dec 9 '11 at 3:21
feedback

Your Answer

 
or
required, but never shown

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