HyukjinKwon commented on code in PR #50099: URL: https://github.com/apache/spark/pull/50099#discussion_r1976523920
########## python/pyspark/sql/pandas/serializers.py: ########## @@ -175,6 +178,16 @@ def wrap_and_init_stream(): return super(ArrowStreamUDFSerializer, self).dump_stream(wrap_and_init_stream(), stream) +class ArrowStreamUDTFSerializer(ArrowStreamUDFSerializer): + """ + Same as :class:`ArrowStreamSerializer` but it flattens the struct to Arrow record batch + for applying each function with the raw record arrow batch. See also `DataFrame.mapInArrow`. + """ + + def load_stream(self, stream): + return super(ArrowStreamUDFSerializer, self).load_stream(stream) Review Comment: SGTM -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org