| title | Copy data from Impala | ||
|---|---|---|---|
| description | Learn how to copy data from Impala to supported sink data stores using a copy activity in an Azure Data Factory or Synapse Analytics pipeline. | ||
| titleSuffix | Azure Data Factory & Azure Synapse | ||
| author | jianleishen | ||
| ms.subservice | data-movement | ||
| ms.topic | how-to | ||
| ms.date | 06/16/2025 | ||
| ms.author | jianleishen | ||
| ms.custom |
|
[!INCLUDEappliesto-adf-asa-md]
This article outlines how to use Copy Activity in an Azure Data Factory or Synapse Analytics pipeline to copy data from Impala. It builds on the Copy Activity overview article that presents a general overview of the copy activity.
Important
The Impala connector version 1.0 is at removal stage. You are recommended to upgrade the Impala connector from version 1.0 to 2.0.
This Impala connector is supported for the following capabilities:
| Supported capabilities | IR |
|---|---|
| Copy activity (source/-) | ① ② |
| Lookup activity | ① ② |
① Azure integration runtime ② Self-hosted integration runtime
For a list of data stores that are supported as sources or sinks by the copy activity, see the Supported data stores table.
The service provides a built-in driver to enable connectivity. Therefore, you don't need to manually install a driver to use this connector.
[!INCLUDE data-factory-v2-integration-runtime-requirements]
Note
Version 2.0 is supported with the self-hosted integration runtime version 5.55 or above.
[!INCLUDE data-factory-v2-connector-get-started]
Use the following steps to create a linked service to Impala in the Azure portal UI.
-
Browse to the Manage tab in your Azure Data Factory or Synapse workspace and select Linked Services, then click New:
:::image type="content" source="media/doc-common-process/new-linked-service.png" alt-text="Screenshot of creating a new linked service with Azure Data Factory UI.":::
:::image type="content" source="media/doc-common-process/new-linked-service-synapse.png" alt-text="Screenshot of creating a new linked service with Azure Synapse UI.":::
-
Search for Impala and select the Impala connector.
:::image type="content" source="media/connector-impala/impala-connector.png" alt-text="Screenshot of the Impala connector.":::
-
Configure the service details, test the connection, and create the new linked service.
:::image type="content" source="media/connector-impala/configure-impala-linked-service.png" alt-text="Screenshot of linked service configuration for Impala.":::
The following sections provide details about properties that are used to define Data Factory entities specific to the Impala connector.
The Impala connector now supports version 2.0. Refer to this section to upgrade your Impala connector version from version 1.0. For the property details, see the corresponding sections.
The Impala linked service supports the following properties when apply version 2.0:
| Property | Description | Required |
|---|---|---|
| type | The type property must be set to Impala. | Yes |
| version | The version that you specify. The value is 2.0. |
Yes |
| host | The IP address or host name of the Impala server (that is, 192.168.222.160). | Yes |
| port | The TCP port that the Impala server uses to listen for client connections. The default value is 21050. | No |
| thriftTransportProtocol | The transport protocol to use in the Thrift layer. Allowed values are: Binary, HTTP. The default value is Binary. | Yes |
| authenticationType | The authentication type to use. Allowed values are Anonymous and UsernameAndPassword. |
Yes |
| username | The user name used to access the Impala server. | No |
| password | The password that corresponds to the user name when you use UsernameAndPassword. Mark this field as a SecureString to store it securely, or reference a secret stored in Azure Key Vault. | No |
| enableSsl | Specifies whether the connections to the server are encrypted by using TLS. The default value is true. | No |
| enableServerCertificateValidation | Specify whether to enable server SSL certificate validation when you connect. Always use System Trust Store. The default value is true. | No |
| connectVia | The integration runtime to be used to connect to the data store. Learn more from Prerequisites section. If not specified, it uses the default Azure Integration Runtime. You can use the self-hosted integration runtime and its version should be 5.55 or above. | No |
Example:
{
"name": "ImpalaLinkedService",
"properties": {
"type": "Impala",
"version": "2.0",
"typeProperties": {
"host" : "<host>",
"port" : "<port>",
"authenticationType" : "UsernameAndPassword",
"username" : "<username>",
"password": {
"type": "SecureString",
"value": "<password>"
},
"enableSsl": true,
"thriftTransportProtocol": "Binary",
"enableServerCertificateValidation": true
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
}The following properties are supported for Impala linked service when apply version 1.0:
The following properties are supported for Impala linked service.
| Property | Description | Required |
|---|---|---|
| type | The type property must be set to Impala. | Yes |
| host | The IP address or host name of the Impala server (that is, 192.168.222.160). | Yes |
| port | The TCP port that the Impala server uses to listen for client connections. The default value is 21050. | No |
| authenticationType | The authentication type to use. Allowed values are Anonymous, SASLUsername, and UsernameAndPassword. |
Yes |
| username | The user name used to access the Impala server. The default value is anonymous when you use SASLUsername. | No |
| password | The password that corresponds to the user name when you use UsernameAndPassword. Mark this field as a SecureString to store it securely, or reference a secret stored in Azure Key Vault. | No |
| enableSsl | Specifies whether the connections to the server are encrypted by using TLS. The default value is false. | No |
| trustedCertPath | The full path of the .pem file that contains trusted CA certificates used to verify the server when you connect over TLS. This property can be set only when you use TLS on Self-hosted Integration Runtime. The default value is the cacerts.pem file installed with the integration runtime. | No |
| useSystemTrustStore | Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. | No |
| allowHostNameCNMismatch | Specifies whether to require a CA-issued TLS/SSL certificate name to match the host name of the server when you connect over TLS. The default value is false. | No |
| allowSelfSignedServerCert | Specifies whether to allow self-signed certificates from the server. The default value is false. | No |
| connectVia | The integration runtime to be used to connect to the data store. Learn more from Prerequisites section. If not specified, it uses the default Azure Integration Runtime. | No |
Example:
{
"name": "ImpalaLinkedService",
"properties": {
"type": "Impala",
"typeProperties": {
"host" : "<host>",
"port" : "<port>",
"authenticationType" : "UsernameAndPassword",
"username" : "<username>",
"password": {
"type": "SecureString",
"value": "<password>"
}
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
}For a full list of sections and properties available for defining datasets, see the Datasets article. This section provides a list of properties supported by the Impala dataset.
To copy data from Impala, set the type property of the dataset to ImpalaObject. The following properties are supported:
| Property | Description | Required |
|---|---|---|
| type | The type property of the dataset must be set to: ImpalaObject | Yes |
| schema | Name of the schema. | No (if "query" in activity source is specified) |
| table | Name of the table. | No (if "query" in activity source is specified) |
| tableName | Name of the table with schema. This property is supported for backward compatibility. Use schema and table for new workload. |
No (if "query" in activity source is specified) |
Example
{
"name": "ImpalaDataset",
"properties": {
"type": "ImpalaObject",
"typeProperties": {},
"schema": [],
"linkedServiceName": {
"referenceName": "<Impala linked service name>",
"type": "LinkedServiceReference"
}
}
}For a full list of sections and properties available for defining activities, see the Pipelines article. This section provides a list of properties supported by the Impala source type.
To copy data from Impala, set the source type in the copy activity to ImpalaSource. The following properties are supported in the copy activity source section.
| Property | Description | Required |
|---|---|---|
| type | The type property of the copy activity source must be set to ImpalaSource. | Yes |
| query | Use the custom SQL query to read data. An example is "SELECT * FROM MyTable". |
No (if "tableName" in dataset is specified) |
Example:
"activities":[
{
"name": "CopyFromImpala",
"type": "Copy",
"inputs": [
{
"referenceName": "<Impala input dataset name>",
"type": "DatasetReference"
}
],
"outputs": [
{
"referenceName": "<output dataset name>",
"type": "DatasetReference"
}
],
"typeProperties": {
"source": {
"type": "ImpalaSource",
"query": "SELECT * FROM MyTable"
},
"sink": {
"type": "<sink type>"
}
}
}
]When you copy data from and to Impala, the following interim data type mappings are used within the service. To learn about how the copy activity maps the source schema and data type to the sink, see Schema and data type mappings.
| Impala data type | Interim service data type (for version 2.0) | Interim service data type (for version 1.0) |
|---|---|---|
| ARRAY | String | String |
| BIGINT | Int64 | Int64 |
| BOOLEAN | Boolean | Boolean |
| CHAR | String | String |
| DATE | DateTime | DateTime |
| DECIMAL | Decimal | Decimal |
| DOUBLE | Double | Double |
| FLOAT | Single | Single |
| INT | Int32 | Int32 |
| MAP | String | String |
| SMALLINT | Int16 | Int16 |
| STRING | String | String |
| STRUCT | String | String |
| TIMESTAMP | DateTimeOffset | DateTime |
| TINYINT | SByte | Int16 |
| VARCHAR | String | String |
To learn details about the properties, check Lookup activity.
The following table shows the release stage and change logs for different versions of the Impala connector:
| Version | Release stage | Change log |
|---|---|---|
| Version 1.0 | Removed | Not applicable. |
| Version 2.0 | GA version available | • The self-hosted integration runtime version should be 5.55 or above. • The default value of enableSSL is true. enableServerCertificateValidation is supported.trustedCertPath, useSystemTrustStore, allowHostNameCNMismatch and allowSelfSignedServerCert are not supported. • TIMESTAMP is read as DateTimeOffset data type. • TINYINT is read as SByte data type. • SASLUsername authentication type is not supported. |
-
In Edit linked service page, select version 2.0 and configure the linked service by referring to Linked service properties version 2.0.
-
The data type mapping for the Impala linked service version 2.0 is different from that for the version 1.0. To learn the latest data type mapping, see Data type mapping for Impala.
-
Apply a self-hosted integration runtime with version 5.55 or above.
For a list of data stores supported as sources and sinks by the copy activity, see Supported data stores.