โ03-13-2023 10:45 AM
Hi,
I have UDF which runs for each spark dataframe row, does some complex processing and return string output. But it takes very long if data is 15000 rows. I have configured cluster with autoscaling, but its not spinning more servers.
Please suggest how to make UDF fasters or any reference implementations.
Regards,
Sanjay
โ03-14-2023 05:00 AM
Hi @Sanjay Jainโ , Python UDFs are generally slower to process because it runs mostly in the driver which can also lead to OOM errors on Driver. To resolve this issue, please consider the below:
โ03-18-2023 03:38 AM
Hi @Sanjay Jainโ โโ, We haven't heard from you since the last response from @Lakshay Goelโ, @rishabh and @Vigneshraja Palanirajโโ, and I was checking back to see if their suggestions helped you.
Or else, If you have any solution, please share it with the community, as it can be helpful to others.
Also, Please don't forget to click on the "Select As Best" button whenever the information provided helps resolve your question.
โ03-13-2023 11:22 AM
@Sanjay Jainโ Hi Sanjay. You did not mention what kind of processing you are doing in UDF. Python UDF definitely will create performance issues as Spark optimizer does not apply optimization on what you are doing within the UDF. Please see if you can do any of those processing using Spark native functions.
If still, you need to use python UDF, see if you can try with Pandas UDF. This can provide significant performance improvements for certain types of operations. Pandas UDFs use Apache Arrow to transfer data between Python and Spark, which can result in faster processing times.
โ03-13-2023 01:22 PM
Write ...whether you can perform the same things by using pyspark native logics and functions then no need to use a UDF. Because in most cases we can do by using pyspark also because UDF will definitely create a performance issues โ
โ03-14-2023 05:00 AM
Hi @Sanjay Jainโ , Python UDFs are generally slower to process because it runs mostly in the driver which can also lead to OOM errors on Driver. To resolve this issue, please consider the below:
โ03-18-2023 03:38 AM
Hi @Sanjay Jainโ โโ, We haven't heard from you since the last response from @Lakshay Goelโ, @rishabh and @Vigneshraja Palanirajโโ, and I was checking back to see if their suggestions helped you.
Or else, If you have any solution, please share it with the community, as it can be helpful to others.
Also, Please don't forget to click on the "Select As Best" button whenever the information provided helps resolve your question.
Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโt want to miss the chance to attend and share knowledge.
If there isnโt a group near you, start one and help create a community that brings people together.
Request a New Group