{% extends "base.html" %} {% block title %}Migrations — nanio-orchestrator{% endblock %} {% block content %}
Use this form to move a bucket that is already routed to a dedicated pool from that pool to another. The source pool must be the pool that currently serves the bucket in nginx. If the bucket is not yet routed, use the Buckets page to route it first.
| ID | Bucket | Source → Dest | Mode | Phase | Progress | Started | Finished | Actions |
|---|---|---|---|---|---|---|---|---|
| #{{ m.id }} | {{ m.bucket }} |
{{ m.src_pool_name or m.src_pool_id }} → {{ m.dst_pool_name or m.dst_pool_id }} | {{ m.mode or 'copy' }} |
{% if m.phase == 'done' %} {{ m.phase }} {% elif m.phase == 'error' %} {{ m.phase }} {% elif m.phase == 'cancelled' %} {{ m.phase }} {% else %} {{ m.phase }} {% endif %} | {% if m.objects_done or m.objects_total %} {{ m.objects_done }}/{{ m.objects_total }} objects {% else %} — {% endif %} | {{ m.started_at or '—' }} | {{ m.finished_at or '—' }} | {% if m.phase not in ('done', 'error', 'cancelled') %} {% endif %} |
No migrations yet
{% endif %} {% endblock %}