title | description | services | documentationcenter | author | manager | ms.reviewer | ms.service | ms.workload | ms.tgt_pltfrm | ms.devlang | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Copy data from HBase using Azure Data Factory | Microsoft Docs |
Learn how to copy data from HBase to supported sink data stores by using a copy activity in an Azure Data Factory pipeline. |
data-factory |
linda33wj |
craigg |
douglasl |
data-factory |
data-services |
na |
na |
conceptual |
04/19/2018 |
jingwang |
This article outlines how to use the Copy Activity in Azure Data Factory to copy data from HBase. It builds on the copy activity overview article that presents a general overview of copy activity.
You can copy data from HBase to any supported sink data store. For a list of data stores that are supported as sources/sinks by the copy activity, see the Supported data stores table.
Azure Data Factory provides a built-in driver to enable connectivity, therefore you don't need to manually install any driver using this connector.
[!INCLUDE data-factory-v2-connector-get-started]
The following sections provide details about properties that are used to define Data Factory entities specific to HBase connector.
The following properties are supported for HBase linked service:
Property | Description | Required |
---|---|---|
type | The type property must be set to: HBase | Yes |
host | The IP address or host name of the HBase server. (i.e. [clustername].azurehdinsight.net , `192.168.222.160·) |
Yes |
port | The TCP port that the HBase instance uses to listen for client connections. The default value is 9090. If you connect to Azure HDInsights, specify port as 443. | No |
httpPath | The partial URL corresponding to the HBase server, e.g. /hbaserest0 when using HDInsights cluster. |
No |
authenticationType | The authentication mechanism to use to connect to the HBase server. Allowed values are: Anonymous, Basic |
Yes |
username | The user name used to connect to the HBase instance. | No |
password | The password corresponding to the user name. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. | No |
enableSsl | Specifies whether the connections to the server are encrypted using SSL. The default value is false. | No |
trustedCertPath | The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. | No |
allowHostNameCNMismatch | Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. 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. You can use Self-hosted Integration Runtime or Azure Integration Runtime (if your data store is publicly accessible). If not specified, it uses the default Azure Integration Runtime. | No |
Note
If your cluster doesn't support sticky session e.g. HDInsight, explicitly add node index at the end of the http path setting, e.g. specify /hbaserest0
instead of /hbaserest
.
Example for HDInsights HBase:
{
"name": "HBaseLinkedService",
"properties": {
"type": "HBase",
"typeProperties": {
"host" : "<cluster name>.azurehdinsight.net",
"port" : "443",
"httpPath" : "/hbaserest0",
"authenticationType" : "Basic",
"username" : "<username>",
"password": {
"type": "SecureString",
"value": "<password>"
},
"enableSsl" : true
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
}
Example for generic HBase:
{
"name": "HBaseLinkedService",
"properties": {
"type": "HBase",
"typeProperties": {
"host" : "<host e.g. 192.168.222.160>",
"port" : "<port>",
"httpPath" : "<e.g. /gateway/sandbox/hbase/version>",
"authenticationType" : "Basic",
"username" : "<username>",
"password": {
"type": "SecureString",
"value": "<password>"
},
"enableSsl" : true,
"trustedCertPath" : "<trustedCertPath>",
"allowHostNameCNMismatch" : true,
"allowSelfSignedServerCert" : true
},
"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 HBase dataset.
To copy data from HBase, set the type property of the dataset to HBaseObject. There is no additional type-specific property in this type of dataset.
Example
{
"name": "HBaseDataset",
"properties": {
"type": "HBaseObject",
"linkedServiceName": {
"referenceName": "<HBase 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 HBase source.
To copy data from HBase, set the source type in the copy activity to HBaseSource. 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: HBaseSource | Yes |
query | Use the custom SQL query to read data. For example: "SELECT * FROM MyTable" . |
Yes |
Example:
"activities":[
{
"name": "CopyFromHBase",
"type": "Copy",
"inputs": [
{
"referenceName": "<HBase input dataset name>",
"type": "DatasetReference"
}
],
"outputs": [
{
"referenceName": "<output dataset name>",
"type": "DatasetReference"
}
],
"typeProperties": {
"source": {
"type": "HBaseSource",
"query": "SELECT * FROM MyTable"
},
"sink": {
"type": "<sink type>"
}
}
}
]
For a list of data stores supported as sources and sinks by the copy activity in Azure Data Factory, see supported data stores.