@@ -116,7 +116,7 @@ core:
116
116
schedulers in your cluster, is the maximum number of task instances with the running
117
117
state in the metadata database. The value must be larger or equal 1.
118
118
version_added : ~
119
- type : string
119
+ type : integer
120
120
example : ~
121
121
default : " 32"
122
122
max_active_tasks_per_dag :
@@ -129,7 +129,7 @@ core:
129
129
An example scenario when this would be useful is when you want to stop a new dag with an early
130
130
start date from stealing all the executor slots in a cluster.
131
131
version_added : 2.2.0
132
- type : string
132
+ type : integer
133
133
example : ~
134
134
default : " 16"
135
135
dags_are_paused_at_creation :
@@ -145,7 +145,7 @@ core:
145
145
if it reaches the limit. This is configurable at the DAG level with ``max_active_runs``,
146
146
which is defaulted as ``[core] max_active_runs_per_dag``.
147
147
version_added : ~
148
- type : string
148
+ type : integer
149
149
example : ~
150
150
default : " 16"
151
151
max_consecutive_failed_dag_runs_per_dag :
@@ -156,7 +156,7 @@ core:
156
156
If not specified, then the value is considered as 0,
157
157
meaning that the dags are never paused out by default.
158
158
version_added : 2.9.0
159
- type : string
159
+ type : integer
160
160
example : ~
161
161
default : " 0"
162
162
mp_start_method :
@@ -274,7 +274,7 @@ core:
274
274
When a task is killed forcefully, this is the amount of time in seconds that
275
275
it has to cleanup after it is sent a SIGTERM, before it is SIGKILLED
276
276
version_added : ~
277
- type : string
277
+ type : integer
278
278
example : ~
279
279
default : " 60"
280
280
dag_run_conf_overrides_params :
@@ -307,7 +307,7 @@ core:
307
307
description : |
308
308
The number of retries each task is going to have by default. Can be overridden at dag or task level.
309
309
version_added : 1.10.6
310
- type : string
310
+ type : integer
311
311
example : ~
312
312
default : " 0"
313
313
default_task_retry_delay :
@@ -354,7 +354,7 @@ core:
354
354
description : |
355
355
Updating serialized DAG can not be faster than a minimum interval to reduce database write rate.
356
356
version_added : 1.10.7
357
- type : string
357
+ type : integer
358
358
example : ~
359
359
default : " 30"
360
360
compress_serialized_dags :
@@ -365,15 +365,15 @@ core:
365
365
366
366
This will disable the DAG dependencies view
367
367
version_added : 2.3.0
368
- type : string
368
+ type : boolean
369
369
example : ~
370
370
default : " False"
371
371
min_serialized_dag_fetch_interval :
372
372
description : |
373
373
Fetching serialized DAG can not be faster than a minimum interval to reduce database
374
374
read rate. This config controls when your DAGs are updated in the Webserver
375
375
version_added : 1.10.12
376
- type : string
376
+ type : integer
377
377
example : ~
378
378
default : " 10"
379
379
max_num_rendered_ti_fields_per_task :
@@ -437,7 +437,7 @@ core:
437
437
deployment where the ``default_pool`` is already created. For existing deployments, users can
438
438
change the number of slots using Webserver, API or the CLI
439
439
version_added : 2.2.0
440
- type : string
440
+ type : integer
441
441
example : ~
442
442
default : " 128"
443
443
max_map_length :
@@ -572,7 +572,7 @@ database:
572
572
The SQLAlchemy pool size is the maximum number of database connections
573
573
in the pool. 0 indicates no limit.
574
574
version_added : 2.3.0
575
- type : string
575
+ type : integer
576
576
example : ~
577
577
default : " 5"
578
578
sql_alchemy_max_overflow :
@@ -587,7 +587,7 @@ database:
587
587
max_overflow can be set to ``-1`` to indicate no overflow limit;
588
588
no limit will be placed on the total number of concurrent connections. Defaults to ``10``.
589
589
version_added : 2.3.0
590
- type : string
590
+ type : integer
591
591
example : ~
592
592
default : " 10"
593
593
sql_alchemy_pool_recycle :
@@ -597,7 +597,7 @@ database:
597
597
not apply to sqlite. If the number of DB connections is ever exceeded,
598
598
a lower config value will allow the system to recover faster.
599
599
version_added : 2.3.0
600
- type : string
600
+ type : integer
601
601
example : ~
602
602
default : " 1800"
603
603
sql_alchemy_pool_pre_ping :
@@ -608,7 +608,7 @@ database:
608
608
<https://docs.sqlalchemy.org/en/14/core/pooling.html#disconnect-handling-pessimistic>`__
609
609
for more details.
610
610
version_added : 2.3.0
611
- type : string
611
+ type : boolean
612
612
example : ~
613
613
default : " True"
614
614
sql_alchemy_schema :
@@ -1029,7 +1029,7 @@ metrics:
1029
1029
description : |
1030
1030
Enables sending metrics to StatsD.
1031
1031
version_added : 2.0.0
1032
- type : string
1032
+ type : boolean
1033
1033
example : ~
1034
1034
default : " False"
1035
1035
statsd_host :
@@ -1043,14 +1043,14 @@ metrics:
1043
1043
description : |
1044
1044
Enables the statsd host to be resolved into IPv6 address
1045
1045
version_added : 3.0.0
1046
- type : string
1046
+ type : boolean
1047
1047
example : ~
1048
1048
default : " False"
1049
1049
statsd_port :
1050
1050
description : |
1051
1051
Specifies the port on which the StatsD daemon (or server) is listening to
1052
1052
version_added : 2.0.0
1053
- type : string
1053
+ type : integer
1054
1054
example : ~
1055
1055
default : " 8125"
1056
1056
statsd_prefix :
@@ -1078,7 +1078,7 @@ metrics:
1078
1078
description : |
1079
1079
To enable datadog integration to send airflow metrics.
1080
1080
version_added : 2.0.0
1081
- type : string
1081
+ type : boolean
1082
1082
example : ~
1083
1083
default : " False"
1084
1084
statsd_datadog_tags :
@@ -1126,7 +1126,7 @@ metrics:
1126
1126
description : |
1127
1127
Enables sending metrics to OpenTelemetry.
1128
1128
version_added : 2.6.0
1129
- type : string
1129
+ type : boolean
1130
1130
example : ~
1131
1131
default : " False"
1132
1132
otel_host :
@@ -1141,7 +1141,7 @@ metrics:
1141
1141
description : |
1142
1142
Specifies the port of the OpenTelemetry Collector that is listening to.
1143
1143
version_added : 2.6.0
1144
- type : string
1144
+ type : integer
1145
1145
example : ~
1146
1146
default : " 8889"
1147
1147
otel_prefix :
@@ -1163,7 +1163,7 @@ metrics:
1163
1163
description : |
1164
1164
If ``True``, all metrics are also emitted to the console. Defaults to ``False``.
1165
1165
version_added : 2.7.0
1166
- type : string
1166
+ type : boolean
1167
1167
example : ~
1168
1168
default : " False"
1169
1169
otel_service :
@@ -1180,7 +1180,7 @@ metrics:
1180
1180
you need to configure the SSL certificate and key within the OpenTelemetry collector's
1181
1181
``config.yml`` file.
1182
1182
version_added : 2.7.0
1183
- type : string
1183
+ type : boolean
1184
1184
example : ~
1185
1185
default : " False"
1186
1186
traces :
@@ -1191,7 +1191,7 @@ traces:
1191
1191
description : |
1192
1192
Enables sending traces to OpenTelemetry.
1193
1193
version_added : 2.10.0
1194
- type : string
1194
+ type : boolean
1195
1195
example : ~
1196
1196
default : " False"
1197
1197
otel_host :
@@ -1206,7 +1206,7 @@ traces:
1206
1206
description : |
1207
1207
Specifies the port of the OpenTelemetry Collector that is listening to.
1208
1208
version_added : 2.10.0
1209
- type : string
1209
+ type : integer
1210
1210
example : ~
1211
1211
default : " 8889"
1212
1212
otel_service :
@@ -1220,7 +1220,7 @@ traces:
1220
1220
description : |
1221
1221
If True, all traces are also emitted to the console. Defaults to False.
1222
1222
version_added : 2.10.0
1223
- type : string
1223
+ type : boolean
1224
1224
example : ~
1225
1225
default : " False"
1226
1226
otel_ssl_active :
@@ -1230,7 +1230,7 @@ traces:
1230
1230
you need to configure the SSL certificate and key within the OpenTelemetry collector's
1231
1231
config.yml file.
1232
1232
version_added : 2.10.0
1233
- type : string
1233
+ type : boolean
1234
1234
example : ~
1235
1235
default : " False"
1236
1236
secrets :
@@ -1348,14 +1348,14 @@ api:
1348
1348
description : |
1349
1349
Number of workers to run on the API server
1350
1350
version_added : ~
1351
- type : string
1351
+ type : integer
1352
1352
example : ~
1353
1353
default : " 4"
1354
1354
worker_timeout :
1355
1355
description : |
1356
1356
Number of seconds the API server waits before timing out on a worker
1357
1357
version_added : ~
1358
- type : string
1358
+ type : integer
1359
1359
example : ~
1360
1360
default : " 120"
1361
1361
access_logfile :
@@ -1453,14 +1453,14 @@ api:
1453
1453
By default, the webserver shows paused DAGs. Flip this to hide paused
1454
1454
DAGs by default
1455
1455
version_added : ~
1456
- type : string
1456
+ type : boolean
1457
1457
example : ~
1458
1458
default : " False"
1459
1459
page_size :
1460
1460
description : |
1461
1461
Consistent page size across all listing views in the UI
1462
1462
version_added : ~
1463
- type : string
1463
+ type : integer
1464
1464
example : ~
1465
1465
default : " 50"
1466
1466
default_wrap :
@@ -1863,21 +1863,21 @@ smtp:
1863
1863
description : |
1864
1864
Determines whether to use the STARTTLS command when connecting to the SMTP server.
1865
1865
version_added : ~
1866
- type : string
1866
+ type : boolean
1867
1867
example : ~
1868
1868
default : " True"
1869
1869
smtp_ssl :
1870
1870
description : |
1871
1871
Determines whether to use an SSL connection when talking to the SMTP server.
1872
1872
version_added : ~
1873
- type : string
1873
+ type : boolean
1874
1874
example : ~
1875
1875
default : " False"
1876
1876
smtp_port :
1877
1877
description : |
1878
1878
Defines the port number on which Airflow connects to the SMTP server to send email notifications.
1879
1879
version_added : ~
1880
- type : string
1880
+ type : integer
1881
1881
example : ~
1882
1882
default : " 25"
1883
1883
smtp_mail_from :
@@ -1914,7 +1914,7 @@ sentry:
1914
1914
sentry_on :
1915
1915
description : Enable error reporting to Sentry
1916
1916
version_added : 2.0.0
1917
- type : string
1917
+ type : boolean
1918
1918
example : ~
1919
1919
default : " false"
1920
1920
sentry_dsn :
@@ -2225,7 +2225,7 @@ triggerer:
2225
2225
description : |
2226
2226
How many triggers a single Triggerer will run at once, by default.
2227
2227
version_added : 2.2.0
2228
- type : string
2228
+ type : integer
2229
2229
example : ~
2230
2230
default : " 1000"
2231
2231
job_heartbeat_sec :
@@ -2420,7 +2420,7 @@ dag_processor:
2420
2420
description : |
2421
2421
How long before timing out a DagFileProcessor, which processes a dag file
2422
2422
version_added : ~
2423
- type : string
2423
+ type : integer
2424
2424
example : ~
2425
2425
default : " 50"
2426
2426
print_stats_interval :
0 commit comments