wiscsee
wiscsee copied to clipboard
WiscSee tells if you are using SSDs in the right way.
CPU Count
When I walk through the tutorial, the example seems to assume I have more cores than I actually do, leading to the following exception: ====================================================================== ERROR: test_run (tests.test_demo.Test_TraceAndSimulateLinuxDD) ---------------------------------------------------------------------- Traceback...
Hey, whenever we are trying to run F2FS in the simulator, the simulator is throwing an error. Find the output including the error attached to this issue. Any idea whats...
I always have a `def test_run(self)`: line added to demo file to prevent SimulateForSyntheticWorkload from running as I selectively run other workloads. Seems like a typo. Below is the diff....
Following code: ``` def parse_bitmaps(line): mo = re.search(r'Block bitmap at (\S+) .*, Inode bitmap at (\S+) .*', line) return {'block-bitmap': convert_to_range(mo.group(1)), 'inode-bitmap': convert_to_range(mo.group(2))} ``` breaks with: ``` File "pyreuse/sysutils/dumpe2fsparser.py", line...
I have been running the simulator and the AppMix workload is used. I notice that the workloads don't seem to be big enough to trigger Garbage collection. Could you let...