Uh oh!
There was an error while loading. Please reload this page.
Feature/instance udfs - #890
Merged
Merged
Conversation
Michael-J-Ward
commented
Oct 3, 2024
Contributor
Instead of saving the Modulo runtime assertions, this works on deftest_udaf_aggregate_with_arguments(df):
bias=10.0deffactory() ->Accumulator:
returnSummarize(bias)
summarize=udaf(
factory,
pa.float64(),
pa.float64(),
[pa.float64()],
volatility="immutable",
# arguments=[bias],
)
df1=df.aggregate([], [summarize(column("a"))])
# execute and collect the first (and only) batchresult=df1.collect()[0]
assertresult.column(0) ==pa.array([bias+1.0+2.0+3.0]) |
timsaucer
commented
Oct 4, 2024
MemberAuthor
This is a very good idea. I'll change to your approach. |
Michael-J-Ward
commented
Oct 4, 2024
Contributor
Ah, shoot. Sorry @timsaucer, I created a conflict when I merged the |
timsaucer
commented
Oct 4, 2024
MemberAuthor
No worries at all. I'll wait for #892 CI to finish, merge that, then rebase this. |
… we get a clean state when functions are reused
timsaucerforce-pushed
the
feature/instance-udfs
branch
from
October 4, 2024 15:31
9430084 to
250baeaCompare
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 freeto 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.
Which issue does this PR close?
Closes#822
Rationale for this change
With this change we add an additional argument to
udafandudwfto be used for calls to__init__of the class that implements the aggregation or partition evaluator. This allows users to pass in these arguments so we can reuse a single class that requires parameters.The other option is to always pass in these parameters as
lit()values which is not as performant.What changes are included in this PR?
Updates the
udafcall to add in the provided arguments when initializing the classes. Also adds unit tests.Are there any user-facing changes?
There is a non-breaking change to the
udaffunction that allows for an optional set of arguments to be passed in. If any users are instead callingAggregateUDF()directly they will need to add in an empty list as the extra argument.There is a breaking change to
udwfbut since it is not in any released version yet, it shouldn't count as a user-facing change in my opinion.