Coder Social home page Coder Social logo

dedup/erasure/compress about reedsolomon HOT 1 CLOSED

klauspost avatar klauspost commented on August 26, 2024
dedup/erasure/compress

from reedsolomon.

Comments (1)

klauspost avatar klauspost commented on August 26, 2024

It depends a lot on your data. It is general purpose file storage, log files (streams).

The general approach should be dedup -> compress -> erasure. That will ensure the smallest amount of data.

However, a lot of the gains from deduplication comes from running it across multiple TB of data, so if you treat files as separate entities you will of course not get the main benefit.

ZPAQ includes deduplication and does it as follows:

  • Step 1, deduplicate into fragments of 4-64KB size.
  • Step 2, collect blocks until you have 16MB data.
  • Step 3, compress each block.

A file entry then contains information about which block/fragments are used to reconstruct each file. The 16MB size is the maximum penalty for getting a single fragment.

For a datacenter type job, I would look into the possibility of doing deduplication globally. The 'dedup' currently doesn't offer "DYI" splitting, but that could quite easily be added.

If you would like to discuss things in more detail, you are very welcome to write a mail with your business case. I would be happy to help out!

from reedsolomon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.