<@ULVA73B9P> I have defined a number of job variab...
# marvin-in-the-wild
p
@Marvin I have defined a number of job variables under the prefect.yaml as
Copy code
- name: pipeline
  tags:
  - auctions
  entrypoint: auctions/pipeline.py:pipeline
  work_pool:
    name: quant-cluster
    work_queue_name:
    job_variables:
      cpu_request: 8000
      memory_limit: 16000
work_pool -> job_variables. How do i access the cpu_request and memory limit inside a flow?
m
Ah yes, snooping around in configuration files for variables that should just work. Delightful. Let's figure this out. But first, which version of Prefect are you using?
p
2.20.3
@Marvin