annotate website/issues/html/home.about.html @ 6433:c1d3fbcdbfbd

issue2551142 - Import of retired node ... unique constraint failure. Title: Import of retired node with username after active node fails with unique constraint failure. More fixes needed for mysql and postgresql. mysql: add unique constraint for (keyvalue, __retired__) when creating class in the database. On schema change if class is changed, remove the unique constraint too. upgrade version of rdbms database from 5 to 6 to add constraint to all version 5 databases that were created as version 5 and didn't get the unique constraint. Make no changes on version 5 databases upgraded from version 4, the upgrade process to 5 added the constraint. Make no changes to other databases (sqlite, postgres) during upgrade from version 5 to 6. postgres: Handle the exception raised on unique constraint violation. The exception invalidates the database connection so it can't be used to recover from the exception. Added two new database methods: checkpoint_data - performs a db.commit under postgres does nothing on other backends restore_connection_on_error - does a db.rollback on postgres, does nothing on other backends with the rollback() done on the connection I can use the database connection to fixup the import that failed on the unique constraint. This makes postgres slower but without the commit after every imported object, the rollback will delete all the entries done up to this point. Trying to figure out how to make the caller do_import batch and recover from this failure is beyond me. Also dismissed having to process the export csv file before importing. Pushing that onto a user just seems wrong. Also since import/export isn't frequently done the lack of surprise on having a failing import and reduced load/frustration for the user seems worth it. Also the import can be run in verbose mode where it prints out a row as it is processed, so it may take a while, ut the user can get feedback. db_test-base.py: add test for upgrade from 5 to 6.
author John Rouillard <rouilj@ieee.org>
date Thu, 10 Jun 2021 12:52:05 -0400
parents 4155ed7f00f4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6246
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
1 <!-- dollarId: issue.index,v 1.2 2001/07/29 04:07:37 richard Exp dollar-->
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
2
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
3 <tal:block metal:use-macro="templates/page/macros/icing">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
4
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
5 <title metal:fill-slot="head_title" i18n:translate="" >
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
6 About this Tracker
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
7 </title>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
8 <tal:block metal:fill-slot="body_title" i18n:translate="">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
9 About this Tracker
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
10 </tal:block>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
11
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
12 <div class="content" metal:fill-slot="content">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
13
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
14 <span tal:condition="not:python:request.user.hasRole('Admin')"
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
15 tal:omit-tag="python:1" i18n:translate="">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
16 Please login with your username and password to find out about
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
17 this tracker.
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
18 </span>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
19
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
20 <div tal:condition="python:request.user.hasRole('Admin')"
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
21 tal:omit-tag="python:1" i18n:translate="">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
22 <div tal:replace="structure python:utils.AboutPage(db)"></div>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
23 </div>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
24 </div>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
25
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
26 </tal:block>

Roundup Issue Tracker: http://roundup-tracker.org/