Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

I'm aborting a build but it's not happening. What's going on?

When you click that [x] icon from the UI, the following things happen:

  1. Browser sends a request to the server.
  2. The server interrupts (via Thread.interrupt()) the thread (AKA executor thread) that is responsible for carrying out a build.
  3. The server returns

At this point, your browser is back, but the actual abort process happens from here asynchronously.

  1. The thread gets the interrupt signal. How quickly this happens depends on what the executor is doing at the time of the interruption. Specifically, an executor thread can only be interrupted in "interruption points" due to the Java design.
  1. The executor performs a clean up operation. This depends on what it was doing by the time it noticed the interruption.
  • If it was waiting for a completion of a child process, Hudson will search for all the descendant processes and kill them all. On Unix, this is done through java.lang.UnixProcess.destroyProcess, which sends SIGTERM on Sun's JREs. On Windows, this is done through TerminateProcess API.
  • If it was waiting for a completion of some computation in a slave, the thread that's performing the remote computation is interrupted asynchronously. How quickly that threads gets interrupted depends on what that thread is doing. See above.
  1. Executor starts unwinding the stack, and eventually it finishes the unwinding. At this point, the build is marked as aborted and executor gets back to the idle status.

If your build isn't aborting

Check the thread dump http://yourserver/hudson/threadDump and look for the executor thread in question — they are named after the slave and executor number. That'll normally tell you where the thread is, and often reveals why it's not responding to an interruption.

Back to the top