summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2015-07-29 21:48:57 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2015-07-29 21:48:57 +0200
commit9d21e4ad69189a39bacef8ed7e2a32093dcb0398 (patch)
treef17f4e5281628821df8d1dd4eaa438dffb63e096 /docs
parent1e097bfd6b9904954be2f739cbb67ac478df4ce5 (diff)
docs: add some words about resource usage (fixed wording)
Diffstat (limited to 'docs')
-rw-r--r--docs/usage.rst14
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/usage.rst b/docs/usage.rst
index d80d5a5e2..fcbee5fef 100644
--- a/docs/usage.rst
+++ b/docs/usage.rst
@@ -77,12 +77,12 @@ Resource Usage
CPU: it won't go beyond 100% of 1 core as the code is currently single-threaded.
-Memory (RAM): the chunks index and files index is read into memory for performance reasons.
+Memory (RAM): the chunks index and the files index are read into memory for performance reasons.
Temporary files: reading data and metadata from a FUSE mounted repository will consume about the same space as the
deduplicated chunks used to represent them in the repository.
-Cache files: chunks index and files index (plus a collection of single-archive chunk indexes).
+Cache files: chunks index and files index (plus a compressed collection of single-archive chunk indexes).
Chunks index: proportional to the amount of data chunks in your repo. lots of small chunks in your repo implies a big
chunks index. you may need to tweak the chunker params (see create options) if you have a lot of data and
@@ -91,10 +91,12 @@ Chunks index: proportional to the amount of data chunks in your repo. lots of sm
Files index: proportional to the amount of files in your last backup. can be switched off (see create options), but
next backup will be much slower if you do.
-Network: if your repository is remote, all deduplicated (and optionally compressed/encrypted) of course have to go over
- the connection (ssh: repo url). if you use a locally mounted network filesystem, additional some copy
- operations used for transaction support go over the connection additionally. if you backup multiple sources to
- one target repository, additional traffic happens for cache resynchronization.
+Network: if your repository is remote, all deduplicated (and optionally compressed/encrypted) data of course has to go
+ over the connection (ssh: repo url). if you use a locally mounted network filesystem, additionally some copy
+ operations used for transaction support also go over the connection. if you backup multiple sources to one
+ target repository, additional traffic happens for cache resynchronization.
+
+In case you are interested in more details, please read the internals documentation.
.. include:: usage/init.rst.inc