Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a626b69
MLN-666 | feat: stats tracker keeping memory utilization history
vitalyisaev2 Jun 9, 2022
9776ae7
MLN-666 | feat: effectiveness script pt. 1
vitalyisaev2 Jun 9, 2022
367accb
MLN-666 | feat: run allocator server in Docker
vitalyisaev2 Jun 9, 2022
3306e9a
MLN-666 | feat: exec allocator perf client in Docker
vitalyisaev2 Jun 9, 2022
c668128
MLN-666 | feat: more work on report handling
vitalyisaev2 Jun 10, 2022
c1db606
MLN-666 | feat: render single report
vitalyisaev2 Jun 10, 2022
5ec5d9f
MLN-666 | feat: delete container after use
vitalyisaev2 Jun 10, 2022
ffd5ba1
MLN-666 | feat: handle case when memlimiter is disabled
vitalyisaev2 Jun 10, 2022
56c77aa
MLN-666 | feat: list of test cases
vitalyisaev2 Jun 10, 2022
aeef96d
MLN-666 | feat: triple y axis (not operational)
vitalyisaev2 Jun 10, 2022
51bbbb2
MLN-666 | feat: double y axis
vitalyisaev2 Jun 10, 2022
9a9df65
MLN-666 | feat: make single plot more beautiful
vitalyisaev2 Jun 10, 2022
d49a860
MLN-666 | fix: stable, more or less
vitalyisaev2 Jun 10, 2022
d11ee23
MLN-666 | feat: RSS pivotal plot
vitalyisaev2 Jun 10, 2022
b8c1406
MLN-666 | refactor: minor changes
vitalyisaev2 Jun 10, 2022
f360624
MLN-666 | feat: emulate OOM for unconstrained process
Jun 14, 2022
f32ace5
MLN-666 | feat: resulting plots
Jun 14, 2022
b9a8825
Merge branch 'develop' into MLN-666
vitalyisaev2 Jun 14, 2022
0744843
MLN-666 | refactor: more small plots
Jun 14, 2022
257b300
Merge branch 'MLN-666' of github.com:newcloudtechnologies/memlimiter …
Jun 14, 2022
e9fc0bc
MLN-666 | fix: combined plots
Jun 14, 2022
305bf93
MLN-666 | fix: minor changes
Jun 14, 2022
f7f5c57
MLN-666 | fix: highlight OOM
Jun 14, 2022
623a255
MLN-666 | fix: range of numbers
vitalyisaev2 Jun 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
MLN-666 | feat: delete container after use
  • Loading branch information
vitalyisaev2 committed Jun 10, 2022
commit 5ec5d9fe7580bd0144e0bb35806cd97aa6b435cc
2 changes: 2 additions & 0 deletions test/allocator/analyze/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ def execute(self, mem_limit: str, session_dir_path: os.PathLike):
for log in logs:
print(log)

container.stop()


def run_session(
docker_client: DockerClient,
Expand Down
2 changes: 2 additions & 0 deletions test/allocator/analyze/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def single_report(report: Report):
color = 'tab:red'
ax1.plot(df['elapsed_time'], df['utilization'], color=color)
ax1.set_ylabel('Memory budget utilization, %', color=color)
ax1.set_ylim(-5, 105)
ax1.yaxis.set_tick_params(labelcolor=color)
ax1.yaxis.set_major_formatter(mtick.PercentFormatter())
ax1.set_xlabel('Time, seconds')
Expand All @@ -27,6 +28,7 @@ def single_report(report: Report):
ax2.plot(df['elapsed_time'], df['gogc'], color=color)
ax2.yaxis.set_tick_params(labelcolor=color)
ax2.set_ylabel('GOGC', color=color)
ax2.set_ylim(-5, 105)

# fig.tight_layout()
fig.savefig(report.plot_file_path, transparent=False)
Expand Down