-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'deephaven:main' into select-update-test-mprovements
- Loading branch information
Showing
7 changed files
with
97 additions
and
58 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Nightly Dashboard | ||
|
||
Deephaven benchmarks run every night and summary tables (not show here) are published internally so that | ||
developers can see how performance changed during the last nightly build. If more investigation is | ||
needed, the logical next step is to search the benchmark data to get more details. | ||
|
||
The Nightly Dashboard allows a quick way to dig into the available data to get some clues to | ||
performance issues or see more clearer why performance has improved. | ||
|
||
This Dashboard is built using Deephaven's [scripted UI](https://deephaven.io/core/docs/how-to-guides/plotting/category/) | ||
using the Benchmark Tables snippet used in the previous notebook. | ||
|
||
```python | ||
from urllib.request import urlopen; import os | ||
|
||
root = 'file:///nfs' if os.path.exists('/nfs/deephaven-benchmark') else 'https://storage.googleapis.com' | ||
with urlopen(root + '/deephaven-benchmark/benchmark_tables.dh.py') as r: | ||
benchmark_storage_uri_arg = root + '/deephaven-benchmark' | ||
benchmark_category_arg = 'release' # release | nightly | ||
benchmark_max_runs_arg = 5 # Latest X runs to include | ||
exec(r.read().decode(), globals(), locals()) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters