DynamoFS
DynamoFS copied to clipboard
Linux FUSE file system implementation with AWS DynamoDB as the storage
Is this project still under active development, or has it been abandoned?
The readme says "execited" instead of "executed" in the "Highly Concurrent" section.
DynamoFS storage is quite expensive, while S3 has reasonable price. S3 allows parallel uploads which can provide data transfers faster than DynamoFS fastest option. Also, storing large files (GBs) via...
If a client system which took a look on file dies no other system will be able to lock its files. Worse, if the system restarts the in-memory lockId will...
Sometimes there are Fuse calls for release/lock against the file that we never saw before. LockManager fails in that case as there is no fileLock entry in dict. Need to...
At the moment the size of the file is supposedly stored in 32-bit integer. Also, if the file is big, there will be many blocks however there is no pagination...
It is obvious from the logs that Fuse performs some operations several times in a row. For example, getattr is called multiple times for the same file. This presents significant...
Linux filesystems allow the files which are being written/read to be moved or even deleted without causing errors. This is probably because an open file creates a hidden hard link...