Opened 14 years ago
Last modified 9 years ago
#8414 new defect
Cannot access Metrics link
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | TracMetrixPlugin |
Severity: | normal | Keywords: | |
Cc: | Bob Evans | Trac Release: | 0.12 |
Description
I installed TracMetrix on 0.12.1, when i installed it, i click the Metrics link and receive the following error
OperationalError: too many SQL variables Python Traceback Most recent call last: File "build/bdist.linux-i686/egg/trac/web/main.py", line 511, in _dispatch_request File "build/bdist.linux-i686/egg/trac/web/main.py", line 237, in dispatch File "build/bdist.linux-i686/egg/tracmetrixplugin/web_ui.py", line 181, in process_request File "build/bdist.linux-i686/egg/tracmetrixplugin/web_ui.py", line 221, in _render_view File "build/bdist.linux-i686/egg/tracmetrixplugin/model.py", line 46, in get_ticket_group_stats File "build/bdist.linux-i686/egg/trac/db/util.py", line 65, in execute File "build/bdist.linux-i686/egg/trac/db/sqlite_backend.py", line 78, in execute File "build/bdist.linux-i686/egg/trac/db/sqlite_backend.py", line 56, in execute File "build/bdist.linux-i686/egg/trac/db/sqlite_backend.py", line 48, in _rollback_on_error
Attachments (1)
Change History (11)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
I guess I can expand SQLLITE_LIMIT_VARIABLE_NUMBER which appears to default to 999, in my case it has returned 3037. I haven't stood up your add-on, but it appears this is not meant for such large scale trac projects
comment:3 Changed 14 years ago by
Cc: | Bob Evans added; anonymous removed |
---|
comment:4 Changed 14 years ago by
Any news on this bug, we also get this since we hit more that 1700 tickets or so. --thanks
Changed 13 years ago by
Attachment: | model.py.patch added |
---|
comment:6 Changed 13 years ago by
I attached a patch for the model.py. It worked for us with 1300+ tickets.
It is clearly not perfect since it "COUNT(*)" with an "ID =" witch is unique.
comment:7 Changed 12 years ago by
Priority: | highest → normal |
---|---|
Severity: | blocker → normal |
Status: | new → assigned |
The next checkin should fix the error. There are still some performance issues that need to be addressed. Please report back if it is working well for you now.
comment:8 Changed 12 years ago by
- Modified SQL queries after studying the
TicketQuery
macro in the Trac core. - Removed some unnecessary imports.
- Removed Python 2.4 from installation requirements, as this has been observed to cause problems for Trac plugin. Trac 0.11 requires Python 2.4 anyway, so the restriction is effectively in place for this plugin.
comment:9 Changed 11 years ago by
Status: | assigned → new |
---|
comment:10 Changed 9 years ago by
Owner: | Ryan J Ollos deleted |
---|
adding more info to the above statement this is the code fragment that fails in get_ticket_group_stats: