Skip to content

Instantly share code, notes, and snippets.

@awead
Created April 11, 2015 19:55
Show Gist options
  • Save awead/20b7f6634aa677e2994a to your computer and use it in GitHub Desktop.
Save awead/20b7f6634aa677e2994a to your computer and use it in GitHub Desktop.
Staging versus Production
Here's a sample of the data transfered from Fedora 3 to Fedora 4. The staging set represents week-old production data, with batches, the prod. example is the most up-to-date production Fedora 3 data but without empty batches:
SSstagingRails:
select count(id), f3_model from migrate_audits group by f3_model
+-----------+---------------------------------+
| count(id) | f3_model |
+-----------+---------------------------------+
| 2072 | info:fedora/afmodel:Batch |
| 101 | info:fedora/afmodel:Collection |
| 3972 | info:fedora/afmodel:GenericFile |
+-----------+---------------------------------+
SSprodRails:
select count(id), f3_model from migrate_audits group by f3_model
+-----------+---------------------------------+
| count(id) | f3_model |
+-----------+---------------------------------+
| 1577 | info:fedora/afmodel:Batch |
| 102 | info:fedora/afmodel:Collection |
| 3986 | info:fedora/afmodel:GenericFile |
+-----------+---------------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment