Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ An AI-native distributed data plane that supports high performance RPC, KV Cache
[![Linux Only](https://img.shields.io/badge/Linux-Only-2ea44f)](#runtime-requirements)
[![Python](https://img.shields.io/badge/Python-%3E%3D3.10-3776AB)](#runtime-requirements)
[![Rust](https://img.shields.io/badge/Rust-1.93.0-000000)](./fluxon_rs/rust-toolchain.toml)
[![Latest](https://img.shields.io/badge/Latest-v0.2.2-f28500)](./fluxon_release)
[![Latest](https://img.shields.io/badge/Latest-v0.2.3-f28500)](./fluxon_release)
[![Interfaces](https://img.shields.io/badge/Interfaces-KV%2FRPC%20%7C%20MQ%20%7C%20FS-1f6feb)](#interface-capabilities)

<details>
Expand Down Expand Up @@ -201,7 +201,7 @@ The distribution installs the `fluxon_py` import package. Service-plane runtimes

```bash
docker run --rm -it --network host \
hanbaoaaa/fluxon_quick_start:0.2.2 \
hanbaoaaa/fluxon_quick_start:0.2.3 \
--mode kv \
--etcd-client-port 12379 \
--master-p2p-port 31000 \
Expand Down Expand Up @@ -234,7 +234,7 @@ Related interface docs:

```bash
docker run --rm -it --network host \
hanbaoaaa/fluxon_quick_start:0.2.2 \
hanbaoaaa/fluxon_quick_start:0.2.3 \
--mode mq \
--etcd-client-port 37379 \
--kv-master-port 34200 \
Expand Down Expand Up @@ -265,7 +265,7 @@ Related interface docs:

```bash
docker run --rm -it --network host \
hanbaoaaa/fluxon_quick_start:0.2.2 \
hanbaoaaa/fluxon_quick_start:0.2.3 \
--mode fs \
--etcd-client-port 36379 \
--kv-master-port 34100 \
Expand Down
8 changes: 4 additions & 4 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![Linux Only](https://img.shields.io/badge/Linux-Only-2ea44f)](#运行要求)
[![Python](https://img.shields.io/badge/Python-%3E%3D3.10-3776AB)](#运行要求)
[![Rust](https://img.shields.io/badge/Rust-1.93.0-000000)](./fluxon_rs/rust-toolchain.toml)
[![Latest](https://img.shields.io/badge/Latest-v0.2.2-f28500)](./fluxon_release)
[![Latest](https://img.shields.io/badge/Latest-v0.2.3-f28500)](./fluxon_release)
[![Interfaces](https://img.shields.io/badge/Interfaces-KV%2FRPC%20%7C%20MQ%20%7C%20FS-1f6feb)](#接口能力)

<details>
Expand Down Expand Up @@ -198,7 +198,7 @@ python3 -m pip install fluxon-py

```bash
docker run --rm -it --network host \
hanbaoaaa/fluxon_quick_start:0.2.2 \
hanbaoaaa/fluxon_quick_start:0.2.3 \
--mode kv \
--etcd-client-port 12379 \
--master-p2p-port 31000 \
Expand Down Expand Up @@ -231,7 +231,7 @@ del demo:hello

```bash
docker run --rm -it --network host \
hanbaoaaa/fluxon_quick_start:0.2.2 \
hanbaoaaa/fluxon_quick_start:0.2.3 \
--mode mq \
--etcd-client-port 37379 \
--kv-master-port 34200 \
Expand Down Expand Up @@ -262,7 +262,7 @@ exit

```bash
docker run --rm -it --network host \
hanbaoaaa/fluxon_quick_start:0.2.2 \
hanbaoaaa/fluxon_quick_start:0.2.3 \
--mode fs \
--etcd-client-port 36379 \
--kv-master-port 34100 \
Expand Down
8 changes: 4 additions & 4 deletions examples/fluxon_quick_start/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It does not replace the formal service-plane, KV, MQ, or FS interface docs.
- unified quick-start entrypoint
- `build_image.py`
- quick-start image build entrypoint
- `fluxon_quick_start:0.2.2`
- `fluxon_quick_start:0.2.3`
- quick-start Docker image

## Runtime Modes
Expand Down Expand Up @@ -86,7 +86,7 @@ Python environment can already import both `fluxon_py` and `fluxon_pyo3`.

```bash
docker run --rm -it --network host \
fluxon_quick_start:0.2.2 \
fluxon_quick_start:0.2.3 \
--mode kv \
--etcd-client-port 12379 \
--master-p2p-port 31000 \
Expand Down Expand Up @@ -119,7 +119,7 @@ del demo:hello

```bash
docker run --rm -it --network host \
fluxon_quick_start:0.2.2 \
fluxon_quick_start:0.2.3 \
--mode mq \
--etcd-client-port 37379 \
--kv-master-port 34200 \
Expand Down Expand Up @@ -155,7 +155,7 @@ The background consumer keeps printing received messages.

```bash
docker run --rm -it --network host \
fluxon_quick_start:0.2.2 \
fluxon_quick_start:0.2.3 \
--mode fs \
--etcd-client-port 36379 \
--kv-master-port 34100 \
Expand Down
2 changes: 1 addition & 1 deletion examples/fluxon_quick_start/build_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
SCRIPTS_DIR = REPO_ROOT / "setup_and_pack"
DOCKERFILE_PATH = SCRIPT_DIR / "Dockerfile"
IMAGE_NAME = "fluxon_quick_start"
IMAGE_TAG = "0.2.2"
IMAGE_TAG = "0.2.3"

# Binaries to copy from ext_images into quick_start bin/.
EXT_BINARIES = ("etcd/etcd", "etcd/etcdctl", "greptime/greptime")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ docker run -d --name fluxon-s3 `
--mount "type=bind,src=C:\fluxon-s3\data,dst=/data" `
--mount "type=bind,src=C:\fluxon-s3\state,dst=/state" `
--entrypoint python3 `
"hanbaoaaa/fluxon_quick_start:0.2.2" `
"hanbaoaaa/fluxon_quick_start:0.2.3" `
-c "
from fluxon_py.quick_start import serve_s3_single_node

Expand Down
2 changes: 1 addition & 1 deletion fluxon_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
from typing import Any


__version__ = "0.2.2"
__version__ = "0.2.3"
__all__ = [
# Core API
"KvClient",
Expand Down
Loading
Loading