Skip to content

Commit

Permalink
set default io threads as 32
Browse files Browse the repository at this point in the history
  • Loading branch information
flaneur2020 committed May 27, 2024
1 parent 0c59dc2 commit f674835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/databend_udf/udf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ScalarFunction(UserDefinedFunction):
_skip_null: bool

def __init__(
self, func, input_types, result_type, name=None, io_threads=None, skip_null=None
self, func, input_types, result_type, name=None, io_threads=32, skip_null=None
):
self._func = func
self._input_schema = pa.schema(
Expand Down

0 comments on commit f674835

Please sign in to comment.