From 7b63e80dd9b329df7d07f0742d3b734b777336cc Mon Sep 17 00:00:00 2001 From: "https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4" Date: Mon, 25 Jan 2016 20:23:23 +0000 Subject: Added a comment --- .../comment_5_fee83d2df645740841d6662cf543878b._comment | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__/comment_5_fee83d2df645740841d6662cf543878b._comment diff --git a/doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__/comment_5_fee83d2df645740841d6662cf543878b._comment b/doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__/comment_5_fee83d2df645740841d6662cf543878b._comment new file mode 100644 index 000000000..45051c20c --- /dev/null +++ b/doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__/comment_5_fee83d2df645740841d6662cf543878b._comment @@ -0,0 +1,7 @@ +[[!comment format=mdwn + username="https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4" + subject="comment 5" + date="2016-01-25T20:23:22Z" + content=""" +Sounds like reasonably fast to me. Let me try adopting it, and then if it would become a bottleneck I would whine ;) +"""]] -- cgit v1.2.3 From 73fd13c403d590dbe8063355477d237f5bb4434b Mon Sep 17 00:00:00 2001 From: "hello@8ec3aeb95041eb24da1d74b9a59964a3e3519fb5" Date: Mon, 25 Jan 2016 20:25:16 +0000 Subject: Add bug report --- doc/bugs/Unable_to_parallel_fsck.mdwn | 81 +++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 doc/bugs/Unable_to_parallel_fsck.mdwn diff --git a/doc/bugs/Unable_to_parallel_fsck.mdwn b/doc/bugs/Unable_to_parallel_fsck.mdwn new file mode 100644 index 000000000..df7286b20 --- /dev/null +++ b/doc/bugs/Unable_to_parallel_fsck.mdwn @@ -0,0 +1,81 @@ +### Please describe the problem. + +If I run git annex fsck with the parallel jobs switch (e.g. -J2) it fails when it encounters files with non-ASCII filenames. It works fine without +this switch. + + +### What steps will reproduce the problem? + +Make a git annex repository with non-ascii filenames, add the files, and then run fsck with the parallel switch. A script to do this +is included below. + + +### What version of git-annex are you using? On what operating system? + +Arch Linux (64bit) + +git-annex version: 6.20160114-g297a744 +build flags: Assistant Webapp Webapp-secure Pairing Testsuite S3(multipartupload) WebDAV Inotify DBus DesktopNotify XMPP ConcurrentOutput DNS Feeds Quvi TDFA TorrentParser +key/value backends: SHA256E SHA256 SHA512E SHA512 SHA224E SHA224 SHA384E SHA384 SHA3_256E SHA3_256 SHA3_512E SHA3_512 SHA3_224E SHA3_224 SHA3_384E SHA3_384 SKEIN256E SKEIN256 SKEIN512E SKEIN512 SHA1E SHA1 MD5E MD5 WORM URL +remote types: git gcrypt S3 bup directory rsync web bittorrent webdav tahoe glacier ddar hook external +local repository version: 5 +supported repository versions: 5 6 +upgrade supported from repository versions: 0 1 2 4 5 + +### Please provide any additional information below. + +[[!format sh """ +#!/bin/bash +set -o errexit -o nounset + +mkdir testing-repo +cd testing-repo +git init +git annex init testing-repo + +make_fake_file() { + local filename="$1" + mkdir -p "$(dirname "$filename")" + echo "hello world" > "$filename" + git annex add "$filename" +} + +export -f make_fake_file +parallel -j1 'make_fake_file {}' <: commitAndReleaseBuffer: invalid argument (invalid character) +FAIL 1 +"""]] + +(The FAIL 1 output is just my terminal printing that the exit code was 1) + +### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders) + +Plenty. In fact I've been using it for a long time - I just only recently tried to use -J2 to speed up the fsck'ing :) + -- cgit v1.2.3