0

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?

vanhooser
  • 1,497
  • 3
  • 19

1 Answers1

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