-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add Template for Couchbase Online Store (#4836)
Add Template for Couchbase Online Store Signed-off-by: Elliot Scribner <[email protected]>
- Loading branch information
1 parent
b4768a8
commit 88a92cf
Showing
5 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
11 changes: 11 additions & 0 deletions
11
sdk/python/feast/templates/couchbase/feature_repo/feature_store.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
project: my_project | ||
registry: /path/to/registry.db | ||
provider: local | ||
online_store: | ||
type: couchbase | ||
connection_string: COUCHBASE_CONNECTION_STRING # Couchbase connection string, copied from 'Connect' page in Couchbase Capella console | ||
user: COUCHBASE_USER # Couchbase username from database access credentials | ||
password: COUCHBASE_PASSWORD # Couchbase password from database access credentials | ||
bucket_name: COUCHBASE_BUCKET_NAME # Couchbase bucket name, defaults to feast | ||
kv_port: COUCHBASE_KV_PORT # Couchbase key-value port, defaults to 11210. Required if custom ports are used. | ||
entity_key_serialization_version: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*.pyo | ||
*.pyd | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
*.egg-info/ | ||
dist/ | ||
build/ | ||
.venv | ||
|
||
# Pytest | ||
.cache | ||
*.cover | ||
*.log | ||
.coverage | ||
nosetests.xml | ||
coverage.xml | ||
*.hypothesis/ | ||
*.pytest_cache/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IDEs and Editors | ||
.vscode/ | ||
.idea/ | ||
*.swp | ||
*.swo | ||
*.sublime-workspace | ||
*.sublime-project | ||
|
||
# OS generated files | ||
.DS_Store | ||
Thumbs.db |