Created
April 11, 2015 19:55
-
-
Save awead/20b7f6634aa677e2994a to your computer and use it in GitHub Desktop.
Staging versus Production
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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