File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed
java/serving/src/test/resources/docker-compose/feast10 Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 44
55# feast root directory is expected to be mounted (eg, by docker compose)
66cd /mnt/feast
7- pip install -e ' .[redis]'
7+ pip install -e ' .[grpcio, redis]'
88
99cd /app
1010python materialize.py
11- feast serve_transformations --port 8080
11+ feast serve_transformations --port 8080
Original file line number Diff line number Diff line change 4444 "click>=7.0.0,<9.0.0" ,
4545 "colorama>=0.3.9,<1" ,
4646 "dill~=0.3.0" ,
47- "grpcio>=1.56.2,<2" ,
48- "grpcio-tools>=1.56.2,<2" ,
49- "grpcio-reflection>=1.56.2,<2" ,
50- "grpcio-health-checking>=1.56.2,<2" ,
5147 "mypy-protobuf==3.1" ,
5248 "Jinja2>=2,<4" ,
5349 "jsonschema" ,
143139
144140IBIS_REQUIRED = [
145141 "ibis-framework" ,
146- "ibis-substrait"
142+ "ibis-substrait" ,
143+ ]
144+
145+ GRPCIO_REQUIRED = [
146+ "grpcio>=1.56.2,<2" ,
147+ "grpcio-tools>=1.56.2,<2" ,
148+ "grpcio-reflection>=1.56.2,<2" ,
149+ "grpcio-health-checking>=1.56.2,<2" ,
147150]
148151
149152DUCKDB_REQUIRED = [
209212 + ROCKSET_REQUIRED
210213 + HAZELCAST_REQUIRED
211214 + IBIS_REQUIRED
215+ + GRPCIO_REQUIRED
212216)
213217
214218
@@ -375,6 +379,7 @@ def run(self):
375379 "docs" : DOCS_REQUIRED ,
376380 "cassandra" : CASSANDRA_REQUIRED ,
377381 "hazelcast" : HAZELCAST_REQUIRED ,
382+ "grpcio" : GRPCIO_REQUIRED ,
378383 "rockset" : ROCKSET_REQUIRED ,
379384 "ibis" : IBIS_REQUIRED ,
380385 "duckdb" : DUCKDB_REQUIRED
You can’t perform that action at this time.
0 commit comments