Created
June 11, 2018 17:25
-
-
Save hiboyang/b006410db10d16567ee5a07a211bf0f8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
select role, processUuid, | |
max(heapMemoryTotalUsed)/(1024*1024) maxHeapMemoryMB, | |
avg(processCpuLoad)/1000000000 avgProcessCpuLoad | |
from profiler_CpuAndMemory | |
where appId = 'application_1508123456789_12345678' | |
and role = 'executor' | |
group by 1, 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment