The Eclipse Foundation is home to the Eclipse IDE, Jakarta EE, and hundreds of open source projects, including runtimes, tools, specifications, and frameworks for cloud and edge applications, IoT, AI, automotive, systems engineering, open processor designs, and many others.
The Eclipse Foundation is an international non-profit association supported by our members, including industry leaders who value open source as a key enabler for their business strategies.
Whether you intend on contributing to Eclipse technologies that are important to your product strategy, or simply want to explore a specific innovation area with like-minded organizations, the Eclipse Foundation is the open source home for industry collaboration.
The Eclipse community consists of individual developers and organizations spanning many industries. Stay up to date on our open source community and find resources to support your journey.
The Eclipse Foundation provides our global community of individuals and organizations with a mature, scalable, and vendor-neutral environment for open source software collaboration and innovation.
Reftable is a binary, block-based storage format for the ref-database. It provides several advantages over the traditional packed + loose refs storage
Storage format:
O(1) write performance, even for deletions and transactions.
atomic updates to the ref database.
O(log N) lookup and prefix scans
free from restrictions imposed by the file system: it is case-sensitive even on case-insensitive file systems, and has no inherent limitations for directory/file conflicts
prefix compression reduces space usage for repetitive ref names, such as gerrit's refs/changes/xx/xxxxx format.
FileReftableDatabase is based on FileReftableStack, which does compactions inline. This is simple, and has good median performance, but every so often it will rewrite the entire ref database.
Add FileRepository#convertToReftable so existing testdata can be reused.
pgm: add write stats to BenchmarkReftable
pgm: add command to convert repo to reftable
reftable: enforce ascending order in sortAndWriteRefs
Documentation/technical/reftable: document rename in reflog
Introduce RefDatabase#hasFastTipsWithSha1
Other Features
553471 Add ability to redirect stderr from git hooks
553469 Add possibility to get pure stderr output from AbortedByHookException