[FEATURE REQUEST]: Extensibility of UDAF #531
-
Hi, The Are these APIs already supported in .NET spark? Do you have any plan to support them? Is there any alternative way I can implement the Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@samueleresca Unfortunately, Just FYI, |
Beta Was this translation helpful? Give feedback.
-
waiting for the UserDefinedAggregateFunction, so that u wouldn't have to sort the entire DataFrame just to find a Row that holds the max value of a column. |
Beta Was this translation helpful? Give feedback.
@samueleresca Unfortunately,
UserDefinedAggregateFunction
is not supported in .NET for Apache Spark. If you already have a Scala implementation, you can useRegisterJavaUDAF
to register it and use it in SQL commands.Just FYI,
UserDefinedAggregateFunction
will be deprecated in Spark 3.0 in favor ofAggregator
.