Skip to content

Commit

Permalink
docs: Add new connection parameters to Trino Offline Store's reference
Browse files Browse the repository at this point in the history
Signed-off-by: boliri <boliri@pm.me>
  • Loading branch information
boliri committed Jul 26, 2023
1 parent ff40613 commit 12dc3fd
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/reference/offline-stores/trino.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,47 @@ offline_store:
catalog: memory
connector:
type: memory
user: trino
source: feast-trino-offline-store
http-scheme: https
ssl-verify: false
x-trino-extra-credential-header: foo=bar, baz=qux

# enables authentication in Trino connections, pick the one you need
# if you don't need authentication, you can safely remove the whole auth block
auth:
# Basic Auth
type: basic
config:
username: foo
password: $FOO

# Certificate
type: certificate
config:
cert-file: /path/to/cert/file
key-file: /path/to/key/file

# JWT
type: jwt
config:
token: $JWT_TOKEN

# OAuth2 (no config required)
type: oauth2

# Kerberos
type: kerberos
config:
config-file: /path/to/kerberos/config/file
service-name: foo
mutual-authentication: true
force-preemptive: true
hostname-override: custom-hostname
sanitize-mutual-error-response: true
principal: principal-name
delegate: true
ca_bundle: /path/to/ca/bundle/file
online_store:
path: data/online_store.db
```
Expand Down

0 comments on commit 12dc3fd

Please sign in to comment.