Skip to content

Instantly share code, notes, and snippets.

@de-sh
Last active May 7, 2020 09:35
Show Gist options
  • Save de-sh/39af2a874cbecd7010d6557c4a12119d to your computer and use it in GitHub Desktop.
Save de-sh/39af2a874cbecd7010d6557c4a12119d to your computer and use it in GitHub Desktop.
A short introduction to TiKV and my work on making it a cloud native application

This is an introduction to TiKV, a Key Value Datastore that I have been selected to work on for Google Summer of Code 2020. I am supposed to be making it a cloud native product that espouses the properties of cloud nativity as defined by the Cloud Native Computing Foundation which is the organization I am to work under.

A KV datastore is a much more distributed and scalable version of the Python dictonary or JSON model of key->value data storage. It provides a user with the option to GET or PUT data from/into a database that is semi structured and contains a mapping between the keys and their associated values.

@de-sh
Copy link
Author

de-sh commented May 6, 2020

This is a living document, it will be updated with more insight as I learn about the innards of this awesome KV datastore and build a cloud native application out of it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment