Performance Issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dodom2
    Senior Member
    • Jan 2020
    • 198

    Performance Issue

    We're having some performance issues in 5.8.5 where the system is slowing down. We see the auth log is part of this. Is there a way to delete records automatically after so many days ?
  • yuri
    Member
    • Mar 2014
    • 8806

    #2
    It's weird that auth log is slowing down. It shouldn't.

    You can set in data/config.php:

    PHP Code:
    'cleanupAuthLogPeriod' => '2 weeks'

    By default it's 2 months.


    Are there any queries logged as slow? Could you let me know which ones?
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • dodom2
      Senior Member
      • Jan 2020
      • 198

      #3
      We have several API's tied into espo and it appears to be generating a auth log record for each record it accesses. But here is the queries that its logging:

      SELECT COUNT(auth_log_record.id) AS AggregateValue FROM `auth_log_record` WHERE auth_log_record.request_time > '1588769563' AND auth_log_record.ip_address = '[[IP ADDRESS]]' AND auth_log_record.is_denied = '1' AND auth_log_record.deleted = '0';Type a message

      Comment

      • yuri
        Member
        • Mar 2014
        • 8806

        #4
        I will check it. Thanks.
        If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

        Comment

        • dodom2
          Senior Member
          • Jan 2020
          • 198

          #5
          Can we ignore the auth log by ip address somehow? Its creating over 10,000 records an hour.

          Comment

          • yuri
            Member
            • Mar 2014
            • 8806

            #6
            There's no ability to ignore it.

            What database system do you use? MySQL or MariaDB? I tested on MySQL 8 vs MariaDB 10.1, the former chose the proper index, the latter chose not optimal index, so it will work slower.
            If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

            Comment

            • yuri
              Member
              • Mar 2014
              • 8806

              #7
              This fix can improve performance: https://github.com/espocrm/espocrm/c...7c68837e8a7027
              If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

              Comment

              Working...