We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Expected behavior when the following environment variables are set:
FEAST_SPARK_STAGING_LOCATION=s3://... FEAST_SPARK_LAUNCHER="emr" FEAST_EMR_CLUSTER_ID="" FEAST_EMR_LOG_LOCATION=""
No Spark job is submitted to the EMR cluster. The code exits silently without any indication of success or failure of the materialization.
RepoConfig:
{ "project": "", "registry": "s3://", "provider": "aws", "entity_key_serialization_version": 2, "online_store": { "type": "dynamodb", "region": "us-west-2" }, "offline_store": { "type": "spark", "region": "us-west-2", "staging_location": "s3://", "spark_conf": { "spark.master":"", "spark.ui.enabled": "true", "spark.eventLog.enabled": "false", "spark.sql.catalogImplementation": "hive", "spark.sql.parser.quotedRegexColumnNames": "true", "spark.sql.session.timeZone": "UTC", "spark.jars.packages": "org.apache.hadoop:hadoop-aws:3.3.1" } }, "batch_engine": { "type": "spark.engine" } }
feast = { extras = ["aws", "gcp", "spark"], version = "==0.42.0" }
The only code reference found for the constant FEAST_SPARK_LAUNCHER dates back four years and is located here:
FEAST_SPARK_LAUNCHER
feast/infra/terraform/aws/helm.tf
Line 93 in dc2c1dc
Are the EMR-related constants working in the current FEAST version (0.42.0)?
# EMR cluster to run Feast Spark Jobs in EMR_CLUSTER_ID: Optional[str] = None # Region of EMR cluster EMR_REGION: Optional[str] = None # Template path of EMR cluster EMR_CLUSTER_TEMPLATE_PATH: Optional[str] = None # Log path of EMR cluster EMR_LOG_LOCATION: Optional[str] = None
References:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Expected behavior when the following environment variables are set:
Current Behavior
No Spark job is submitted to the EMR cluster. The code exits silently without any indication of success or failure of the materialization.
Steps to reproduce
RepoConfig:
Specifications
feast = { extras = ["aws", "gcp", "spark"], version = "==0.42.0" }
Possible Solution
The only code reference found for the constant
FEAST_SPARK_LAUNCHER
dates back four years and is located here:feast/infra/terraform/aws/helm.tf
Line 93 in dc2c1dc
Are the EMR-related constants working in the current FEAST version (0.42.0)?
References:
The text was updated successfully, but these errors were encountered: