-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env_example
46 lines (39 loc) · 1.51 KB
/
.env_example
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
AIRFLOW_CONN_AWS_CONN='{
"conn_type": "aws",
"login": "<your_access_key>",
"password": "<your_secret_key>",
}'
AIRFLOW_CONN_SLACK_CONN='{
"conn_type": "slack",
"password": "xoxb-<your_token>",
}'
AIRFLOW_CONN_SNOWFLAKE_DE_TEAM='{
"conn_type":"snowflake",
"login":"<your_username>",
"password":"<your_password>",
"schema":"<your_schema>",
"extra":
{
"account":"<your_account>",
"warehouse":"<your_warehouse>",
"database":"<your_database>",
"region":"<your_region>",
"role":"<your_role>",
"authenticator":"snowflake",
"session_parameters":null,
"application":"AIRFLOW"
}
}'
AIRFLOW_CONN_AWS_DE_TEAM='{
"conn_type": "aws",
"login": "<your_access_key>",
"password": "<your_secret_key>",
}'
# Object Storage XCom Backend
AIRFLOW__CORE__XCOM_BACKEND="airflow.providers.common.io.xcom.backend.XComObjectStorageBackend"
# Select one of the 3 options below and provide your values
AIRFLOW__COMMON_IO__XCOM_OBJECTSTORAGE_PATH="s3://<your-aws-conn-id>@<your-bucket-name>/xcom/"
# AIRFLOW__COMMON_IO__XCOM_OBJECTSTORAGE_PATH="gs://<your-gcp-conn-id>@<your-bucket-name>/xcom"
# AIRFLOW__COMMON_IO__XCOM_OBJECTSTORAGE_PATH="abfs://<your-azure-conn-id>@<your-storage-account-name>/<your-bucket-name>/xcom"
AIRFLOW__COMMON_IO__XCOM_OBJECTSTORAGE_THRESHOLD="1000" # XCom 1KB or higher will be stored in the object store
AIRFLOW__COMMON_IO__XCOM_OBJECTSTORAGE_COMPRESSION="zip" # optional