Upgrade vendored dependencies#582
Merged
Merged
Conversation
The SIGILL crash in HistogramBucketMapper on Linux was caused by RocksDB auto-detecting and using SSE4.2/AVX instructions at build time. When the binary runs on a CPU without those features, it crashes with SIGILL. Adding -DPORTABLE=ON disables CPU-specific optimizations. Also upgrades from 9.6.1 to 11.0.4. The API surface used by multiplier (DB::Open, Get, Put, Options) is stable across versions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Minor patch release with bug fixes and compression improvements. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Three major versions of improvements. Generated headers will be regenerated by capnp_generate_cpp at build time. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
abseil: 20250127.0 → 20260107.1 glog: 0.6.0+62 → 0.7.1 gflags: 2.2.2+47 → 2.3.0 re2: 2024-07-02 → 2025-11-05 reproc: 14.2.5 → 14.2.7 concurrentqueue: 1.0.4 → 1.0.5 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
RocksDB 11.x changed DB::Open's third parameter from DB** to unique_ptr<DB>*. Update IdStore to match. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Add missing <unistd.h> include in Main.cpp (getpid/read no longer transitively included after glog 0.7.1 upgrade) - Remove const from IdStoreImpl::rocks_db to allow make_shared construction with unique_ptr move Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
kumarak
approved these changes
Apr 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
-DPORTABLE=ONThe PORTABLE flag disables CPU-specific optimizations in RocksDB, which may help with a SIGILL observed on Linux in
HistogramBucketMapper.Test plan
🤖 Generated with Claude Code