[SPARK-58080][PYTHON][TESTS] Add ASV microbenchmark for SQL_GROUPED_MAP_PANDAS_UDF_WITH_STATE#57189
Open
Yicong-Huang wants to merge 1 commit into
Open
Conversation
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.
What changes were proposed in this pull request?
Add an ASV micro-benchmark for
SQL_GROUPED_MAP_PANDAS_UDF_WITH_STATE(applyInPandasWithState) tobench_eval_type.py.Unlike TransformWithState, no state server socket is involved:
ApplyInPandasWithStateSerializerreconstructs eachGroupStateentirely from a metadata column carried inline in the Arrow stream. The benchmark emits the data columns followed by one trailing struct column (__state, matching the JVMApplyInPandasWithStateWriter.STATE_METADATA_SCHEMA), and faithfully reproduces the JVM writer's bin-packing and cross-batch chunking (isLastChunkset only on a group's final chunk), so a group split across batches reassembles into oneGroupState.Scenarios cover few/many groups, small/large group sizes, wide columns, mixed value types (string/binary/boolean) and a nested struct column. UDFs:
identity_udf,sort_udf,count_udf.identity_udf/sort_udfpass values through;count_udfexercises the per-group state read/write path (reads the running count viagetOption, writes it back viaupdate) and re-emits the key plus the count.Why are the changes needed?
Part of SPARK-55724. Establishes a performance baseline before refactoring
SQL_GROUPED_MAP_PANDAS_UDF_WITH_STATE.Does this PR introduce any user-facing change?
No
How was this patch tested?
COLUMNS=120 asv run --python=same --bench "ApplyInPandasWithState" -a "repeat=3"(one of two stable runs):ApplyInPandasWithStateUDFTimeBench:ApplyInPandasWithStateUDFPeakmemBench:Was this patch authored or co-authored using generative AI tooling?
No