Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/04/11 11:20:22 (13 years ago)
Author:
ascheibe
Message:

#1233

  • disable logging of the user statistics on the server because of high run time demands
  • also show in the slave UI the timestamps of arrived messages
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/Manager/EventManager.cs

    r6743 r6946  
    6767      }
    6868      stats.SlaveStatistics = slaveStats;
    69       stats.UserStatistics = dao.GetUserStatistics();
     69      //collecting user statistics slows down the db and results in timeouts.
     70      //we have to find another way to deal with this. 
     71      //until then the next line is commented out...
     72      //stats.UserStatistics = dao.GetUserStatistics();
    7073      dao.AddStatistics(stats);
    7174    }
Note: See TracChangeset for help on using the changeset viewer.