GH-51037: [C++] Replace RapidJSON with simdjson in JSON parser - #51038
Draft
Reranko05 wants to merge 4 commits into
Draft
GH-51037: [C++] Replace RapidJSON with simdjson in JSON parser#51038Reranko05 wants to merge 4 commits into
Reranko05 wants to merge 4 commits into
Conversation
Reranko05
force-pushed
the
gh-35460-parser
branch
from
August 29, 2026 20:53
e005f60 to
733788e
Compare
Reranko05
force-pushed
the
gh-35460-parser
branch
from
August 29, 2026 21:09
733788e to
d02c90a
Compare
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.
Rationale for this change
This PR continues the simdjson migration by replacing the RapidJSON-based parsing implementation used by the JSON parser.
The existing parser uses RapidJSON's SAX/handler interface to parse JSON values and populate Arrow builders. This change replaces that implementation with simdjson's ondemand API while retaining the existing builder and type-inference logic.
Changes
simdjson::ondemand::parser::iterate_many.ResolveSimdjsonResult()consistently when handling simdjson results.Error,Ignore, andInferType.Status::Invalid.Fixes: #51037