@lancedb/lancedb • Docs
@lancedb/lancedb / WriteProgress
Interface: WriteProgress¶
Progress snapshot for a write operation, delivered to the progress
callback passed to Table.add.
Properties¶
activeTasks¶
Number of parallel write tasks currently in flight.
done¶
true for the final callback; false otherwise.
elapsedSeconds¶
Wall-clock seconds since the write started.
outputBytes¶
Number of bytes written so far.
outputRows¶
Number of rows written so far.
totalRows?¶
Total rows expected, when the input source reports it.
Always set on the final callback (the one with done: true), falling
back to the actual number of rows written when the source could not
report a row count up front.
totalTasks¶
Total number of parallel write tasks (the write parallelism).