-
Notifications
You must be signed in to change notification settings - Fork 153
/
optimus.sample.yaml
48 lines (41 loc) · 1.19 KB
/
optimus.sample.yaml
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
########################################
# CLIENT CONFIG
########################################
version: 1
# logging configuration
log:
# debug, info, warning, error, fatal - default 'info'
level: info
# used to connect optimus service
host: localhost:9100
# for configuring optimus project
project:
name: sample_project
# project variables usable in specifications
config:
environment: integration
scheduler_host: http://example.io/
# storage_path is used for storing compiled job specifications that can be
# consumed by schedulers like Airflow
# it supports multiple schemes like: file://, gcs://
storage_path: file://absolute_path_to_a_directory
# for configuring optimus namespaces
#namespaces:
#- name: sample_namespace
# job:
# # relative path pointing to folder where job specifications are stored
# path: "ns1/job"
# datastore:
# # optimus is capable of supporting multiple datastores
# type: bigquery
# # relative path where resource spec for BQ are stored
# path: "bq"
# # namespace variables usable in specifications
# config: {}
#- name: sample_namespace_2
# job:
# path: "ns2/job"
# datastore:
# type: bigquery
# path: "bq"
# config: {}