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 am getting an IO error: ...\000005.sst: Could not create random access file. on Windows, but not on any other platform. It seems to be reported here as well, but no fix for this to be found. Is there any way to fix this error?
The text was updated successfully, but these errors were encountered:
leveldb doesn't directly do any file I/O. It requires that the port implement an leveldb::Env class - so that's up to whoever made this port. leveldb does provide a POSIX Env (src/util/env_posix.cc), but most ports do not use that. leveldb does not provide a Windows Env.
I think to solve this somebody will need to debug the actual Env used in your product. If it's a Windows only bug then look for UNICODE/utf8 path encoding issues, paths which are too long, or permissions issues.
…ark. (google#466)
Describe how to use the cpupower command to disable CPU frequency scaling.
Document this, since there are other ways that don't see to have the same
effect. See google#325
I am getting an
IO error: ...\000005.sst: Could not create random access file.
on Windows, but not on any other platform. It seems to be reported here as well, but no fix for this to be found. Is there any way to fix this error?The text was updated successfully, but these errors were encountered: