Configuration¶
This section describes how to configure the Informatica provider for Apache Airflow.
Connection Setup¶
Create an HTTP connection in Airflow for Informatica EDC:
Connection Type:
informatica_edcHost: Your EDC server hostname
Port: EDC server port (typically 9087)
Schema:
httpsorhttpLogin: EDC username
Password: EDC password
Extras: Add the following JSON:
{"security_domain": "your_security_domain"}
Configuration Options¶
Add to your airflow.cfg:
[informatica]
# Disable sending events without uninstalling the Informatica Provider
disabled = False
# The connection ID to use when no connection ID is provided
default_conn_id = informatica_edc_default
Provider Configuration¶
The provider configuration is defined in get_provider_info.py and includes:
disabled: Boolean flag to disable the provider without uninstallingdefault_conn_id: Default connection ID for Informatica EDC
SSL and Security¶
The connection supports SSL verification control through extras:
{
"security_domain": "your_domain",
"verify_ssl": true
}
Set verify_ssl to false to disable SSL certificate verification.