27 lines
598 B
YAML
27 lines
598 B
YAML
|
|
# ExF Fetcher Deployment Configuration
|
||
|
|
name: exf-fetcher
|
||
|
|
description: |
|
||
|
|
External Factors Fetcher - Long-running daemon that polls market indicators
|
||
|
|
every 0.5 seconds and pushes to Hazelcast.
|
||
|
|
|
||
|
|
This is NOT a scheduled flow - it's a continuous daemon.
|
||
|
|
|
||
|
|
entrypoint: prod/exf_fetcher_flow.py:exf_fetcher_flow
|
||
|
|
version: 1.0.0
|
||
|
|
|
||
|
|
# Work pool
|
||
|
|
tags: ["exf", "external-factors", "production"]
|
||
|
|
work_pool:
|
||
|
|
name: dolphin
|
||
|
|
work_queue_name: default
|
||
|
|
|
||
|
|
# Parameters
|
||
|
|
parameters:
|
||
|
|
warmup_s: 30
|
||
|
|
|
||
|
|
# Infrastructure (process-based for long-running daemon)
|
||
|
|
infrastructure:
|
||
|
|
type: process
|
||
|
|
env: {}
|
||
|
|
labels: {}
|