From 4515eb2a58398077d44ff6fedfcf69e2610e57b6 Mon Sep 17 00:00:00 2001 From: CandyAngel Date: Thu, 4 Nov 2021 16:04:07 +0000 Subject: [PATCH 1/2] Added a comment --- .../comment_10_3fac08b817ca3dbfcac3a03ce521464e._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/tips/Repositories_with_large_number_of_files/comment_10_3fac08b817ca3dbfcac3a03ce521464e._comment diff --git a/doc/tips/Repositories_with_large_number_of_files/comment_10_3fac08b817ca3dbfcac3a03ce521464e._comment b/doc/tips/Repositories_with_large_number_of_files/comment_10_3fac08b817ca3dbfcac3a03ce521464e._comment new file mode 100644 index 0000000000..249af5ad38 --- /dev/null +++ b/doc/tips/Repositories_with_large_number_of_files/comment_10_3fac08b817ca3dbfcac3a03ce521464e._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="CandyAngel" + avatar="http://cdn.libravatar.org/avatar/15c0aade8bec5bf004f939dd73cf9ed8" + subject="comment 10" + date="2021-11-04T16:04:06Z" + content=""" +@pat: Sorry, I don't have such performance information for git-annex as I stopped using it ~2 years ago. +"""]] From 06f7ad20455e8030a60e986ca74dd71789c1a89f Mon Sep 17 00:00:00 2001 From: CandyAngel Date: Thu, 4 Nov 2021 16:06:17 +0000 Subject: [PATCH 2/2] removed --- doc/users/candyangel.mdwn | 66 --------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 doc/users/candyangel.mdwn diff --git a/doc/users/candyangel.mdwn b/doc/users/candyangel.mdwn deleted file mode 100644 index e40b7a693a..0000000000 --- a/doc/users/candyangel.mdwn +++ /dev/null @@ -1,66 +0,0 @@ -I hang out in #git-annex on OFTC (come and chat/ask for help). - -[Getting mentioned by Joey](http://git-annex.branchable.com/devblog/day_277__thanks/) is definitely a (if not **the**) highlight of my involvement in the git-annex community. That really made my month! - -Things that I am (or plan to) work on related to git-annex (in some way): - -* FUSE filesystem for dynamic get/drop of content -* FUSE filesystem for metadata change/views (like tagsistant) -* Patchset for ikiwiki which allows it to be used with perlbrew libs -* Support for modifying git-annex metadata in my file sorting app -* Support for git-annex in my VR environment - -# sorting annex - -## diagram - - +------+ - | | clone - | base ------------+---------------------------+ - | | | | - +----|-+ | | - clone +------|-----+ +------|-----+ - | | | | | - | | hd1-serial | < populate > | hd3-serial | - | | | | | - | +------|-----+ +------|-----+ - | | | - | clone clone - | | | - | +------|-----+ +------|-----+ - | | | | | - | | hd2-serial | < get > | hd4-serial | - | | | | | - | +------|-----+ +------|-----+ - | | | - +------|------+ | | - | | | | - | collate.git -------+---------------------------+ - | |remote add > - +------|------+ - | - clone - | - +----|----+ - | | - | sorting | - | | - +---------+ - -## explanation - -* *base* created and a mkannex.sh script is added to it which inits a git-annex repository with the desired settings -* *base* is cloned to an empty drive as the "type" of files to be added (hd1, hd3) - * types are file, filelink, keyfile and keylink - * e.g. `git clone ${base_uri} keyfile` -* mkannex.sh is run and repository is named ${drive_serial}_${type} -* annex is populated with contents of $type, in directories created with `uuidgen -r` to prevent collision -* populated repository (hd1, hd3) is cloned to another drive (hd2, hd4) -* mkannex.sh is run and repository is named ${drive_serial}_${type} -* contents are `git annex get`'d from the populated drives - -* *collate.git* cloned from *base* and mkannex.sh run, named "collate" -* remotes added to collate.git for secondary drives (hd2, hd4) -* *collate.git* syncs metadata, learning of all repositories and their contents -* *sorting* is cloned from *collate.git* to do sorting activities - * read-only remotes added for the content drives as required