Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow pbench to collect perf reports for each query #21

Open
yingsu00 opened this issue Aug 29, 2024 · 1 comment
Open

Allow pbench to collect perf reports for each query #21

yingsu00 opened this issue Aug 29, 2024 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@yingsu00
Copy link

First understand how to use perf.
At each query start, run:

perf record -e cycles presto_server

At query end, run:

perf report

to get high level reports, and

perf annotation

for additional drill down info.

We want to collect them for every query in Power Test. However taking it on all workers may result in a lot of data. So pbench needs to pick one random worker and the coordinator.

The results shall be stored in a MySQL table in the presto_performance database.

The performance dashboard will show this reports for each query in the QueryDetails view.

@yingsu00 yingsu00 added the enhancement New feature or request label Aug 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants
@ethanyzhang @yingsu00 and others