-
Notifications
You must be signed in to change notification settings - Fork 998
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tracing to continue from existing trace created by grpc client (#245
) * Fix tracing to continue from existing trace created by grpc client * Update python SDK with updated protos in Feast 0.1.x Removal of storage specs * Add __init__ file in feast/types to fix module not found error * Add support to configure import job metrics in Feast Core * Fix CoreApplicationWithNoWarehouseTest * Update charts Add import job metrics configuration Update jaeger tracing configuration for serving * Add lazy annotation in getBigQueryTrainingDatasetTemplater in TrainingConfig to resolve circular dependency * Use provided values for INGESTION_METRICS_ENABLED * Add Python mypy definition * Increase version of google-cloud-storage in python sdk * Update docs for influx_db_url field in ImportJobSpecs proto * Write feature metrics in fixed window for better performance * Update default image in Helm chart * Write feature metrics only if the job type is streaming * Set transform name for writing feature metrics to Influx DB * Update chart, making resources limit optional Following how stable postgresql chart specifies it https://github.com/helm/charts/blob/master/stable/postgresql/values.yaml * Fix the check for unbounded sources Check against the ImportSpec.Type value (kafka or pubsub) instead of PipelineOptions.Streaming (the streaming status cannot be reliably determined at pipeline creation stage) * Fix typo * Update default Feast image tag used in the chart
- Loading branch information
1 parent
835c81e
commit dd216c2
Showing
43 changed files
with
516 additions
and
404 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
apiVersion: v1 | ||
appVersion: "0.1.4" | ||
appVersion: "0.1.7" | ||
description: A Helm chart to install Feast on kubernetes | ||
name: feast | ||
version: 0.1.2 | ||
version: 0.1.4 |
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
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
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
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
13 changes: 13 additions & 0 deletions
13
core/src/main/java/feast/core/config/ImportJobMetricsConfig.java
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,13 @@ | ||
package feast.core.config; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class ImportJobMetricsConfig { | ||
private final boolean ingestionMetricsEnabled; | ||
private final String influxDbUrl; | ||
private final String influxDbName; | ||
private final String influxDbMeasurementName; | ||
} |
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
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
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
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
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
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
Oops, something went wrong.