-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyfly.yaml
More file actions
83 lines (74 loc) · 2.32 KB
/
Copy pathpyfly.yaml
File metadata and controls
83 lines (74 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Copyright 2026 Firefly Software Foundation
#
# PyFly application configuration. Values override the property-driven
# defaults activated by ``enable_core_stack``. Anything in the
# environment (FLYQUERY_*) wins over this file because pydantic-settings
# is loaded after pyfly merges its config sources.
pyfly:
# Surfaced at /actuator/info -- the @pyfly_application decorator sets
# these on the application class but the InfoEndpoint reads from
# ``pyfly.app.*`` config keys, so we mirror them here so health probes
# and admin tooling identify the service correctly.
app:
name: flyquery
version: 26.5.12
description: >-
Operational Structured-Data Intelligence (upload-driven).
Multi-tenant ingestion + Text-to-SQL over user-uploaded structured
files. Part of Firefly OperationOS.
web:
enabled: true
base-path: /api
server:
enabled: true
host: 0.0.0.0
port: 8520
# pyfly v26.06 runs actuator + admin on a dedicated management port (9090)
# by default. Collapse it onto the application port so /actuator/* and /admin
# stay reachable on the single business port (Spring management.server.port
# parity). Set to -1 to disable, or a distinct port to split them out.
management:
server:
port: 8520
observability:
enabled: true
metrics:
enabled: true
tracing:
enabled: true
service-name: flyquery
actuator:
enabled: true
metrics:
enabled: true
admin:
enabled: true
path: /admin
title: "flyquery -- PyFly Admin"
theme: auto
require-auth: false
refresh-interval: 5000
aop:
enabled: true
resilience:
enabled: true
cqrs:
enabled: true
cache:
enabled: true
eda:
enabled: true
provider: ${FLYQUERY_EDA_ADAPTER:postgres}
destinations: ${FLYQUERY_EDA_DESTINATIONS:flyquery.ingest,flyquery.schema,flyquery.audit}
group: ${FLYQUERY_EDA_GROUP:flyquery-workers}
postgres:
dsn: ${FLYQUERY_DATABASE_URL:postgresql+asyncpg://flyquery:flyquery@localhost:5432/flyquery}
channel: flyquery_eda
redis:
url: ${FLYQUERY_REDIS_URL:redis://localhost:6379/0}
kafka:
bootstrap-servers: ${FLYQUERY_KAFKA_BOOTSTRAP:localhost:9092}
data:
relational:
enabled: true
url: ${FLYQUERY_DATABASE_URL:postgresql+asyncpg://flyquery:flyquery@localhost:5432/flyquery}