Skip to content

Commit 57ebf06

Browse files
remove excess logs
1 parent 2750c5e commit 57ebf06

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/databricks/sql/backend/sea/queue.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from abc import ABC
44
import threading
5-
import time
65
from typing import Dict, List, Optional, Tuple, Union
76

87
from databricks.sql.cloudfetch.download_manager import ResultFileDownloadManager
@@ -307,7 +306,6 @@ def __init__(
307306

308307
def _create_next_table(self) -> Union["pyarrow.Table", None]:
309308
"""Create next table by retrieving the logical next downloaded file."""
310-
start_time = time.time()
311309
if not self.download_manager:
312310
logger.debug("SeaCloudFetchQueue: No download manager, returning")
313311
return None
@@ -319,11 +317,6 @@ def _create_next_table(self) -> Union["pyarrow.Table", None]:
319317
row_offset = chunk_link.row_offset
320318
arrow_table = self._create_table_at_offset(row_offset)
321319

322-
end_time = time.time()
323-
logger.info(
324-
f"SeaCloudFetchQueue: Created table for chunk {self.current_chunk_index} at offset {row_offset} in {end_time - start_time} seconds"
325-
)
326-
327320
self.current_chunk_index += 1
328321

329322
return arrow_table

0 commit comments

Comments
 (0)