-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
too many open files flake #10246
Comments
I can't make too much sense of this... from the Jenkins master:
/cc @danmcp |
Ok, a little more nuanced approach, but nothing interesting. It doesn't look like we are leaving file descriptors open, so perhaps this was just a transient issue and we need to bump the limits a little for Java. #!/bin/bash
processess="$(ps -A | grep -E "java|bash|vagrant|ruby|sh|ssh" | awk '{print $1}')"
for process in ${processess}; do
if [[ -f "/proc/${process}/limits" ]]; then
max="$(grep -Po '(?<=Max open files )[0-9]+' "/proc/${process}/limits")"
current="$( lsof -p "${process}" | wc -l )"
echo "current ${current} "$'\t'" max ${max} [$( ps --no-headers --pid "${process}" -o pid,cmd )]"
fi
done Output:
|
also see https://bugzilla.redhat.com/show_bug.cgi?id=1362519 which might be related and we haven't resolved yet cc @timothysc |
To be clear this is on the Jenkins master, nothing to do with OpenShift. On Aug 6, 2016 3:49 PM, "Andy Goldstein" notifications@github.com wrote:
|
@stevekuznetsov-bot I don't remember giving you the right to speak! |
as seen in:
https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_conformance/4751/consoleFull
The text was updated successfully, but these errors were encountered: