You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be solved decreasing the number of requests to leo_storage(s).
In order to realise the above requirement, we need to come up with another implementation to calculate the total file size after updating.
The text was updated successfully, but these errors were encountered:
As the current implementation assumes a chunk size set to files is same with the one in leo_gateway.conf (see: #540 )
the total file size can be calculated using simple math.
It turned out that
The more large size, the more head requests a leo_gateway issues to leo_storage(s).
The below code may cause this problem in case handling a very large file.
https://github.com/leo-project/leo_gateway/blob/1.3.0/src/leo_nfs_file_handler.erl#L456-L479
This can be solved decreasing the number of requests to leo_storage(s).
In order to realise the above requirement, we need to come up with another implementation to calculate the total file size after updating.
The text was updated successfully, but these errors were encountered: