Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add basic customer transactions example #354

Merged
merged 8 commits into from
Dec 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .prow/scripts/test-python-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ set -e
LOGS_ARTIFACT_PATH=/logs/artifacts

cd sdk/python
pip install -r requirements-test.txt
pip install -r requirements-ci.txt
pip install .
pytest --junitxml=${LOGS_ARTIFACT_PATH}/python-sdk-test-report.xml
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,4 @@ clean-html:

build-html:
mkdir -p $(PROJECT_ROOT)/dist/python
cd $(PROJECT_ROOT)/sdk/python/docs && $(MAKE) html
cp -r $(PROJECT_ROOT)/sdk/python/docs/html/* $(PROJECT_ROOT)/dist/python
10 changes: 10 additions & 0 deletions examples/basic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Feast Basic Customer Transactions Example

This is a minimal example of using Feast. In this example we will
1. Create a synthetic customer feature dataset
2. Register a feature set to represent these features in Feast
3. Ingest these features into Feast
4. Create a feature query to retrieve historical feature data
5. Create a feature query to retrieve online feature data

Please ensure that Feast is already installed and running before starting this example.
Loading