We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fea99f3 commit 39754e5Copy full SHA for 39754e5
docs/source/user-guide/common-operations/udf-and-udfa.rst
@@ -90,6 +90,12 @@ converting to Python objects to do the evaluation.
90
91
df.select(col("a"), is_null_arr(col("a")).alias("is_null")).show()
92
93
+If you need to write a custom function but do not want to incur the performance
94
+cost of converting to Python objects and back, a more advanced approach is to
95
+write Rust based UDFs and to expose them to Python. There is an example in the
96
+`DataFusion blog <https://datafusion.apache.org/blog/2024/11/19/datafusion-python-udf-comparisons/>`_
97
+describing how to do this.
98
+
99
Aggregate Functions
100
-------------------
101
0 commit comments