如何在 AWS Glue Map.Apply 中使用参数
how to arguments to function in AWS Glue Map.Apply
我想将参数传递给 map.apply
中使用的函数
def awsome_function(needed_input_var):
....
Map.apply(frame=products_combination, f=awsome_function(??????))
```
I don't see a way to do this.
这不是故意的。地图应该只接受 DynamicFrame
作为输入。
Doc 说:
Builds a new DynamicFrame by applying a function to all records in the
input DynamicFrame.
我想将参数传递给 map.apply
中使用的函数def awsome_function(needed_input_var):
....
Map.apply(frame=products_combination, f=awsome_function(??????))
```
I don't see a way to do this.
这不是故意的。地图应该只接受 DynamicFrame
作为输入。
Doc 说:
Builds a new DynamicFrame by applying a function to all records in the input DynamicFrame.