Edgewall Software

Changes between Initial Version and Version 5 of Ticket #8468


Ignore:
Timestamp:
Aug 23, 2009, 9:55:31 AM (15 years ago)
Author:
Christian Boos
Comment:

Replying to osimons:

I'm poking into this as part of bitten:ticket:269,

Thanks for testing! I added some comments to that ticket as well.

Add two tabs with Timeline, and things starting to lock up consistently.

Yes, the timeline pages seem to be good triggers, if you have lots of events. What is especially a performance killer is the [timeline] changeset_show_files = location setting, due to the get_changes() done for each changeset (#6654 will help).

But I also need some pages modifying the session to the mix, otherwise it's no problem for me.

So, either there is something fundamentally wrong with the Timeline, or the Timeline shows a symptom of something holding on to the db that then shows up when Timeline needs to save.

The timeline queries probably hold a read lock for far too long , yes. We could "fix" that at the level of each timeline provider, or globally (i.e. what #3446 is about). I'd prefer globally, because:

  • the iteration/yield might still be a superior solution for DB backends with better concurrency
  • all the providers would be "fixed" at once; leaving one provider in one plugin do the wrong thing and you have essentially no benefit from fixing the others
  • we could have a [trac] trade_memory_for_speed setting which could be used to make this feature optional

That said, i don't understand why the session should try to save when nothing has changed in my session data for a simple reload? Is something flawed with Session? I haven't looked at the session code for a long time, but really we should store the _old_data on the session too and just check the object to see if it has been updated - without hitting the database.

This is what should happen. But if you have timeline pages with different sets of providers or different daysback values, then you'll get session modifications.

The problem of templates not being able to store session data is fine by me - nothing in templates should have a need for persistence in my opinion.

/me really wanted to reschedule for 0.11.6, and tried hard to leave it alone for now… (patch more or less identical)

If no one has a concern about this change of behavior (which might impact Macros for example), then I'd be OK with that.

On a related note, I've been pondering whether to do all the remaining DB layer fixes on 0.11.6 first or on trunk first (and then eventually backport). What do you think?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8468

    • Property Status newassigned
    • Property Severity normalmajor
    • Property Priority normalhigh
    • Property Owner set to Christian Boos
    • Property Milestone0.12
    • Property Keywords database lock added
  • Ticket #8468 – Description

    initial v5  
    1 ==== How to Reproduce ====
     1A lot of '''`OperationalError: database is locked`''' errors happen during saving of the session changes, after the request is processed and before the output is sent.
    22
    3 While doing a GET operation on `/agilo-backlog`, Trac issued an internal error.
    4 
    5 ''(please provide additional details here)''
    6 
    7 
    8 Request parameters:
    9 {{{
    10 {'scope': u'Sprint 2', 'name': u'Sprint Backlog', 'view': u'View'}
    11 }}}
    12 
    13 
    14 #### System Information ####
    15 
    16 || '''Trac''' || `0.11.3` ||
    17 || '''Python''' || `2.4.4 ##1, Oct 22 2008, 19:49:52# ` [[br]] `[GCC 4.1.2 20061115 #prerelease# #Debian 4.1.1-21#]` ||
    18 || '''setuptools''' || `0.6c3` ||
    19 || '''SQLite''' || `3.3.8` ||
    20 || '''pysqlite''' || `2.3.2` ||
    21 || '''Genshi''' || `0.5.1` ||
    22 || '''mod_python''' || `3.2.10` ||
    23 || '''Agilo''' || `0.7.4.1-r1624-20090611` ||
    24 
    25 #### Python Traceback ####
     3Typical traceback:
    264{{{
    275Traceback #most recent call last#:
     
    4220}}}
    4321   
     22We should do better here than raising an internal error in this case, see comment:2.