Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Hongqin-Li/map-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MapStore

A simple MapReduce-based key-value storage.

CI Status Deploy Status License



  • Github CI and documentation.
  • MapStore fault tolerant.
  • MapStore doc and test.
  • MapStore non-volatile option.

Structure

The design is a combination of MapReduce and KV Store. Each request is a pair of key and operation, representing user's operation on specific key. As in MapReduce, we first compute the hash value of key and append the log to corresponding log file indexed by the hash value mod nmaps. The compaction on log is done lazily when user queries the value on certain key inside this map region. So the query is quite slow and it is only suitable for frequent modifications and little queries.

Figure 1: The structure of MapStore.

About

Simple key-value storage based on MapReduce

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published