Repository: hbase Updated Branches: refs/heads/branch-1 80f8a8d88 -> df317a7db
HBASE-19899 Dump ulimit -a, fd count, and free output at end of build into system dir Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b66a789c Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b66a789c Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b66a789c Branch: refs/heads/branch-1 Commit: b66a789ca390efa3a96084c39b40968ebd8f950a Parents: 80f8a8d Author: Michael Stack <[email protected]> Authored: Tue Jan 30 11:53:09 2018 -0800 Committer: Michael Stack <[email protected]> Committed: Tue Jan 30 11:55:10 2018 -0800 ---------------------------------------------------------------------- dev-support/gather_machine_environment.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/b66a789c/dev-support/gather_machine_environment.sh ---------------------------------------------------------------------- diff --git a/dev-support/gather_machine_environment.sh b/dev-support/gather_machine_environment.sh index 589dffe..db1e74b 100755 --- a/dev-support/gather_machine_environment.sh +++ b/dev-support/gather_machine_environment.sh @@ -47,5 +47,8 @@ ps -Aww >"${output}/ps-Aww" 2>&1 || true ifconfig -a >"${output}/ifconfig-a" 2>&1 || true lsblk -ta >"${output}/lsblk-ta" 2>&1 || true lsblk -fa >"${output}/lsblk-fa" 2>&1 || true -ulimit -l >"${output}/ulimit-l" 2>&1 || true +ulimit -a >"${output}/ulimit-a" 2>&1 || true uptime >"${output}/uptime" 2>&1 || true +free -h >"${output}/free -h" 2>&1 || true +lsof|wc -l >"${output}/fd-count" 2>&1 || true +
