Skip to content

Commit 2750c5e

Browse files
add chunk index to table creation time log
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 54b43fa commit 2750c5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def _create_next_table(self) -> Union["pyarrow.Table", None]:
321321

322322
end_time = time.time()
323323
logger.info(
324-
f"SeaCloudFetchQueue: Created table at offset {row_offset} in {end_time - start_time} seconds"
324+
f"SeaCloudFetchQueue: Created table for chunk {self.current_chunk_index} at offset {row_offset} in {end_time - start_time} seconds"
325325
)
326326

327327
self.current_chunk_index += 1

0 commit comments

Comments
 (0)