Skip to content

Commit

Permalink
docs: Add Hive as a supported data source to docs (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldeleo committed Dec 17, 2021
1 parent ad7f1fc commit be2a49d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
15 changes: 15 additions & 0 deletions docs/connections.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down Expand Up @@ -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"
}
```

0 comments on commit be2a49d

Please sign in to comment.