feast-aws-credit-scoring-tutorial icon indicating copy to clipboard operation
feast-aws-credit-scoring-tutorial copied to clipboard

Feast AWS guide using Redshift / Spectrum / DynamoDB to build a credit scoring model

Results 7 feast-aws-credit-scoring-tutorial issues
Sort by recently updated
recently updated
newest added
trafficstars

(base) [ec2-user@ip-10-0-0-231 infra]$ terraform plan -var="admin_password=Ray123" ╷ │ Warning: Argument is deprecated │ │ with aws_s3_bucket.feast_bucket, │ on main.tf line 3, in resource "aws_s3_bucket" "feast_bucket": │ 3: acl = "private"...

- README : pip install feast[aws] - README : set project name (s3 bucket conflict) - add aws_glue_catalog_database to Terraform - export Terraform variables and outputs in env vars (connection...

# Environment FEAST 0.51 Python 3.11 MacOS (Apple Silicon) # Issue ``` credit_history = FeatureView( name="credit_history", entities=["dob_ssn"], ttl=timedelta(days=90), features=[ #

# Environment ``` FEAST 0.51 Python 3.11 MacOS (Apple Silicon) ``` # Issue After fixing the issue https://github.com/feast-dev/feast-aws-credit-scoring-tutorial/issues/9 and successful ```feast apply```: ``` $ feast apply No project found in...

# Environment FEAST 0.51 Python 3.11 MacOS (Apple Silicon) # Issue ``` $ feast apply Traceback (most recent call last): File "/Users/onishima/venv/feast/bin/feast", line 8, in sys.exit(cli()) ^^^^^ File "/Users/onishima/venv/feast/lib/python3.11/site-packages/click/core.py", line...

There is no more argument event_timestamp_column in [RedshiftSource as in the latest FEAST](https://rtd.feast.dev/en/master/feast.html#feast.RedshiftSource). Hence, ```feast apply``` step fails at feature_repo/features.py. ``` credit_history_source = RedshiftSource( query="SELECT * FROM spectrum.credit_history", # API...