Skip to content

Commit bfb4d67

Browse files
committed
Update proto for import job specs
1 parent 8d7d49a commit bfb4d67

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

protos/feast/specs/ImportJobSpecs.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,19 @@ message ImportJobSpecs {
3535
StorageSpec servingStorageSpec = 5;
3636
StorageSpec warehouseStorageSpec = 6;
3737
StorageSpec errorsStorageSpec = 7;
38+
39+
// The following options below are only valid in Feast 0.1.x
40+
// ============================================================
41+
42+
// write_feature_metrics_to_influx_db determines if Feast should write feature metrics
43+
// (such as lag and value summaries) to Influx DB. If this field is true, the next three fields:
44+
// influx_db_url, influx_db_database, influx_db_measurement should be set as well.
45+
bool write_feature_metrics_to_influx_db = 8;
46+
// influx_db_url is the url for Feast to connect to Influx DB. Example: http://localhost:8086
47+
string influx_db_url = 9;
48+
// influx_db_database is the name of the Influx DB database for the metrics.
49+
string influx_db_database = 10;
50+
// influx_db_measurement is the name of measurement that will contain the metrics data.
51+
// Ref: https://docs.influxdata.com/influxdb/v1.7/concepts/key_concepts/#measurement
52+
string influx_db_measurement = 11;
3853
}

0 commit comments

Comments
 (0)