Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #19 from fishtown-analytics/feature/update-readme-…
Browse files Browse the repository at this point in the history
…0160

Update readme (0.16.0)
  • Loading branch information
jtcohen6 authored Apr 7, 2020
2 parents f0ddbd7 + 3914b6e commit 30d127b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## dbt-presto ([docs](https://docs.getdbt.com/docs/profile-presto#section-required-configuration))
## dbt-presto

### Documentation
For more information on using Spark with dbt, consult the dbt documentation:
- [Presto profile](https://docs.getdbt.com/docs/profile-presto)

### Installation
This plugin can be installed via pip:
Expand All @@ -12,7 +16,9 @@ A dbt profile can be configured to run against Presto using the following config

| Option | Description | Required? | Example |
|---------|----------------------------------------------------|-------------------------|--------------------------|
| method | The Presto authentication method to use | Optional(default=`none`) | `none`|`kerberos` |
| method | The Presto authentication method to use | Optional (default=`none`) | `none`|`kerberos` |
| user | Username for authentication | Required | `none`|`drew` |
| password | Password for authentication | Optional (required if `method` is `ldap|kerberos`) | `none`|`abc123` |
| database | Specify the database to build models into | Required | `analytics` |
| schema | Specify the schema to build models into | Required | `dbt_drew` |
| host | The hostname to connect to | Required | `127.0.0.1` |
Expand All @@ -28,11 +34,11 @@ my-presto-db:
outputs:
dev:
type: presto
method: none
user: drew
host: 127.0.0.1
port: 8080
database: analytics
schema: dbt_dbanin
schema: dbt_drew
threads: 8
```

Expand Down

0 comments on commit 30d127b

Please sign in to comment.