File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments