1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

docs: bees can stop now

Remove the paragraph stating otherwise.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell 2018-12-10 19:54:20 -05:00
parent 5f063dd752
commit 843f78c380
3 changed files with 2 additions and 9 deletions

View File

@ -15,7 +15,7 @@ Strengths
--------- ---------
* Space-efficient hash table and matching algorithms - can use as little as 1 GB hash table per 10 TB unique data (0.1GB/TB) * Space-efficient hash table and matching algorithms - can use as little as 1 GB hash table per 10 TB unique data (0.1GB/TB)
* Incremental realtime dedupe of new data using btrfs tree search * Daemon incrementally dedupes new data using btrfs tree search
* Works with btrfs compression - dedupe any combination of compressed and uncompressed files * Works with btrfs compression - dedupe any combination of compressed and uncompressed files
* **NEW** [Works around `btrfs send` problems with dedupe and incremental parent shapshots](docs/options.md) * **NEW** [Works around `btrfs send` problems with dedupe and incremental parent shapshots](docs/options.md)
* Works around btrfs filesystem structure to free more disk space * Works around btrfs filesystem structure to free more disk space
@ -29,7 +29,6 @@ Weaknesses
---------- ----------
* Whole-filesystem dedupe - has no include/exclude filters, does not accept file lists * Whole-filesystem dedupe - has no include/exclude filters, does not accept file lists
* Runs continuously as a daemon - no quick start/stop
* Requires root privilege (or `CAP_SYS_ADMIN`) * Requires root privilege (or `CAP_SYS_ADMIN`)
* First run may require temporary disk space for extent reorganization * First run may require temporary disk space for extent reorganization
* [First run may increase metadata space usage if many snapshots exist](docs/gotchas.md) * [First run may increase metadata space usage if many snapshots exist](docs/gotchas.md)

View File

@ -15,7 +15,7 @@ Strengths
--------- ---------
* Space-efficient hash table and matching algorithms - can use as little as 1 GB hash table per 10 TB unique data (0.1GB/TB) * Space-efficient hash table and matching algorithms - can use as little as 1 GB hash table per 10 TB unique data (0.1GB/TB)
* Incremental realtime dedupe of new data using btrfs tree search * Daemon incrementally dedupes new data using btrfs tree search
* Works with btrfs compression - dedupe any combination of compressed and uncompressed files * Works with btrfs compression - dedupe any combination of compressed and uncompressed files
* **NEW** [Works around `btrfs send` problems with dedupe and incremental parent shapshots](options.md) * **NEW** [Works around `btrfs send` problems with dedupe and incremental parent shapshots](options.md)
* Works around btrfs filesystem structure to free more disk space * Works around btrfs filesystem structure to free more disk space
@ -29,7 +29,6 @@ Weaknesses
---------- ----------
* Whole-filesystem dedupe - has no include/exclude filters, does not accept file lists * Whole-filesystem dedupe - has no include/exclude filters, does not accept file lists
* Runs continuously as a daemon - no quick start/stop
* Requires root privilege (or `CAP_SYS_ADMIN`) * Requires root privilege (or `CAP_SYS_ADMIN`)
* First run may require temporary disk space for extent reorganization * First run may require temporary disk space for extent reorganization
* [First run may increase metadata space usage if many snapshots exist](gotchas.md) * [First run may increase metadata space usage if many snapshots exist](gotchas.md)

View File

@ -6,11 +6,6 @@ some tunables hardcoded in the source that could eventually become
configuration options. There's also an incomplete option parser configuration options. There's also an incomplete option parser
(patches welcome!). (patches welcome!).
* There's no way to *stop* the bees daemon. Use SIGKILL, SIGTERM, or
Ctrl-C for now. Some of the destructors are unreachable and have never
been tested. bees checkpoints its progress every 15 minutes (also not
configurable, patches welcome) and will repeat some work when restarted.
* The bees process doesn't fork and writes its log to stdout/stderr. * The bees process doesn't fork and writes its log to stdout/stderr.
A shell wrapper is required to make it behave more like a daemon. A shell wrapper is required to make it behave more like a daemon.