Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Object storage format
    Code Block
    struct chunk_header {
        uint64_t checksum;
        uint64_t magic;
        uint64_t key;
        struct chunk_entry *entries[0];
    };
    struct chunk_entry {
        uint64_t length;
        uint64_t index_id;
        char *data[0];
    };
    
  • Indexes
  • Key -> Object Lookup
  • Reliable networking