/
githubmirror
/
spark
Обзор
Документация
Войти
/
githubmirror
/
spark
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
python/benchmarks/bench_arrow.py
215 строк
8 KB
Liang-Chi Hsieh
[SPARK-58024][PYTHON] Convert Arrow struct and map columns to Python rows in bulk
11 июл 2026, 08:40
11 июл 2026, 08:40
9c6e57b
Код
Авторство
О чём код?
# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # """ Microbenchmarks for Arrow to Pandas conversions. """ import numpy as np import pandas as pd import pyarrow as pa class ArrowToPandasBenchmark: """Benchmark for Arrow int array -> Pandas conversions with different types_mapper.""" params = [ [10000, 100000, 1000000], ["default", "arrow_dtype"], ] param_names = ["n_rows", "types_mapper"] def setup(self, n_rows, types_mapper): self.int_array = pa.array(np.random.randint(0, 1000, n_rows)) self.int_array_with_nulls = pa.array([i if i % 10 != 0 else None for i in range(n_rows)]) self.types_mapper = pd.ArrowDtype if types_mapper == "arrow_dtype" else None def time_int_to_pandas(self, n_rows, types_mapper): self.int_array.to_pandas(types_mapper=self.types_mapper) def time_int_with_nulls_to_pandas(self, n_rows, types_mapper): self.int_array_with_nulls.to_pandas(types_mapper=self.types_mapper) def peakmem_int_to_pandas(self, n_rows, types_mapper): self.int_array.to_pandas(types_mapper=self.types_mapper) def peakmem_int_with_nulls_to_pandas(self, n_rows, types_mapper): self.int_array_with_nulls.to_pandas(types_mapper=self.types_mapper) class LongArrowToPandasBenchmark: """Benchmark for Arrow long array -> Pandas conversions.""" params = [ [10000, 100000, 1000000], ["simple", "arrow_types_mapper", "pd.Series"], ] param_names = ["n_rows", "method"] def setup(self, n_rows, method): self.long_array = pa.array(list(range(n_rows - 1)) + [9223372036854775707], type=pa.int64()) # check 3 different ways to convert non-nullable longs to numpy int64 def run_long_to_pandas(self, n_rows, method): if method == "simple": ser = self.long_array.to_pandas() elif method == "arrow_types_mapper": ser = self.long_array.to_pandas(types_mapper=pd.ArrowDtype).astype(np.int64) else: ser = pd.Series(self.long_array, dtype=np.int64) assert ser.dtype == np.int64 def time_long_to_pandas(self, n_rows, method): self.run_long_to_pandas(n_rows, method) def peakmem_long_to_pandas(self, n_rows, method): self.run_long_to_pandas(n_rows, method) class NullableLongArrowToPandasBenchmark: """Benchmark for Arrow long array with nulls -> Pandas conversions.""" params = [ [10000, 100000, 1000000], ["integer_object_nulls", "arrow_types_mapper", "pd.Series"], ] param_names = ["n_rows", "method"] def setup(self, n_rows, method): self.long_array_with_nulls = pa.array( [i if i % 10 != 0 else None for i in range(n_rows - 1)] + [9223372036854775707], type=pa.int64(), ) # check 3 different ways to convert nullable longs to nullable extension type def run_long_with_nulls_to_pandas_ext(self, n_rows, method): if method == "integer_object_nulls": ser = self.long_array_with_nulls.to_pandas(integer_object_nulls=True).astype( pd.Int64Dtype() ) elif method == "arrow_types_mapper": ser = self.long_array_with_nulls.to_pandas(types_mapper=pd.ArrowDtype).astype( pd.Int64Dtype() ) else: ser = pd.Series(self.long_array_with_nulls.to_pylist(), dtype=pd.Int64Dtype()) assert ser.dtype == pd.Int64Dtype() def time_long_with_nulls_to_pandas_ext(self, n_rows, method): self.run_long_with_nulls_to_pandas_ext(n_rows, method) def peakmem_long_with_nulls_to_pandas_ext(self, n_rows, method): self.run_long_with_nulls_to_pandas_ext(n_rows, method) class ArrowListColumnToRowsBenchmark: """ Benchmark for converting Arrow list-typed columns to Python rows, the hot path of Arrow-optimized Python UDF inputs and Spark Connect collect(). ``baseline`` measures plain ``column.to_pylist()``; ``bulk`` measures ``ArrowTableToRowsConversion._to_pylist`` (see apache/arrow#50326). """ params = [ [100000, 1000000], ["baseline", "bulk"], ] param_names = ["n_rows", "method"] def setup(self, n_rows, method): from pyspark.sql.conversion import ArrowTableToRowsConversion self.list_of_strings = pa.array( [[f"s{i}", f"t{i}"] for i in range(n_rows)], type=pa.list_(pa.string()) ) self.nested_ints_with_nulls = pa.array( [[[i, i + 1], None, [i + 2]] if i % 10 != 0 else None for i in range(n_rows)], type=pa.list_(pa.list_(pa.int32())), ) self.array_of_structs = pa.array( [ [{"i": i, "s": f"a{i}"}, {"i": i + 1, "s": f"b{i}"}] if i % 10 != 0 else None for i in range(n_rows) ], type=pa.list_(pa.struct([("i", pa.int32()), ("s", pa.string())])), ) if method == "bulk": self.convert = ArrowTableToRowsConversion._to_pylist else: self.convert = lambda column: column.to_pylist() def time_list_of_strings_to_rows(self, n_rows, method): self.convert(self.list_of_strings) def time_nested_ints_with_nulls_to_rows(self, n_rows, method): self.convert(self.nested_ints_with_nulls) def time_array_of_structs_to_rows(self, n_rows, method): self.convert(self.array_of_structs) def peakmem_list_of_strings_to_rows(self, n_rows, method): self.convert(self.list_of_strings) def peakmem_nested_ints_with_nulls_to_rows(self, n_rows, method): self.convert(self.nested_ints_with_nulls) def peakmem_array_of_structs_to_rows(self, n_rows, method): self.convert(self.array_of_structs) class ArrowStructMapColumnToRowsBenchmark: """ Benchmark for converting Arrow struct and map columns to Python rows. ``baseline`` measures plain ``column.to_pylist()``; ``bulk`` measures ``ArrowTableToRowsConversion._to_pylist`` with the struct/map bulk paths. """ params = [ [100000, 1000000], ["baseline", "bulk"], ] param_names = ["n_rows", "method"] def setup(self, n_rows, method): from pyspark.sql.conversion import ArrowTableToRowsConversion self.structs = pa.array( [{"a": i, "b": f"s{i}"} if i % 10 != 0 else None for i in range(n_rows)], type=pa.struct([("a", pa.int64()), ("b", pa.string())]), ) self.maps = pa.array( [ [(f"k{i % 3}", i), (f"q{i % 5}", i + 1)] if i % 10 != 0 else None for i in range(n_rows) ], type=pa.map_(pa.string(), pa.int64()), ) if method == "bulk": self.convert = ArrowTableToRowsConversion._to_pylist else: self.convert = lambda column: column.to_pylist() def time_structs_to_rows(self, n_rows, method): self.convert(self.structs) def time_maps_to_rows(self, n_rows, method): self.convert(self.maps) def peakmem_structs_to_rows(self, n_rows, method): self.convert(self.structs)