# Feast Feature Store Configuration for Suno Recommendations - PROD
project: suno_recs_prod
provider: local

# Registry stores feature definitions
registry:
  registry_store_type: S3RegistryStore
  # Prod registry path
  path: s3://suno-recs-ml-artifacts/feast-registry/prod/registry.db

# Online store for low-latency feature serving
online_store:
  type: redis
  # For production, use REDIS_RECS_URL:
  connection_string: ${REDIS_RECS_URL}

# Offline store - Snowflake for training data
offline_store:
  type: snowflake.offline
  account: ccntdmk-suno
  user: DELPHINE  # Update with prod user
  private_key_content: "${SNOWFLAKE_PRIVATE_KEY}"
  role: ACCOUNTADMIN
  warehouse: DBT_PROD_MEDIUM  # Update with prod warehouse
  database: SUNO_PROD
  schema: PROD

entity_key_serialization_version: 2

