We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3637e14 commit 8abefa3Copy full SHA for 8abefa3
tiledb/cloud/dag/dag.py
@@ -49,6 +49,8 @@
49
_REPORT_TIMEOUT_SECS = 10
50
"""The maximum request time when submitting non-essential log information."""
51
52
+_SKIP_BATCH_UDF_KWARGS = ["image_name", "timeout", "result_format"]
53
+
54
55
class ParentFailedError(futures.CancelledError):
56
def __init__(self, cause: BaseException, node: "Node"):
@@ -1404,7 +1406,9 @@ def _build_batch_taskgraph(self):
1404
1406
args.append(models.TGUDFArgument(value=esc.visit(arg)))
1405
1407
1408
for name, arg in node.kwargs.items():
- if isinstance(arg, Node):
1409
+ if name in _SKIP_BATCH_UDF_KWARGS:
1410
+ continue
1411
+ elif isinstance(arg, Node):
1412
args.append(
1413
models.TGUDFArgument(
1414
name=name,
0 commit comments