-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement get_json_object_multiple_paths
#2233
Merged
ttnghia
merged 43 commits into
NVIDIA:branch-24.08
from
ttnghia:get_json_object_long_strings
Jul 18, 2024
Merged
Implement get_json_object_multiple_paths
#2233
ttnghia
merged 43 commits into
NVIDIA:branch-24.08
from
ttnghia:get_json_object_long_strings
Jul 18, 2024
Conversation
This file contains 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
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
# Conflicts: # src/main/cpp/src/get_json_object.cu
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
ttnghia
force-pushed
the
get_json_object_long_strings
branch
from
July 17, 2024 07:02
8814752
to
e4d1352
Compare
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
# Conflicts: # src/main/cpp/src/get_json_object.cu
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
…_object_long_strings # Conflicts: # src/main/cpp/src/get_json_object.hpp
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
build |
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
build |
Signed-off-by: Nghia Truong <[email protected]>
build |
res-life
reviewed
Jul 18, 2024
Signed-off-by: Nghia Truong <[email protected]>
res-life
reviewed
Jul 18, 2024
Signed-off-by: Nghia Truong <[email protected]>
res-life
reviewed
Jul 18, 2024
LGTM. |
res-life
approved these changes
Jul 18, 2024
We may add a case for the |
build |
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.
This re-implements
get_json_object
to support extracting multiple JSON objects from the same JSON input. By processing multiple JSON paths in just one kernel call, we can improve the performance of SQL queries in which there are large numbers of calls toget_json_object
.The building blocks of this work are very simple:
Depends on:
get_json_object
#2232Benchmark on a dataset of
200'000
rows, given by a6.7GB
parquet file, and80
JSON paths. The data is read using parquet chunked reader with256MB
output limit.