From 5f1c6911f6359b7c6b9064d89e38bc83b3da6207 Mon Sep 17 00:00:00 2001 From: Hongbo Miao <3375461+hongbo-miao@users.noreply.github.com> Date: Thu, 26 Dec 2024 19:20:22 -0800 Subject: [PATCH] feat(valkey): add valkey (#21971) --- README.md | 9 ++++++--- data-storage/valkey/Makefile | 6 ++++++ 2 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 data-storage/valkey/Makefile diff --git a/README.md b/README.md index a1f63753db..1b142c5c13 100644 --- a/README.md +++ b/README.md @@ -235,7 +235,7 @@ The diagram illustrates the repository's architecture, which is considered overl - **Trino** - Distributed SQL query engine - **PostgreSQL** - Object-relational database - - **Postgres Operator** - PostgreSQL high-availability (HA) template + - **Patroni** - PostgreSQL high-availability (HA) template - **Postgres Operator** - PostgreSQL cluster provisioning - **pgAdmin** - PostgreSQL management tool - **MySQL** - Relational database @@ -248,6 +248,10 @@ The diagram illustrates the repository's architecture, which is considered overl - **InfluxDB** - Distributed time-series database - **Loki** - Log aggregation system - **DuckDB** - Embedded analytical SQL database +- **RocksDB** - Embedded key-value store +- **Redis** - Distributed in-memory key-value store + - **Valkey** - Fork of Redis + - **KeyDB** - Multithreaded fork of Redis - **Apache Cassandra** - Distributed wide-column NoSQL database - **LanceDB** - Embedded vector database - **Qdrant** - Distributed vector database @@ -255,8 +259,6 @@ The diagram illustrates the repository's architecture, which is considered overl - **Dgraph** - Distributed graph database - **Elasticsearch** - Distributed document-oriented search engine - **Kibana** - Elasticsearch visualization -- **Redis** - Distributed in-memory key–value database - - **KeyDB** - Multithreaded fork of Redis - **MinIO** - Object storage - **Apache ZooKeeper** - Distributed coordination system - **Apache Hadoop** - Software utility collection @@ -405,6 +407,7 @@ The diagram illustrates the repository's architecture, which is considered overl - **Lightning** - Deep Learning framework - **NeuralForecast** - Neural forecasting - **Transformers** - Machine learning models +- **Faiss** - Vector search and similarity library - **Gradio** - Machine learning web application building - **Streamlit** - Data web application building - **AutoGluon** - Automated machine learning (AutoML) library diff --git a/data-storage/valkey/Makefile b/data-storage/valkey/Makefile new file mode 100644 index 0000000000..93bf50a0ed --- /dev/null +++ b/data-storage/valkey/Makefile @@ -0,0 +1,6 @@ +valkey-run: + docker run \ + --detach \ + --name=hm-valkey \ + --publish=6379:6379 \ + docker.io/valkey/valkey:latest