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
While applying snapshot, https://github.com/Connor1996/badger will try to invoke directio.OpenFile
However, directio is not supported by linux tmpfs issue1issue2, which is the default storage location of tinykv test.
It will block forever while apply snapshot.
I think maybe we can fallback from directio.OpenFile to os.OpenFile when O_DIRECT is not supported.
The text was updated successfully, but these errors were encountered:
While applying snapshot,
https://github.com/Connor1996/badger
will try to invokedirectio.OpenFile
However, directio is not supported by linux tmpfs issue1 issue2, which is the default storage location of tinykv test.
It will block forever while apply snapshot.
I think maybe we can fallback from
directio.OpenFile
toos.OpenFile
when O_DIRECT is not supported.The text was updated successfully, but these errors were encountered: