You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/assets/migrations/0093_auto_20220403_1627.py

61 lines
1.7 KiB

# Generated by Django 3.1.14 on 2022-04-02 08:27
from django.utils import timezone
3 years ago
from django.db import migrations, models
def migrate_to_host(apps, schema_editor):
asset_model = apps.get_model("assets", "Asset")
host_model = apps.get_model("assets", 'Host')
db_alias = schema_editor.connection.alias
count = 0
batch_size = 1000
while True:
assets = asset_model.objects.using(db_alias).all()[count:count+batch_size]
if not assets:
break
count += len(assets)
hosts = [host_model(asset_ptr=asset) for asset in assets]
host_model.objects.using(db_alias).bulk_create(hosts, ignore_conflicts=True)
def migrate_hardware_info(apps, *args):
2 years ago
asset_model = apps.get_model("assets", "Asset")
count = 0
2 years ago
batch_size = 1000
hardware_fields = [
'vendor', 'model', 'sn', 'cpu_model', 'cpu_count', 'cpu_cores',
'cpu_vcpus', 'memory', 'disk_total', 'disk_info', 'os', 'os_arch',
'os_version', 'hostname_raw', 'number'
]
2 years ago
while True:
assets = asset_model.objects.all()[count:count+batch_size]
2 years ago
if not assets:
break
count += len(assets)
2 years ago
updated = []
for asset in assets:
info = {field: getattr(asset, field) for field in hardware_fields if getattr(asset, field)}
if not info:
continue
asset.info = info
updated.append(asset)
asset_model.objects.bulk_update(updated, ['info'])
2 years ago
class Migration(migrations.Migration):
dependencies = [
2 years ago
('assets', '0092_add_host'),
]
operations = [
migrations.RunPython(migrate_hardware_info),
2 years ago
migrations.RunPython(migrate_to_host),
]