File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
docs/reference/offline-stores Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,47 @@ offline_store:
2727 catalog : memory
2828 connector :
2929 type : memory
30+ user : trino
31+ source : feast-trino-offline-store
32+ http-scheme : https
33+ ssl-verify : false
34+ x-trino-extra-credential-header : foo=bar, baz=qux
35+
36+ # enables authentication in Trino connections, pick the one you need
37+ # if you don't need authentication, you can safely remove the whole auth block
38+ auth :
39+ # Basic Auth
40+ type : basic
41+ config :
42+ username : foo
43+ password : $FOO
44+
45+ # Certificate
46+ type : certificate
47+ config :
48+ cert-file : /path/to/cert/file
49+ key-file : /path/to/key/file
50+
51+ # JWT
52+ type : jwt
53+ config :
54+ token : $JWT_TOKEN
55+
56+ # OAuth2 (no config required)
57+ type : oauth2
58+
59+ # Kerberos
60+ type : kerberos
61+ config :
62+ config-file : /path/to/kerberos/config/file
63+ service-name : foo
64+ mutual-authentication : true
65+ force-preemptive : true
66+ hostname-override : custom-hostname
67+ sanitize-mutual-error-response : true
68+ principal : principal-name
69+ delegate : true
70+ ca_bundle : /path/to/ca/bundle/file
3071online_store :
3172 path : data/online_store.db
3273` ` `
You can’t perform that action at this time.
0 commit comments