Skip to content

Commit

Permalink
Revert "Revert "docs: Add Hive as a supported data source to docs (Go…
Browse files Browse the repository at this point in the history
…ogleCloudPlatform#354)""

This reverts commit f2f2bdb.
  • Loading branch information
mrriteshranjan committed Dec 31, 2021
1 parent 66e52c0 commit c7d26e1
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 @@ -260,3 +261,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 c7d26e1

Please sign in to comment.