We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d76a509 commit 7433234Copy full SHA for 7433234
python/tests/test_io.py
@@ -114,6 +114,9 @@ def test_arrow_c_stream_large_dataset(ctx):
114
reader = pa.RecordBatchReader.from_stream(df)
115
116
# Track RSS before consuming batches
117
+ # RSS is a practical measure of RAM usage visible to the OS. It excludes memory
118
+ # that has been swapped out and provides a simple cross-platform-ish indicator
119
+ # (psutil normalizes per-OS sources).
120
psutil = pytest.importorskip("psutil")
121
process = psutil.Process()
122
start_rss = process.memory_info().rss
0 commit comments