Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Tests

on:
push:
branches: [ main ]
branches: [ main, feat/dask-integration ]
pull_request:
branches: [ main ]
branches: [ main, feat/performance-validation ]
workflow_dispatch:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ WORKDIR /app
RUN pip install -U pip uv

# Cachebust for data-model installation (change timestamp to force fresh install)
ARG CACHEBUST=2025-10-06T11:00:00Z
ARG CACHEBUST=2025-10-09T00:00:00Z

# Install eopf-geozarr from fix/s1-encoding-conflict branch (temporary until merged)
# Install eopf-geozarr from fix/s1-encoding-conflict branch (includes dask[distributed])
RUN uv pip install --system --no-cache \
git+https://github.com/EOPF-Explorer/data-model.git@fix/s1-encoding-conflict \
pystac>=1.10.0 \
Expand All @@ -28,7 +28,7 @@ RUN uv pip install --system --no-cache \
tenacity>=8.0.0

# Force fresh copy of scripts (invalidate cache)
ARG SCRIPTS_VERSION=2025-10-06T02:05:00Z
ARG SCRIPTS_VERSION=2025-10-09T00:00:00Z

# Copy scripts
COPY scripts/ /app/scripts/
Expand Down
215 changes: 0 additions & 215 deletions scripts/benchmark_comparison.py

This file was deleted.

7 changes: 4 additions & 3 deletions scripts/benchmark_tile_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import random
import sys
import time
from typing import Any
from typing import Any, cast
from urllib.parse import urlencode

import requests # type: ignore[import-untyped]
Expand Down Expand Up @@ -193,9 +193,10 @@ def benchmark_zoom_level(
"results": results,
}

latency_stats = cast(dict[str, float], stats["latency_ms"])
logger.info(
f" Zoom {zoom}: {stats['latency_ms']['mean']:.1f}ms avg, " # type: ignore[index]
f"{stats['latency_ms']['p95']:.1f}ms p95, "
f" Zoom {zoom}: {latency_stats['mean']:.1f}ms avg, "
f"{latency_stats['p95']:.1f}ms p95, "
f"{stats['success_rate']:.1%} success"
)

Expand Down
Loading