I can tell whether my job is using static allocation, however I want to actually change my job to use it. How do I do this?
Asked
Active
Viewed 43 times
1 Answers
0
Ensure your compute function has the configure
decorator and includes the STATIC_ALLOCATION
profile like so:
from transforms.api import Input, Output, configure, transform
@configure(profile=["STATIC_ALLOCATION"])
@transform(
...
)
def my_compute_function(...):
...

vanhooser
- 1,497
- 3
- 19