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 35 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
- 2,441
- 1
- 16