rio-tiler icon indicating copy to clipboard operation
rio-tiler copied to clipboard

Investigate higher HEAD/GET Request with GDAL >3.7

Open vincentsarago opened this issue 2 months ago • 9 comments

with https://github.com/cogeotiff/rio-tiler/blob/main/tests/benchmarks/requests.py we test some tile request fetching and use tilebench to monitor the number or GET/HEAD requests made.

with the latest commits, this test is failing https://github.com/cogeotiff/rio-tiler/blob/4d95c28962ac0f0d1465038d44b12f2c03ac2367/tests/benchmarks/requests.py#L35-L67

👇 this used to return HEAD: 1 and GET 3 🤷

tilebench profile https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/15/T/VK/2023/10/S2B_15TVK_20231008_0_L2A/TCI.tif --tile 11-493-741 | jq
{
  "HEAD": {
    "count": 3
  },
  "GET": {
    "count": 4,
    "bytes": 2293760,
    "ranges": [
      "0-32767",
      "9011200-10158079",
      "11075584-12189695"
    ]
  },
  "Timing": 3.494839668273926
}

vincentsarago avatar Apr 18 '24 09:04 vincentsarago