Skip to content

Commit ccc099b

Browse files
author
Tsotne Tabidze
committed
Add dynamo benchmarks
1 parent 8c64c91 commit ccc099b

File tree

6 files changed

+728
-3
lines changed

6 files changed

+728
-3
lines changed

python/docker/dynamo/Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM python:3.9
2+
3+
RUN pip3 install 'feast[aws]==0.17.0'
4+
# RUN pip3 install 'git+https://github.com/feast-dev/feast.git@1b98ec94e3573991627d561d6d207126a40a21cf#subdirectory=sdk/python'
5+
RUN pip3 install 'git+https://github.com/feast-dev/feast.git@master#subdirectory=sdk/python'
6+
7+
8+
COPY feature_repos/dynamo feature_repo
9+
10+
WORKDIR feature_repo
11+
12+
ENV FEAST_USAGE=False
13+
14+
CMD feast serve --host "0.0.0.0" --port 6566
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
services:
2+
feast:
3+
build:
4+
context: ..
5+
dockerfile: docker/Dockerfile
6+
ports:
7+
- "6566-6581:6566"
8+
deploy:
9+
replicas: 16
10+
volumes:
11+
- ~/.aws:/root/.aws:ro
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.9
22

3-
RUN pip3 install 'feast[aws,redis]==0.17.0'
3+
RUN pip3 install 'feast[redis]==0.17.0'
44
# RUN pip3 install 'git+https://github.com/feast-dev/feast.git@1b98ec94e3573991627d561d6d207126a40a21cf#subdirectory=sdk/python'
55
RUN pip3 install 'git+https://github.com/feast-dev/feast.git@master#subdirectory=sdk/python'
66

0 commit comments

Comments
 (0)