Djangoデータ移行

5836 ワード

需要:Sqlite 3からMySQLにデータを移行します.
dumpdata後loaddataで済んだと思っていたのに、too simple発見!
Djangoデータインポートの結論:
運が良ければ導入が完了するかもしれませんが、うまくいかないことが多いのは、次の理由です.
a)私たちはモデルを書くときにCharFieldを使うなら、必ずmax_を書きます.length、sqlite 3ではこの最大長さをチェックしないで、最大許容長さは100と書いて、あなたはデータベースに10000個を置いて、sqlite 3はすべて間違いを報告しないで、その上データの長さを遮断しないで、これはslite 3の長所のようで、しかしsqlite 3から他のデータベースを導入することにも困難をもたらして、MySQLとPostgreSQLデータベースはすべて最大長さを検査して、超えた時に間違いを報告します!
b)Djangoが持っているcontentTypeはいくつかの問題を引き起こす
上記の方法で1つのappだけを移行するのは問題ないはずですが、ユーザーがいれば、ユーザーグループがフックすると、状況が悪くなりがちです.インポート後にデータが変更されていない場合は、再インポートを検討することができます.また、手動でバックグラウンドに入力したり、変更したりした場合は、この方法は適用されません.
問題:
結果python manage.py dumpdata -> data.jsonから導出されたデータは、python manage.py loaddata data.json後にエラーを報告した.
Traceback (most recent call last):
  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\db\backends\
utils.py", line 65, in execute
    return self.cursor.execute(sql, params)
  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\db\backends\
sqlite3\base.py", line 328, in execute
    return Database.Cursor.execute(self, query, params)

sqlite3.IntegrityError: UNIQUE constraint failed: django_content_type.app_label,
 django_content_type.model

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "manage.py", line 22, in 
    execute_from_command_line(sys.argv)
  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\core\managem
ent\__init__.py", line 363, in execute_from_command_line
    utility.execute()

  ......

  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\db\backends\
sqlite3\base.py", line 328, in execute
    return Database.Cursor.execute(self, query, params)

django.db.utils.IntegrityError: Problem installing fixture 'E:\workSpace\python\
horoscope_web\data.json': Could not load contenttypes.ContentType(pk=24): UNIQUE
 constraint failed: django_content_type.app_label, django_content_type.model

Google後、投稿Django fixture dumpdata、loaddata and Integraty Errorがエクスポートを提案するときにオプションを追加します.
python manage.py dumpdata --exclude=contenttypes --exclude=auth.Permission > initial_data.json

再インポート時のプロンプト:
  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\db\backends\
utils.py", line 65, in execute
    return self.cursor.execute(sql, params)

sqlite3.IntegrityError: UNIQUE constraint failed: auth_user.username

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "manage.py", line 22, in 
    execute_from_command_line(sys.argv)
  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\core\managem
ent\__init__.py", line 363, in execute_from_command_line
    utility.execute()

  ......

  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\db\backends\
sqlite3\base.py", line 328, in execute
    return Database.Cursor.execute(self, query, params)

django.db.utils.IntegrityError: Problem installing fixture 'E:\workSpace\python\
horoscope_web\initial_data.json': Could not load auth.User(pk=4): UNIQUE constra
int failed: auth_user.username
"model": "auth.user"を削除してから再度loaddata、ヒント:
Traceback (most recent call last):
  File "manage.py", line 22, in 
    execute_from_command_line(sys.argv)
  File "D:\Program Files\Python\Python35.3\lib\site-packages\django\core\managem
ent\__init__.py", line 363, in execute_from_command_line
    utility.execute()
  
  ......

    bad_row[1], referenced_table_name, referenced_column_name,
django.db.utils.IntegrityError: Problem installing fixtures: The row in table 'd
jango_admin_log' with primary key '3' has an invalid foreign key: django_admin_log.content_type_id contains a value '30' that does not have a corresponding value in django_content_type.id.
django_admin_logテーブルには、プライマリ・キーが3のレコードが見つかりません.jsonの"model": "admin.logentry"のデータを削除した後、再試行してインポートに成功しました.
記録例:
{
    "model": "admin.logentry",
    "pk": 3,
    "fields": {
      "action_time": "2017-06-19T03:05:25.793Z",
      "user": 4,
      "content_type": 30,
      "object_id": "1",
      "object_repr": "Andrew-   ",
      "action_flag": 2,
      "change_message": "[]"
    }
  },
  {
    "model": "admin.logentry",
    "pk": 4,
    "fields": {
      "action_time": "2017-06-19T03:05:43.471Z",
      "user": 4,
      "content_type": 30,
      "object_id": "1",
      "object_repr": "Andrew-   ",
      "action_flag": 2,
      "change_message": "[{\"changed\": {\"fields\": [\"fortunes_keyword\"]}}]"
    }
  }

jsonデータ( "model": "admin.logentry" )を手動で変更したくない場合は、アプリケーション別エクスポート/インポートを使用します.
エクスポートappデータpython manage.py dumpdata {appname}>インポートappデータpython manage.py loaddata {appname}>これにより、アプリケーションデータのみがインポートされ、異常なエラーが発生しやすく、正常に動作しない共通データ(user、authなど)がインポートされないようにします.
ユーザーデータのエクスポート:
python manage.py dumpdata auth > auth.json #       

複数のデータベース・ルーティングの例
dumpdata公式ドキュメント
Databases公式ドキュメント
The contenttype framework公式ドキュメント
Django fixture dumpdata, loaddata and Integrity Error
Migrating Django projects with fixtures
Django構造の移行