Skip to main content

Pathways CLI to easily bring up pathways clusters.

Project description

pwy: Standalone Pathways GKE Cluster CLI Tool

pwy is a lightweight, standalone Python CLI utility designed to generate, apply, and manage interactive Pathways workloads on Google Kubernetes Engine (GKE) using Kubernetes JobSets.


Features

  • Automated TPU Topology Calculations: Translates simple TPU resource types (v6e-4, v6e-16, etc.) into GKE topologies, VM counts, and instance settings.
  • File Syncing & Remote Execution: Seamlessly synchronize local project files to remote client containers (pwy sync) and execute scripts inline (pwy run).
  • Spot VM Support: Dynamically injects GKE node selectors and tolerations for running workloads on cost-effective Spot VMs.
  • Colocated Python Support: Simplifies distributed checkpointing (e.g. via Orbax) by configuring and enabling colocated host CPU sidecars and proxy endpoints automatically.
  • Interactive & Batch Execution: Supports spinning up pathways servers with infinite sleep drivers for interactive debugging, or executing training scripts directly.
  • Dry-run Manifest Generation: Preview and inspect the GKE JobSet manifest without applying it to the cluster.

Installation

Install pathways-cli from PyPI using your preferred package manager:

# Using pip
pip install pathways-cli

# Or using uv (recommended for fast tool management)
uv tool install pathways-cli

Basic Usage

Once installed, you can manage Pathways cluster workloads using the core pwy CLI commands:

1. Provision / Preview a Cluster (pwy up)

Starts a Pathways JobSet on v6e.

pwy up \
  --tpu-type v6e-16 \
  --gcs-scratch-location gs://my-bucket/pathways-staging

Note the above assumes you have a GKE cluster created with a v6e-16 nodepool already provisioned.

Key Options:

  • --tpu-type: (Required) TPU type (e.g., v6e-4, v6e-8, v6e-16, v6e-32, v6e-64).
  • --gcs-scratch-location: (Required) GCS scratch path for pathways synchronization.
  • --num-slices: Number of TPU slices to run (default: 1).
  • --jax-client-image: Custom client container image (default: python:3.12-slim).
  • --command: Run a custom training/eval script in the client container. If omitted, defaults to sleep infinity (interactive mode).
  • --spot: Add node affinity and toleration settings for Spot VMs.
  • --colocated-python: Enables colocated CPU Python sidecar/init containers on GKE workers and enables external proxy routing.
  • --dry-run: Prints the generated YAML to stdout instead of calling kubectl apply.
  • --name: Name of the Kubernetes JobSet resource (default: $USER-pw).
  • --namespace: Target Kubernetes namespace (default: default).
  • --sync: Local directory path to sync to the JAX client container upon startup.
  • --remote-path: Destination path in the remote JAX client container (default: /app).

2. Sync Code & Execute Commands (pwy run / pwy sync)

pwy provides utility commands to synchronize local code and run tasks directly inside the JAX client container of an active Pathways cluster.

Execute Code (pwy run)

Syncs local files to the client container and executes commands:

pwy run python3 my_script.py

You can also specify custom source/destination paths:

pwy run --source ./my_project --dest /app python3 train.py

Synchronize Directory (pwy sync)

Syncs local files to the remote client container without executing a command:

pwy sync --source ./my_project --dest /app

3. Teardown a Cluster (pwy down)

Deletes the running Pathways JobSet resource and cleans up associated pods.

pwy down --name pathways-interactive --namespace default

Workload Examples

1. Verification Example

Once the interactive cluster is running, you can verify execution by execing into the client container:

  1. Find the client pod name:

    POD_NAME=$(kubectl get pods -l jobset.sigs.k8s.io/jobset-name=$USER-pw,jobset.sigs.k8s.io/replicatedjob-name=pwhd -o jsonpath='{.items[0].metadata.name}')
    
  2. Install JAX and Pathways utils:

    kubectl exec $POD_NAME -c client -- pip install jax pathwaysutils
    
  3. Run a Python snippet to initialize and list devices:

    kubectl exec $POD_NAME -c client -- python3 -c "import pathwaysutils; pathwaysutils.initialize(); import jax; print(jax.devices())"
    

    The command output should print the available virtual TPU devices (e.g., coordinates and memory spaces of the allocated chips).


