From be2a49d8849982f8f75f4bddc607e744b52ec180 Mon Sep 17 00:00:00 2001 From: Daniel De Leo Date: Thu, 16 Dec 2021 23:52:55 -0500 Subject: [PATCH] docs: Add Hive as a supported data source to docs (#354) --- README.md | 1 + docs/connections.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/README.md b/README.md index 49382f2c4..d6ff3fe72 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ DVT supports the following connection types: * [Redshift](docs/connections.md#redshift) * [FileSystem](docs/connections.md#filesystem) * [Impala](docs/connections.md#impala) +* [Hive](docs/connections.md#hive) The [Connections](docs/connections.md) page provides details about how to create and list connections for the validation tool. diff --git a/docs/connections.md b/docs/connections.md index 0b7a316d5..249fca59f 100644 --- a/docs/connections.md +++ b/docs/connections.md @@ -52,6 +52,7 @@ The data validation tool supports the following connection types. * [Redshift](#redshift) * [FileSystem](#filesystem) * [Impala](#Impala) +* [Hive](#Hive) As you see above, Teradata and BigQuery have different sets of custom arguments (for example project_id for BQ versus host for Teradata). @@ -261,3 +262,17 @@ Then `pip install pyodbc`. "auth_mechanism":"PLAIN" } ``` + +## Hive +``` +{ + # Hive is based off Impala connector + "source_type": "Impala", + + # Connection Details + "host": "HIVE_IP_ADDRESS", + "port": 10000, + "database": "default", + "auth_mechanism":"PLAIN" +} +```