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
I found that in the implementation of cloud_env_impl.NewRandomAccessFile, if we has local SstFileCache. When the local file does not exist, it needs to wait until the file is downloaded to the local. This process may be slower when the file is large.
Can we directly Random Access from S3 File, then asynchronously download the file and update the cache, after that we can replace the RandomAccessFile with the local one.
The text was updated successfully, but these errors were encountered:
I found that in the implementation of
cloud_env_impl.NewRandomAccessFile
, if we has local SstFileCache. When the local file does not exist, it needs to wait until the file is downloaded to the local. This process may be slower when the file is large.Can we directly Random Access from S3 File, then asynchronously download the file and update the cache, after that we can replace the RandomAccessFile with the local one.
The text was updated successfully, but these errors were encountered: