providers/informatica/docs/guides/configuration.rst
.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
.. http://www.apache.org/licenses/LICENSE-2.0
.. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
This section describes how to configure the Informatica provider for Apache Airflow.
Create an HTTP connection in Airflow for Informatica EDC:
Connection Type: informatica_edc
Host: Your EDC server hostname
Port: EDC server port (typically 9087)
Schema: https or http
Login: EDC username
Password: EDC password
Extras: Add the following JSON:
.. code-block:: json
{"security_domain": "your_security_domain"}
Add to your airflow.cfg:
.. code-block:: ini
[informatica]
# Disable sending events without uninstalling the Informatica Provider
listener_disabled = False
# The connection ID to use when no connection ID is provided
default_conn_id = informatica_edc_default
The provider configuration is defined in get_provider_info.py and includes:
listener_disabled: Boolean flag to disable sending events without uninstalling the providerdefault_conn_id: Default connection ID for Informatica EDCThe connection supports SSL verification control through extras:
.. code-block:: json
{
"security_domain": "your_domain",
"verify_ssl": true
}
Set verify_ssl to false to disable SSL certificate verification.