@@ -21,10 +21,10 @@ option java_package = "feast.core";
2121option java_outer_classname = "StoreProto" ;
2222option go_package = "github.com/gojek/feast/protos/generated/go/feast/core" ;
2323
24- // Store provides a location to which Feast reads and writes feature values.
24+ // Store provides a location where Feast reads and writes feature values.
2525// Feature values will be written to the Store in the form of FeatureRow elements.
2626// The way FeatureRow is encoded and decoded when it is written to and read from
27- // the store depends on the type of the Store.
27+ // the Store depends on the type of the Store.
2828//
2929// For example, a FeatureRow will materialize as a row in a table in
3030// BigQuery but it will materialize as a key, value pair element in Redis.
@@ -71,7 +71,7 @@ message Store {
7171 // - created_timestamp | TIMESTAMP | processing time of the ingestion of the FeatureRow
7272 // - job_id | STRING | identifier for the job that writes the FeatureRow to the corresponding BigQuery table
7373 //
74- // BigQuery table created will be partitioned by the event_timestamp field
74+ // BigQuery table created will be partitioned by the field "event_timestamp"
7575 // of the FeatureRow (https://cloud.google.com/bigquery/docs/partitioned-tables).
7676 //
7777 // Since newer version of feature set can introduce breaking, non backward-
@@ -98,7 +98,7 @@ message Store {
9898 // FLOAT_LIST : ARRAY
9999 // BOOL_LIST : ARRAY
100100 //
101- // The column mode in BigQuery is set to Nullable such that unset Value
101+ // The column mode in BigQuery is set to " Nullable" such that unset Value
102102 // in a FeatureRow corresponds to NULL value in BigQuery.
103103 //
104104 BIGQUERY = 2 ;
0 commit comments