Skip to content

Commit b1da937

Browse files
author
Tsotne Tabidze
committed
Update redis benchmarks
1 parent 29e84ea commit b1da937

File tree

5 files changed

+531
-385
lines changed

5 files changed

+531
-385
lines changed

python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ sed -i 's/localhost:6379/redis:6379/g' feature_store.yaml # make sure to change
5959
4. Run Benchmarks
6060
```
6161
cd ../..
62-
RUN_TIME=1m ./run-benchmark.sh
62+
./run-benchmark.sh
6363
```
6464

6565
## AWS DynamoDB

python/docker/redis/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM python:3.9
22

33
RUN pip3 install 'feast[redis]==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-
4+
# Remove after feast 0.18 comes out
5+
RUN pip3 install 'git+https://github.com/feast-dev/feast.git@9f2c6d6168bac1b11be2c76c6b266a7444fc11c7#subdirectory=sdk/python'
6+
RUN pip3 install 'redis>=4.1.0'
77

88
COPY feature_repos/redis feature_repo
99

python/docker/redis/docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ services:
1111
- redis
1212
redis:
1313
image: redis
14+
ports:
15+
- "6379:6379"

0 commit comments

Comments
 (0)