Skip to content
This repository has been archived by the owner on Sep 8, 2018. It is now read-only.

chids/statics-prototype

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This work was done 2015 but put here, in the open, 2018.

Characteristics

  • Expensive writes
    • Due to coordination in order to prevent concurrent conflicting writes
  • Cheap and reliable reads
    • Due to ease of replication
    • For those that do not require strict read your own write semantics, the latest version is eventually available at a "well known" URL

About

Statics is Heroku friendly "port" of Pinterest's Config v2 and as such it is a service for read intensive rather than write intensive workloads.

Differences from Pinterest's Config v2

  • Redis instead of Zookeeper
    • (for coordination and broadcasting changes)
  • Expose the latest revision of each document at a "known URL"
  • Stores any type of content
    • (binary data + mime type)

Similarities to Pinterest's Config v2

  • Immutable append only storage
  • New versions are written under a per document write lock
    • (managed as a key in Redis)

Storage

  • General layout
    • [domain][separator][type][separator][id][separator][qualifier=[revision]|current]
  • S3
    • [domain]/[type]/[id]/[revision]
    • [domain]/[type]/[id]/current -> [revision]
      • (using AWS S3 webpage redirect)
  • Redis:
    • [domain]:[type]:[id]=[revision]
    • lock:[domain]:[type]:[id]
      • (written with expiration)

S3 configuration

The S3 bucket should be configured with

  • Static website hosting
    • This is required to have the current revision redirect to the latest actual revision
  • Versioning
    • This adds an additional saftey net by enabling you to revert to previous versions of objects
    • Versioning also allows you to iterate through the revisions of an object by stepping through the metadata of the current revision
    • Versioning is a pre-requeisite for bucket-to-bucket replication but need not be enabled from the start if you do not intend to use replication from the start. However adding replication later will not replicate existing objects.
    • Optional: add a lifecycle configuration that expires old versions
      • The number of days that old versions are retained defines implicilty defines how much history of revisions you can retrieve by looking at the metadara for old versions of the current revision.

About

PoC adaptation of Pinterest's config store to suit deployment on Heroku

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages