File - DataStore
Build a file-based key-value data store that supports the basic CRD (create, read, and delete) operations. This data store is meant to be used as a local storage for one single process on one laptop. The data store must be exposed as a library to clients that can instantiate a class and work with the data store.
The data store will support the following functional requirements.
- It can be initialized using an optional file path. If one is not provided, it will reliably create itself in a reasonable location on the laptop.
- A new key-value pair can be added to the data store using the Create operation. The key is always a string - capped at 32chars. The value is always a JSON object - capped at 16KB.
- If Create is invoked for an existing key, an appropriate error must be returned.
- A Read operation on a key can be performed by providing the key, and receiving the value in response, as a JSON object.
- A Delete operation can be performed by providing the key.
- Every key supports setting a Time-To-Live property when it is created. This property is optional. If provided, it will be evaluated as an integer defining the number of seconds the key must be retained in the data store. Once the Time-To-Live for a key has expired, the key will no longer be available for Read or Delete operations.
- Appropriate error responses must always be returned to a client if it uses the data store in unexpected ways or breaches any limits.
The data store will also support the following non-functional requirements.
- The size of the file storing data must never exceed 1GB.
- More than one client process cannot be allowed to use the same file as a data store at any given time.
- A client process is allowed to access the data store using multiple threads, if it desires to. The data store must therefore be thread-safe.
- The client will bear as little memory costs as possible to use this data store, while deriving maximum performance with respect to response times for accessing the data store.
Environment Setup
- Operating system: Ubuntu 18.04
- Python: Python3.6 or higher
- Install Python dependency packages:
python3 -m pip install -r requirements.txt
- Run
app.py
to run the backend server.- To start datastore from default file location, run
python3 app.py
- To start datastore from user defined file location, run
python3 app.py --datastore=<absolute_path_of_your_datastore>
- To start datastore from default file location, run
Test Environment Setup
- To test the Create operation of data in datastore, run
python3 test_create_data.py
for default datastore or runpython3 test_create_data.py --datastore=<absolute_path_of_your_datastore>
for custom datastore location. - To test the Read operation of data in datastore, run
python3 test_read_data.py
for default datastore or runpython3 test_read_data.py --datastore=<absolute_path_of_your_datastore>
for custom datastore location. - To test the Delete operation of data in datastore, run
python3 test_delete_data.py
for default datastore or runpython3 test_delete_data.py --datastore=<absolute_path_of_your_datastore>
for custom datastore location.
Accessing DataStore CRD operations as a library
- A class named
DataStoreCRD
in the filedatastore/CRD/functions.py
contains all the CRD operations. - A class function
DataStoreCRD().check_create_data(<key-value-data>, <datastore directory>)
can be used to create a data in DataStore. - A class function
DataStoreCRD().check_read_data(<key>, <datastore directory>)
can be used to read a data from the DataStore. - A class function
DataStoreCRD().check_delete_data(<key>, <datastore directory>)
can be used to delete a data from the DataStore.
REST API Examples
- Create data in DataStore - API:
http://localhost:5000/datastore/create
& Data:{"abc": {"data1": "value1", "data2": "value2", "data3": "value3", "Time-To-Live": 5000, "CreatedAt": "2020-02-27T05:07:53.133320"}, "def": {"data1": "value1", "data2": "value2", "data3": "value3", "Time-To-Live": 50, "CreatedAt": "2020-02-27T05:07:53.133343"}}
& API Type:POST
. - Read data from datastore - API:
http://localhost:5000/datastore/read?key=abc
& API Type:GET
. - Delete data from datastore - API:
http://localhost:5000/datastore/delete?key=abc
& API Type:DELETE
.