summaryrefslogtreecommitdiff
path: root/doc/bugs/enormous_fsck_output_OOM.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:46:11 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:55:29 -0400
commitdbfc00e2a6ad99200da35f75f889174cd7bfd195 (patch)
tree9d8a9d1353ab10376183c1bda881fface04b6fcb /doc/bugs/enormous_fsck_output_OOM.mdwn
parent41b7950285ef1e91b80c441c2be68a1ef4d0d27c (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before Q3 2015. Command line used: for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done
Diffstat (limited to 'doc/bugs/enormous_fsck_output_OOM.mdwn')
-rw-r--r--doc/bugs/enormous_fsck_output_OOM.mdwn30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/bugs/enormous_fsck_output_OOM.mdwn b/doc/bugs/enormous_fsck_output_OOM.mdwn
deleted file mode 100644
index b06655354..000000000
--- a/doc/bugs/enormous_fsck_output_OOM.mdwn
+++ /dev/null
@@ -1,30 +0,0 @@
-Hi,
-
-My Webapp isn't working:
-
- $ git-annex webapp error: refs/gcrypt/gitception+ does not point to a valid object!
- error: refs/remotes/Beta/git-annex does not point to a valid object!
- error: refs/remotes/Beta/master does not point to a valid object!
- fatal: unable to read tree 656e7db5be172f01c0b6994d01f1a08d1273af12
-
-So I tried to repair it:
-
- $ git-annex repair Running git fsck ...
- Stack space overflow: current size 8388608 bytes. Use `+RTS -Ksize -RTS' to increase it.
-
-So I tried to follow your advice here and increase the stack:
-
- $ git-annex +RTS -K35000000 -RTS fsck
- git-annex: Most RTS options are disabled. Link with -rtsopts to enable them.
-
-I wasn't sure what to do next, so any help would be appreciated.
-
-> Now only 20k problem shas max (more likely 10k) are collected from fsck,
-> so it won't use much memory (60 mb or so). If it had to truncate
-> shas from fsck, it will re-run fsck after the repair process,
-> which should either find no problems left (common when eg when all missing shas
-> were able to be fetched from remotes), or find a new set of problem
-> shas, which it can feed back through the repair process.
->
-> If the repository is very large, this means more work, but it shouldn't
-> run out of memory now. [[fixed|done]] --[[Joey]]