HaloDB
HaloDB copied to clipboard
A fast, log structured key-value store.
I really like a lot of things with HaloDB and would really have liked to contribute some time to port it to more contemporary JDK releases but after looking a...
Bumps log4j-core from 2.3 to 2.16.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Fixes #23. On Windows, if any file specified in the call to `Files.move` is open by any process (including our own), the call will throw a FileSystemException. I confirm that...
I see that 0.5.5 and 0.5.6 have recently been released, but they are not published to https://yahoo.bintray.com/maven. Where can I get those artifacts? Also, is there any way this will...
Every time when repairing database after incorrect shutdown I get following error: `Caused by: java.nio.file.FileSystemException: C:\database\1549869944.index.repair -> C:\database\1549869944.index: The process cannot access the file because it is being used by...
https://github.com/yahoo/HaloDB/blob/741b4f7e39441f34bd04935bd353745c2525adec/src/main/java/com/oath/halodb/Segment.java#L22 This field is never used.
I have added HaloDB to my encyclopedia of databases: https://dbdb.io/db/halodb Do you have a logo that I can include? Thanks! -- Andy
I need regular database exports, which is an iteration over all records. In my tests, when I create an iterator, records created after the iterator creation are not returned, I...
Apart from iterating through every record in the database, is there any way to truncate all data?
I was attracted by the design of HaloDB recently, and I carefully read his implementation. I found that in the serialize method of InMemoryIndexMetaDataSerializer, the byteBuffer flips twice. I don’t...