Skip to content

Commit a3b735c

Browse files
committed
Fix default cassandra store config on application.yml
Signed-off-by: Khor Shu Heng <khor.heng@gojek.com>
1 parent 881a9c5 commit a3b735c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

serving/src/main/resources/application.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
feast:
22
# GRPC service address for Feast Core
33
# Feast Serving requires connection to Feast Core to retrieve and reload Feast metadata (e.g. FeatureSpecs, Store information)
4-
core-host: ${FEAST_CORE_HOST:localhost}
5-
core-grpc-port: ${FEAST_CORE_GRPC_PORT:6565}
4+
core-host: ${FEAST_CORE_HOST:core.d.feast.golabs.io}
5+
core-grpc-port: ${FEAST_CORE_GRPC_PORT:15010}
66

77
core-authentication:
8-
enabled: false # should be set to true if authentication is enabled on core.
8+
enabled: true # should be set to true if authentication is enabled on core.
99
provider: google # can be set to `oauth` or `google`
1010
# if google, GOOGLE_APPLICATION_CREDENTIALS environment variable should be set.
1111
options:
@@ -21,7 +21,7 @@ feast:
2121

2222
# Indicates the active store. Only a single store in the last can be active at one time. In the future this key
2323
# will be deprecated in order to allow multiple stores to be served from a single serving instance
24-
active_store: online
24+
active_store: cassandra
2525

2626
security:
2727
authentication:
@@ -62,8 +62,7 @@ feast:
6262
- name: cassandra
6363
type: CASSANDRA
6464
config:
65-
host: localhost
66-
port: 9042
65+
connection_string: localhost:9042
6766
data_center: datacenter1
6867
keyspace: feast
6968
tracing:

0 commit comments

Comments
 (0)