-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redesign s3s-fs #163
Comments
meta store: blob store: filesystem object-level rwlock |
I'd like to learn more about s3s-fs, i know its not meant for production. Btw thanks for the project!! |
Http body limit can be implemented as a middleware like To add http body limit to
Or, another way is that we implement stream-aware body limit in Good luck! |
Thanks @Nugine , i tried implementing a simple one, but struggling to return a hyper I was trying to add a layer using the ServiceBuilder. I think im doing something wrong. Was wondering if you happen to have a sample on how to add a middleware that returns an Error. Thanks again for your help. Im also interested on implementing the the metadata store as you mentioned above. |
The middleware works on Request/Response. You can just convert the error to a Response by setting the status code (413) and corresponding body. S3Error can be also converted to a Response. Related
Thanks! I have no clear design for now. You can try to implement ideas in your fork and show it here. |
Currently
s3s-fs
is just an example for how to implement a storage service withs3s
.Current Problems
Goals
Non-goals
The text was updated successfully, but these errors were encountered: