Skip to content
Snippets Groups Projects
This project is mirrored from https://:*****@github.com/Ensembl/ensembl-hive.git. Pull mirroring updated .
  1. Jun 13, 2005
  2. May 26, 2005
  3. Apr 18, 2005
  4. Mar 22, 2005
  5. Mar 11, 2005
  6. Mar 08, 2005
  7. Mar 04, 2005
  8. Mar 03, 2005
  9. Mar 02, 2005
  10. Feb 23, 2005
  11. Feb 22, 2005
  12. Feb 21, 2005
    • Jessica Severin's avatar
      YAHRF (Yet Another Hive ReFactor).....chapter 1 · 7675c31c
      Jessica Severin authored
      needed to better manage the hive system's load on the database housing all
      the hive related tables (in case the database is overloaded by multiple users).
      Added analysis_stats.sync_lock column (and correspondly in Object and Adaptor)
      Added Queen::safe_synchronize_AnalysisStats method which wraps over the
        synchronize_AnalysisStats method and does various checks and locks to ensure
        that only one worker is trying to do a 'synchronize' on a given analysis at
        any given moment.
      Cleaned up API between Queen/Worker so that worker only talks directly to the
        Queen, rather than getting the underlying database adaptor.
      Added analysis_job columns runtime_msec, query_count to provide more data on
        how the jobs hammer a database (queries/sec).
      7675c31c
  13. Feb 17, 2005
  14. Feb 16, 2005
    • Jessica Severin's avatar
      improved dynamic synch logic. Only case where the 5 minute delay is needed · da413295
      Jessica Severin authored
      is when there are lots of workers 'WORKING' so as to avoid them falling over
      each other.  The 'WORKING' state only exists in the middle of a large run.
      When the last worker dies, the state is 'ALL_CLAIMED' so the sync on death
      will happen properly.  As the last pile of workers die they will all do
      a synch, but that's OK since the system needs to be properly synched when
      the last one dies since there won't be anybody left to do it.
      Also added 10 minute check for if already 'SYNCHING' to deal with case if
      worker dies in the middle of 'SYNCHING'.
      da413295