Uh oh!
There was an error while loading. Please reload this page.
[opt](memory) BE memory info compatible with CgroupV2 - #39256
Conversation
doris-robot
commented
Aug 12, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
xinyiZzz
commented
Aug 12, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
bb57830 to
2e8c877ComparexinyiZzz
commented
Aug 12, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Aug 12, 2024
TPC-H: Total hot run time: 39895 ms |
doris-robot
commented
Aug 12, 2024
TPC-DS: Total hot run time: 200417 ms |
doris-robot
commented
Aug 12, 2024
ClickBench: Total hot run time: 30.83 s |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
xinyiZzz
commented
Aug 13, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Aug 13, 2024
TPC-H: Total hot run time: 39781 ms |
xinyiZzz
commented
Aug 13, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Aug 13, 2024
TPC-H: Total hot run time: 39722 ms |
xinyiZzz
commented
Aug 13, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Aug 13, 2024
TPC-H: Total hot run time: 39958 ms |
xinyiZzz
commented
Aug 13, 2024
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
xinyiZzz
commented
Aug 13, 2024
run buildall |
xinyiZzz
commented
Aug 13, 2024
run buildall |
xinyiZzz
commented
Aug 13, 2024
run buildall |
doris-robot
commented
Aug 13, 2024
TPC-H: Total hot run time: 40390 ms |
doris-robot
commented
Aug 13, 2024
TPC-DS: Total hot run time: 191149 ms |
doris-robot
commented
Aug 13, 2024
ClickBench: Total hot run time: 30.35 s |
PR approved by at least one committer and no changes requested. |
/* Cgroup debugging steps * CgroupV1: * sudo cgcreate -t username:username -g memory:test * sudo sh -c "echo 6000M > /sys/fs/cgroup/memory/test/memory.limit_in_bytes" * // process started by the current terminal will join Cgroup test * sudo sh -c "echo $$ >> /sys/fs/cgroup/memory/test/cgroup.procs" * * CgroupV2: * sudo mkdir /sys/fs/cgroup/test * sudo echo 3000M > /sys/fs/cgroup/test/memory.max * // process started by the current terminal will join Cgroup test * sudo sh -c "echo $$ >> /sys/fs/cgroup/test/cgroup.procs" * or * // only memory allocated after joining the Cgroup is counted in `memory.current`. * sudo echo pid > /sys/fs/cgroup/test/cgroup.procs debug string ``` CGroup Info: Process CGroup Memory Info (cgroups path: /sys/fs/cgroup/memory/test, cgroup version: v1): memory limit: 2097152000, memory usage: 500969472 ```
/* Cgroup debugging steps * CgroupV1: * sudo cgcreate -t username:username -g memory:test * sudo sh -c "echo 6000M > /sys/fs/cgroup/memory/test/memory.limit_in_bytes" * // process started by the current terminal will join Cgroup test * sudo sh -c "echo $$ >> /sys/fs/cgroup/memory/test/cgroup.procs" * * CgroupV2: * sudo mkdir /sys/fs/cgroup/test * sudo echo 3000M > /sys/fs/cgroup/test/memory.max * // process started by the current terminal will join Cgroup test * sudo sh -c "echo $$ >> /sys/fs/cgroup/test/cgroup.procs" * or * // only memory allocated after joining the Cgroup is counted in `memory.current`. * sudo echo pid > /sys/fs/cgroup/test/cgroup.procs debug string ``` CGroup Info: Process CGroup Memory Info (cgroups path: /sys/fs/cgroup/memory/test, cgroup version: v1): memory limit: 2097152000, memory usage: 500969472 ```
/* Cgroup debugging steps * CgroupV1: * sudo cgcreate -t username:username -g memory:test * sudo sh -c "echo 6000M > /sys/fs/cgroup/memory/test/memory.limit_in_bytes" * // process started by the current terminal will join Cgroup test * sudo sh -c "echo $$ >> /sys/fs/cgroup/memory/test/cgroup.procs" * * CgroupV2: * sudo mkdir /sys/fs/cgroup/test * sudo echo 3000M > /sys/fs/cgroup/test/memory.max * // process started by the current terminal will join Cgroup test * sudo sh -c "echo $$ >> /sys/fs/cgroup/test/cgroup.procs" * or * // only memory allocated after joining the Cgroup is counted in `memory.current`. * sudo echo pid > /sys/fs/cgroup/test/cgroup.procs debug string ``` CGroup Info: Process CGroup Memory Info (cgroups path: /sys/fs/cgroup/memory/test, cgroup version: v1): memory limit: 2097152000, memory usage: 500969472 ```
/* Cgroup debugging steps
memory.current.debug string