2. Running Jupyter Notebook (Interactive Development)

You can spin up a Jupyter Notebook directly inside the JAX client container using the --command override:

  1. Launch the cluster with Jupyter Lab:

    pwy up \
      --tpu-type v6e-4 \
      --gcs-scratch-location gs://my-bucket/pathways-staging \
      --command "pip install jax pathwaysutils jupyterlab && jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --allow-root --NotebookApp.token='' --NotebookApp.password=''"
    
  2. Find the client pod name:

    POD_NAME=$(kubectl get pods -l jobset.sigs.k8s.io/jobset-name=$USER-pw,jobset.sigs.k8s.io/replicatedjob-name=pwhd -o jsonpath='{.items[0].metadata.name}')
    
  3. Port forward to the Jupyter server:

    kubectl port-forward $POD_NAME 8888:8888
    
  4. Access Jupyter Lab in your browser at http://localhost:8888. Create a new notebook and run a JAX device check:

    import pathwaysutils
    pathwaysutils.initialize()
    import jax
    print(jax.devices())
    

3. Running vLLM (Multi-Host TPU Serving) via Pathways

You can deploy and run vllm-tpu in multi-host mode using the Pathways backend in a single step by passing the startup command via --command. The JAX client container executes the server process, communicating with the worker TPUs over the Pathways proxy.

  1. Launch the Pathways cluster and run vLLM serving in one command:

    pwy up \
      --tpu-type v6e-16 \
      --gcs-scratch-location gs://my-bucket/pathways-staging \
      --name vllm-pw \
      --command 'until pip install uv && uv pip install --system vllm-tpu pathwaysutils; do echo "Pip failed, retrying in 5s..."; sleep 5; done && JAX_PLATFORMS="proxy,cpu" VLLM_TPU_USING_PATHWAYS=1 TPU_BACKEND_TYPE=jax MODEL_IMPL_TYPE=vllm VLLM_ENABLE_V1_MULTIPROCESSING=0 python3 -m vllm.entrypoints.cli.main serve "Qwen/Qwen3.6-35B-A3B" --load-format dummy --tensor-parallel-size 16 --max-model-len 8192 --max-num-batched-tokens 16384 --gpu-memory-utilization 0.80'
    

    Note: This provisions a JobSet named vllm-pw requesting a single slice of TPU v6e-16 (composed of 4 TPU VMs / 16 total chips). The --command override handles package installation robustly and launches the server. --max-model-len is set to 8192, --max-num-batched-tokens is set to 16384 (required by multimodal validation logic when --disable-chunked-mm-input is forced on Qwen 3.6 MoE), and --gpu-memory-utilization is restricted to 0.80 to reserve headroom for compile-time allocations.

  2. Monitor the server installation and logs: Track the package installation progress and JAX model compilation directly from the client container logs:

    POD_NAME=$(kubectl get pods -l jobset.sigs.k8s.io/jobset-name=vllm-pw,jobset.sigs.k8s.io/replicatedjob-name=pwhd -o jsonpath='{.items[0].metadata.name}')
    kubectl logs -f $POD_NAME -c client
    
  3. Verify the server is serving requests: From a separate terminal on your local machine, forward the server port:

    kubectl port-forward $POD_NAME 8000:8000
    

    Send a query to the model:

    curl http://localhost:8000/v1/completions \
        -H "Content-Type: application/json" \
        -d '{
            "model": "Qwen/Qwen3.6-35B-A3B",
            "prompt": "Pathways is a",
            "max_tokens": 50,
            "temperature": 0.0
        }'
    

4. Running sglang-jax (Multi-Host TPU Serving) via Pathways

You can deploy and run sglang-jax in multi-host mode using the Pathways backend by syncing the cloned repository to the client container and starting the server process.

  1. Clone the sglang-jax repository:

    git clone https://github.com/sgl-project/sglang-jax
    
  2. Launch the Pathways cluster:

    pwy up \
      --tpu-type v6e-16 \
      --gcs-scratch-location gs://my-bucket/pathways-staging \
      --name sglang-pw
    
  3. Install dependencies and launch the server: Use pwy run with the --source option pointing to the cloned repository to sync code and launch serving:

    pwy run \
      --name sglang-pw \
      --source sglang-jax \
      --dest /app \
      bash -c 'until pip install uv && uv pip install --system -e /app/python[cpu] pathwaysutils; do echo "Pip failed, retrying in 5s..."; sleep 5; done && JAX_PLATFORMS=proxy JAX_BACKEND_TARGET=grpc://127.0.0.1:29000 JAX_USE_SHARDY_PARTITIONER=0 python3 -u -m sgl_jax.launch_server --model-path Qwen/Qwen2.5-3B-Instruct --load-format dummy --trust-remote-code --tp-size=16 --mem-fraction-static=0.8 --chunked-prefill-size=2048 --download-dir=/tmp --dtype=bfloat16 --max-running-requests 8 --skip-server-warmup --page-size=64 --max-total-tokens=257536 --random-seed=27 --precompile-token-paddings=2048 --precompile-bs-paddings=8 --enable-single-process --attention-backend native'
    

    Note: Using --attention-backend native is currently recommended on Pathways to bypass custom Pallas FlashAttention compilation issues due to JAX version mismatches between the sglang-jax package (defaulting to JAX 0.8.1) and the Pathways server (JAX 0.10.0). Once sglang-jax officially upgrades its dependencies to JAX 0.10.0, the optimized attention backend (--attention-backend fa, the default) will run out-of-the-box. Setting --load-format dummy runs the model with randomly-initialized weights for quick verification without downloading weight files.

  4. Verify the server is serving requests: Find the client pod name:

    POD_NAME=$(kubectl get pods -l jobset.sigs.k8s.io/jobset-name=sglang-pw,jobset.sigs.k8s.io/replicatedjob-name=pwhd -o jsonpath='{.items[0].metadata.name}')
    

    Forward the server port (default 30000):

    kubectl port-forward pod/$POD_NAME 30000:30000
    

    Send a query to the model using either /generate or the OpenAI-compatible /v1/chat/completions API:

    # Option A: SGLang native generate endpoint
    curl -X POST 'http://127.0.0.1:30000/generate' \
      -H 'Content-Type: application/json' \
      -d '{"text": "the capital of France is", "sampling_params": {"max_new_tokens": 10, "temperature": 0.6}}'
    
    # Option B: OpenAI-compatible Chat Completions API
    curl -s -d '{
      "model": "Qwen/Qwen2.5-3B-Instruct",
      "messages": [{"role": "user", "content": "Hello!"}],
      "max_tokens": 16
    }' -H "Content-Type: application/json" http://127.0.0.1:30000/v1/chat/completions
    

TPU Type Mappings

pwy handles all resource-limit math and topologies automatically. It supports a wide range of TPU generations, including:

  • TPU v6e: v6e-4 up to v6e-256 (including v6e-8-1 with 8 chips per VM)
  • TPU v5p: v5p-8 up to v5p-17920
  • TPU v5e (v5LitePod): v5litepod-8 up to v5litepod-256
  • TPU v4: v4-8 up to v4-4096
  • TPU 7x: 7x-8 up to 7x-8192

Running Tests

To execute the unit test suite:

uv run pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pathways_cli-0.1.3.tar.gz (13.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pathways_cli-0.1.3-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file pathways_cli-0.1.3.tar.gz.

File metadata

  • Download URL: pathways_cli-0.1.3.tar.gz
  • Upload date:
  • Size: 13.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pathways_cli-0.1.3.tar.gz
Algorithm Hash digest
SHA256 14fb8ea5ce542a03818a4ae014be64ace8d916dbe71919581a2cf3b2cbad93e9
MD5 cae41749a1ece438c970d6fa67d7b466
BLAKE2b-256 c8b0db2deb7d4270bc155dd58a57056108b202745395769bea902992c03270f2

See more details on using hashes here.

File details

Details for the file pathways_cli-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: pathways_cli-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pathways_cli-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d89c42810de63c12697ea636b4a49dafc55ac3499494acddce6ea1fe192e9695
MD5 32d2a71182e07e630587f7b9b507db01
BLAKE2b-256 1b85be2f197b351170ad0a29a7ec5fed3dc071d84521d4eccfe2d3acb8f3b3ef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page