summaryrefslogtreecommitdiff
path: root/doc/bugs/Cannot_clone_an_annex.mdwn
diff options
context:
space:
mode:
authorGravatar https://me.yahoo.com/a/2grhJvAC049fJnvALDXek.6MRZMTlg--#eec89 <John@web>2012-10-22 02:07:02 +0000
committerGravatar admin <admin@branchable.com>2012-10-22 02:07:02 +0000
commit6ef755dfa71fb2f8764a0e81abd9b6dc3f087b12 (patch)
treeb62fc32349726c1d50c0ea74e1f786e9532167bf /doc/bugs/Cannot_clone_an_annex.mdwn
parentccc24a3b386c7cee84a5bed60911a1abd7e81d0a (diff)
Diffstat (limited to 'doc/bugs/Cannot_clone_an_annex.mdwn')
-rw-r--r--doc/bugs/Cannot_clone_an_annex.mdwn67
1 files changed, 67 insertions, 0 deletions
diff --git a/doc/bugs/Cannot_clone_an_annex.mdwn b/doc/bugs/Cannot_clone_an_annex.mdwn
new file mode 100644
index 000000000..62e9ed27f
--- /dev/null
+++ b/doc/bugs/Cannot_clone_an_annex.mdwn
@@ -0,0 +1,67 @@
+I have an annex that I use to store my digital photos. I had a few false
+starts creating this annex, but now it's looking good on my server:
+
+ root@titan.local:/tank/Media/Pictures# git annex status
+ supported backends: SHA256E SHA1E SHA512E SHA224E SHA384E SHA256 SHA1 SHA512 SHA224 SHA384 WORM URL
+ supported remote types: git S3 bup directory rsync web hook
+ trusted repositories: 0
+ semitrusted repositories: 2
+ 00000000-0000-0000-0000-000000000001 -- web
+ be88bc5a-17e2-11e2-a99b-d388d4437350 -- here (titan)
+ untrusted repositories: 0
+ dead repositories: 5
+ 0A9F3136-A12A-43C7-9BE2-33F59954FD52 -- vulcan
+ 57349F02-E497-4420-9230-6B15D8AB14EE -- vulcan
+ 6195C912-2707-4B75-AC8C-11C51FAA8FE0 -- vulcan
+ D51DEDC4-9255-4A99-8520-2B1CED337674 -- hermes
+ EE327B34-3E20-4B5B-8F0E-D500CBC9738D -- hermes
+ transfers in progress: none
+ available local disk space: unknown
+ local annex keys: 20064
+ local annex size: 217 gigabytes
+ known annex keys: 21496
+ known annex size: 217 gigabytes
+ bloom filter size: 16 mebibytes (4% full)
+ backend usage:
+ SHA256E: 41560
+ root@titan.local:/tank/Media/Pictures# git annex unused
+ unused . (checking for unused data...) ok
+
+It passes `git annex fsck` without any problems. However, when I "git clone"
+this annex to my desktop machine and then do a `git annex sync`, I see this:
+
+ Vulcan /Volumes/tank/Media/Pictures (master) $ git annex status
+ supported backends: SHA256E SHA1E SHA512E SHA224E SHA384E SHA256 SHA1 SHA512 SHA224 SHA384 WORM URL
+ supported remote types: git S3 bup directory rsync web hook
+ trusted repositories: 0
+ semitrusted repositories: 5
+ 00000000-0000-0000-0000-000000000001 -- web
+ 0A9F3136-A12A-43C7-9BE2-33F59954FD52 -- vulcan
+ 274D3474-7A25-44CD-8368-CF11C451014F -- here (vulcan)
+ EE327B34-3E20-4B5B-8F0E-D500CBC9738D -- hermes
+ be88bc5a-17e2-11e2-a99b-d388d4437350 -- titan
+ untrusted repositories: 0
+ dead repositories: 3
+ 57349F02-E497-4420-9230-6B15D8AB14EE -- vulcan
+ 6195C912-2707-4B75-AC8C-11C51FAA8FE0 -- vulcan
+ D51DEDC4-9255-4A99-8520-2B1CED337674 -- hermes
+ transfers in progress: none
+ available local disk space: 1 terabyte (+1 megabyte reserved)
+ local annex keys: 0
+ local annex size: 0 bytes
+ known annex keys: 21025
+ known annex size: 217 gigabytes
+ bloom filter size: 16 mebibytes (0% full)
+ backend usage:
+ SHA256: 18707
+ SHA256E: 2318
+
+Where did all these `SHA256` keys come from?
+
+Why doesn't the known annex keys size match?
+
+Further, I cannot `git annex get` on most of the files, because it says that
+the `SHA256` key is not present.
+
+It looks like I'll have to rollback my ZFS snapshots and start over, but I'm
+wondering: how was I even able to create this situation?