Thank You for the quick replying,
Is there any way to estimate more precisely the physical I/O?
I understand MongoDB in general using lazy writes (mmap).
May be because of this fact in windows Task Manager there is no I/O
read/write activity at all for mongod process.?
There is only "I/O Other" that I don't know the meaning?
Is Page Fault is the exactly Number of Page I/O read?
What kind of I/O activity MongoDB doing? - Read: Page Fault, Write:
Background flushing , fsync
I simply misunderstand something: Virtual Memory is mapped to complete
set of Data,Code etc.
Is it means that the data almost completely duplicated on disk or it
is only mapped? I mean the memory usually is much smaller than the
data.
Background flushing syncs the data with physical files. But if data
modified takes more than memory will be run unscheduled Background
flushing?
Sorry for so many questions.
Leonid,.
On May 15, 5:46 pm, Kyle Banker <
kyleban...@gmail.com> wrote:
> Generally speaking, yes. Kernel time is time spent doing system calls, a
> subset of which are disk and network I/O. Here's a helpful article on the
> subject:
http://www.codinghorror.com/blog/2008/01/understanding-user-and-kerne...