Slackbot
04/20/2023, 12:26 PMJohn Kowtko
04/20/2023, 1:54 PMOlivier JOUSSET
04/20/2023, 2:19 PM(estimated) bytes[691,997,144] ? Is it the estimated size of what it is going to be persist on disk ?Abhishek Agarwal
04/20/2023, 3:13 PMOlivier JOUSSET
04/20/2023, 3:37 PMJohn Kowtko
04/20/2023, 4:28 PMWhat means theAccording to the code it is the row buffer size:(estimated) bytes[691,997,144]
// NB: The rows are still in memory until they're done persisting, but we only count rows in active indexes.
rowsCurrentlyInMemory.addAndGet(-numPersistedRows);
bytesCurrentlyInMemory.addAndGet(-bytesPersisted);
<http://log.info|log.info>("Persisted rows[%,d] and (estimated) bytes[%,d]", numPersistedRows, bytesPersisted);
I'm not sure why it is considered an estimate ... I see (estimated) used in multiple places ...Gian Merlino
04/20/2023, 7:36 PMGian Merlino
04/20/2023, 7:36 PMGian Merlino
04/20/2023, 7:37 PM