perf: 优化重构

pull/8023/head^2
ibuler 2022-07-13 16:36:49 +08:00
parent e89765a9ad
commit dac0b44b99
2 changed files with 48 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# Generated by Django 3.2.12 on 2022-07-11 06:13
import time
from django.db import migrations
@ -7,6 +8,49 @@ def migrate_accounts(apps, schema_editor):
auth_book_model = apps.get_model('assets', 'AuthBook')
account_model = apps.get_model('assets', 'Account')
count = 0
bulk_size = 1000
while True:
auth_books = auth_book_model.objects \
.prefetch_related('systemuser') \
.all()[count:count+bulk_size]
if not auth_books:
break
accounts = []
start = time.time()
# authbook 和 account 相同的属性
same_attrs = [
'id', 'comment', 'date_created', 'date_updated',
'created_by', 'asset_id', 'org_id',
]
# 认证的属性,可能是 authbook 的,可能是 systemuser 的
auth_attrs = ['username', 'password', 'private_key', 'public_key']
for auth_book in auth_books:
values = {attr: getattr(auth_book, attr) for attr in same_attrs}
values['protocol'] = 'ssh'
values['version'] = 1
system_user = auth_book.systemuser
if auth_book.systemuser:
values.update({attr: getattr(system_user, attr) for attr in auth_attrs})
values['protocol'] = system_user.protocol
values['created_by'] = str(system_user.id)
auth_book_auth = {attr: getattr(auth_book, attr) for attr in auth_attrs}
auth_book_auth = {attr: value for attr, value in auth_book_auth.items() if value}
values.update(auth_book_auth)
account = account_model(**values)
accounts.append(account)
account_model.objects.bulk_create(accounts, ignore_conflicts=True)
print("Create accounts: {}-{} using: {:.2f}s".format(
count, count + len(accounts), time.time()-start
))
count += len(auth_books)
class Migration(migrations.Migration):
@ -15,4 +59,5 @@ class Migration(migrations.Migration):
]
operations = [
migrations.RunPython(migrate_accounts)
]

View File

@ -25,3 +25,6 @@ class Account(BaseUser, ProtocolMixin):
('view_assethistoryaccount', _('Can view asset history account')),
('view_assethistoryaccountsecret', _('Can view asset history account secret')),
]
def __str__(self):
return '{}//{}@{}'.format(self.protocol, self.username, self.asset.hostname)