Displaying 1 result from an estimated 1 matches for "203803".
Did you mean:
20380
2006 Jul 20
2
How can I watch IO operations with dtrace on zfs?
...op script (see http://www.opensolaris.org/os/community/dtrace/scripts/) written by Brendan Gregg to look at the IO operations of my application. When I was running my test-program on a UFS filesystem I could see both read and write operations like:
UID PID D BLOCK SIZE COMM PATHNAME
203803 4436 R 6016592 16384 diskio <none>
203803 4436 W 3448432 16384 diskio <none>
203803 4436 R 5510832 16384 diskio <none>
203803 4436 W 4652608 16384 diskio <none>
But when I''m running my program on a ZFS file-system, I can only see the rea...