Skip to content

Commit 62281ee

Browse files
committed
Remove now-unnecessary benchmark
1 parent 1dde0c8 commit 62281ee

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

benchmarks/benchmarks.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -254,27 +254,3 @@ def time_run(self):
254254
def peakmem_run(self):
255255
"""Benchmark the memory usage of read_parquet(self.path, columns=self.columns)"""
256256
self.run()
257-
258-
259-
class ReadFewColumnsHTTPSWithOptimization:
260-
"""Benchmark read_parquet("https://", columns=[...])
261-
262-
Note: fsspec optimization is now automatic for remote URLs,
263-
so this benchmark is equivalent to ReadFewColumnsHTTPS.
264-
Kept for historical comparison purposes.
265-
"""
266-
267-
path = "https://data.lsdb.io/hats/gaia_dr3/gaia/dataset/Norder=2/Dir=0/Npix=0.parquet"
268-
columns = ["_healpix_29", "ra", "astrometric_primary_flag"]
269-
270-
def run(self):
271-
"""Run the benchmark (fsspec optimization is automatic for remote URLs)."""
272-
_ = read_parquet(self.path, columns=self.columns)
273-
274-
def time_run(self):
275-
"""Benchmark the runtime with automatic fsspec optimization"""
276-
self.run()
277-
278-
def peakmem_run(self):
279-
"""Benchmark the memory usage with automatic fsspec optimization"""
280-
self.run()

0 commit comments

Comments
 (0)