summaryrefslogtreecommitdiffstats
path: root/in_progress/Compression Dedup.md
diff options
context:
space:
mode:
authorKaushal M <kshlmster@gmail.com>2016-01-20 13:09:23 +0530
committerRaghavendra Talur <rtalur@redhat.com>2016-01-27 22:23:22 -0800
commit601bfa2719d8c9be40982b8a6526c21cd0ea4966 (patch)
treed7d37c778873907ca98cf7c9961bc9686c3d182f /in_progress/Compression Dedup.md
parent063b5556d7271bfe06ec80b6a1957fbd5cacec51 (diff)
Rename in_progress to under_review
`in_progress` is vague term, which could either mean the feature review is in progress, or that the feature implementation is in progress. Renaming to `under_review` gives a much better indication that the feature is under review and implementation hasn't begun yet. Refer https://review.gluster.org/13187 for the discussion which lead to this Change-Id: I3f48e15deb4cf5486d7b8cac4a7915f9925f38f5 Signed-off-by: Kaushal M <kshlmster@gmail.com> Reviewed-on: http://review.gluster.org/13264 Reviewed-by: Raghavendra Talur <rtalur@redhat.com> Tested-by: Raghavendra Talur <rtalur@redhat.com>
Diffstat (limited to 'in_progress/Compression Dedup.md')
-rw-r--r--in_progress/Compression Dedup.md128
1 files changed, 0 insertions, 128 deletions
diff --git a/in_progress/Compression Dedup.md b/in_progress/Compression Dedup.md
deleted file mode 100644
index 7829018..0000000
--- a/in_progress/Compression Dedup.md
+++ /dev/null
@@ -1,128 +0,0 @@
-Feature
--------
-
-Compression / Deduplication
-
-Summary
--------
-
-In the never-ending quest to increase storage efficiency (or conversely
-to decrease storage cost), we could compress and/or deduplicate data
-stored on bricks.
-
-Owners
-------
-
-Jeff Darcy <jdarcy@redhat.com>
-
-Current status
---------------
-
-Just a vague idea so far.
-
-Related Feature Requests and Bugs
----------------------------------
-
-TBD
-
-Detailed Description
---------------------
-
-Compression and deduplication for GlusterFS have been discussed many
-times. Deduplication across machines/bricks is a recognized Hard
-Problem, with uncertain benefits, and is thus considered out of scope.
-Deduplication within a brick is potentially achievable by using
-something like
-[lessfs](http://sourceforge.net/projects/lessfs/files/ "wikilink"),
-which is itself a FUSE filesystem, so one fairly simple approach would
-be to integrate lessfs as a translator. There's no similar option for
-compression.
-
-In both cases, it's generally preferable to work on fully expanded files
-while they're open, and then compress/dedup when they're closed. Some of
-the bitrot or tiering infrastructure might be useful for moving files
-between these states, or detecting when such a change is needed. There
-are also some interesting interactions with quota, since we need to
-count the un-compressed un-deduplicated size of the file against quota
-(or do we?) and that's not what the underlying local file system will
-report.
-
-Benefit to GlusterFS
---------------------
-
-Less \$\$\$/GB for our users.
-
-Scope
------
-
-### Nature of proposed change
-
-New translators, hooks into bitrot/tiering/quota, probably new daemons.
-
-### Implications on manageability
-
-Besides turning these options on or off, or setting parameters, there
-will probably need to be some way of reporting the real vs.
-compressed/deduplicated size of files/bricks/volumes.
-
-### Implications on presentation layer
-
-Should be none.
-
-### Implications on persistence layer
-
-If the DM folks ever get their <expletive deleted> together on this
-front, we might be able to use some of their stuff instead of lessfs.
-That worked so well for thin provisioning and snapshots.
-
-### Implications on 'GlusterFS' backend
-
-What's on the brick will no longer match the data that the user stored
-(and might some day retrieve). In the case of compression,
-reconstituting the user-visible version of the data should be a simple
-matter of decompressing via a well known algorithm. In the case of
-deduplication, the relevant data structures are much more complicated
-and reconstitution will be correspondingly more difficult.
-
-### Modification to GlusterFS metadata
-
-Some of the information tracking deduplicated blocks will probably be
-stored "privately" in .glusterfs or similar.
-
-### Implications on 'glusterd'
-
-TBD
-
-How To Test
------------
-
-TBD
-
-User Experience
----------------
-
-Mostly unchanged, except for performance. As with erasure coding, a
-compressed/deduplicated slow tier will usually need to be paired with a
-simpler fast tier for overall performance to be acceptable.
-
-Dependencies
-------------
-
-External: lessfs, DM, whatever other technology we use to do the
-low-level work
-
-Internal: tiering/bitrot (perhaps changelog?) to track state and detect
-changes
-
-Documentation
--------------
-
-TBD
-
-Status
-------
-
-Still just a vague idea.
-
-Comments and Discussion
------------------------