James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 1 | :title: Launchers |
| 2 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 3 | .. _Gearman: http://gearman.org/ |
Antoine Musso | d06f2a6 | 2012-11-16 17:40:58 +0100 | [diff] [blame] | 4 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 5 | .. _`Gearman Plugin`: |
| 6 | https://wiki.jenkins-ci.org/display/JENKINS/Gearman+Plugin |
| 7 | |
| 8 | .. _launchers: |
Antoine Musso | d06f2a6 | 2012-11-16 17:40:58 +0100 | [diff] [blame] | 9 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 10 | Launchers |
| 11 | ========= |
| 12 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 13 | Zuul has a modular architecture for launching jobs. Currently, the |
| 14 | only supported module interfaces with Gearman_. This design allows |
| 15 | any system to run jobs for Zuul simply by interfacing with a Gearman |
| 16 | server. The recommended way of integrating a new job-runner with Zuul |
| 17 | is via this method. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 18 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 19 | If Gearman is unsuitable, Zuul may be extended with a new launcher |
| 20 | module. Zuul makes very few assumptions about the interface to a |
| 21 | launcher -- if it can trigger jobs, cancel them, and receive success |
| 22 | or failure reports, it should be able to be used with Zuul. Patches |
| 23 | to this effect are welcome. |
| 24 | |
| 25 | Gearman |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 26 | ------- |
| 27 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 28 | Gearman_ is a general-purpose protocol for distributing jobs to any |
| 29 | number of workers. Zuul works with Gearman by sending specific |
| 30 | information with job requests to Gearman, and expects certain |
| 31 | information to be returned on completion. This protocol is described |
| 32 | in `Zuul-Gearman Protocol`_. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 33 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 34 | The `Gearman Jenkins Plugin`_ makes it easy to use Jenkins with Zuul |
| 35 | by providing an interface between Jenkins and Gearman. In this |
| 36 | configuration, Zuul asks Gearman to run jobs, and Gearman can then |
| 37 | distribute those jobs to any number of Jenkins systems (including |
| 38 | multiple Jenkins masters). |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 39 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 40 | In order for Zuul to run any jobs, you will need a running Gearman |
James E. Blair | 77cc7b8 | 2013-07-15 13:22:37 -0700 | [diff] [blame] | 41 | server. Zuul includes a Gearman server, and it is recommended that it |
| 42 | be used as it supports the following features needed by Zuul: |
| 43 | |
| 44 | * Canceling jobs in the queue (admin protocol command "cancel job"). |
| 45 | * Strict FIFO queue operation (gearmand's round-robin mode may be |
| 46 | sufficient, but is untested). |
| 47 | |
| 48 | To enable the built-in server, see the ``gearman_server`` section of |
| 49 | ``zuul.conf``. Be sure that the host allows connections from Zuul and |
| 50 | any workers (e.g., Jenkins masters) on TCP port 4730, and nowhere else |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 51 | (as the Gearman protocol does not include any provision for |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 52 | authentication). |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 53 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 54 | Gearman Jenkins Plugin |
| 55 | ---------------------- |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 56 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 57 | The `Gearman Plugin`_ can be installed in Jenkins in order to |
| 58 | facilitate Jenkins running jobs for Zuul. Install the plugin and |
| 59 | configure it with the hostname or IP address of your Gearman server |
| 60 | and the port on which it is listening (4730 by default). It will |
| 61 | automatically register all known Jenkins jobs as functions that Zuul |
| 62 | can invoke via Gearman. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 63 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 64 | Any number of masters can be configured in this way, and Gearman will |
| 65 | distribute jobs to all of them as appropriate. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 66 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 67 | No special Jenkins job configuration is needed to support triggering |
| 68 | by Zuul. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 69 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 70 | Zuul Parameters |
| 71 | --------------- |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 72 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 73 | Zuul will pass some parameters with every job it launches. The |
| 74 | Gearman Plugin will ensure these are supplied as Jenkins build |
| 75 | parameters, so they will be available for use in the job configuration |
| 76 | as well as to the running job as environment variables. They are as |
| 77 | follows: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 78 | |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 79 | **ZUUL_UUID** |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 80 | Zuul provided key to link builds with Gerrit events |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 81 | **ZUUL_REF** |
| 82 | Zuul provided ref that includes commit(s) to build |
| 83 | **ZUUL_COMMIT** |
| 84 | The commit SHA1 at the head of ZUUL_REF |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 85 | **ZUUL_PROJECT** |
| 86 | The project that triggered this build |
| 87 | **ZUUL_PIPELINE** |
| 88 | The Zuul pipeline that is building this job |
Arx Cruz | b1b010d | 2013-10-28 19:49:59 -0200 | [diff] [blame] | 89 | **ZUUL_URL** |
Joshua Hesketh | ba8776a | 2014-01-12 14:35:40 +0800 | [diff] [blame] | 90 | The url for the zuul server as configured in zuul.conf. |
| 91 | A test runner may use this URL as the basis for fetching |
Arx Cruz | b1b010d | 2013-10-28 19:49:59 -0200 | [diff] [blame] | 92 | git commits. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 93 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 94 | The following additional parameters will only be provided for builds |
| 95 | associated with changes (i.e., in response to patchset-created or |
| 96 | comment-added events): |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 97 | |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 98 | **ZUUL_BRANCH** |
| 99 | The target branch for the change that triggered this build |
| 100 | **ZUUL_CHANGE** |
| 101 | The Gerrit change ID for the change that triggered this build |
| 102 | **ZUUL_CHANGE_IDS** |
| 103 | All of the Gerrit change IDs that are included in this build (useful |
| 104 | when the DependentPipelineManager combines changes for testing) |
| 105 | **ZUUL_PATCHSET** |
| 106 | The Gerrit patchset number for the change that triggered this build |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 107 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 108 | The following additional parameters will only be provided for |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 109 | post-merge (ref-updated) builds: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 110 | |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 111 | **ZUUL_OLDREV** |
| 112 | The SHA1 of the old revision at this ref (recall the ref name is |
| 113 | in ZUUL_REF) |
| 114 | **ZUUL_NEWREV** |
| 115 | The SHA1 of the new revision at this ref (recall the ref name is |
| 116 | in ZUUL_REF) |
| 117 | **ZUUL_SHORT_OLDREV** |
| 118 | The shortened (7 character) SHA1 of the old revision |
| 119 | **ZUUL_SHORT_NEWREV** |
| 120 | The shortened (7 character) SHA1 of the new revision |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 121 | |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 122 | In order to test the correct build, configure the Jenkins Git SCM |
| 123 | plugin as follows:: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 124 | |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 125 | Source Code Management: |
| 126 | Git |
| 127 | Repositories: |
| 128 | Repository URL: <your Gerrit or Zuul repository URL> |
| 129 | Advanced: |
| 130 | Refspec: ${ZUUL_REF} |
| 131 | Branches to build: |
| 132 | Branch Specifier: ${ZUUL_COMMIT} |
James E. Blair | e281901 | 2013-06-28 17:17:26 -0400 | [diff] [blame] | 133 | Advanced: |
| 134 | Clean after checkout: True |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 135 | |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 136 | That should be sufficient for a job that only builds a single project. |
| 137 | If you have multiple interrelated projects (i.e., they share a Zuul |
| 138 | Change Queue) that are built together, you may be able to configure |
| 139 | the Git plugin to prepare them, or you may chose to use a shell script |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 140 | instead. As an example, the OpenStack project uses the following |
| 141 | script to prepare the workspace for its integration testing: |
James E. Blair | 81515ad | 2012-10-01 18:29:08 -0700 | [diff] [blame] | 142 | |
K Jonathan Harker | 97e457e | 2013-02-26 13:29:38 -0800 | [diff] [blame] | 143 | https://github.com/openstack-infra/devstack-gate/blob/master/devstack-vm-gate-wrap.sh |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 144 | |
| 145 | |
| 146 | Zuul-Gearman Protocol |
| 147 | --------------------- |
| 148 | |
| 149 | This section is only relevant if you intend to implement a new kind of |
| 150 | worker that runs jobs for Zuul via Gearman. If you just want to use |
| 151 | Jenkins, see `Gearman Jenkins Plugin`_ instead. |
| 152 | |
| 153 | The Zuul protocol as used with Gearman is as follows: |
| 154 | |
| 155 | Starting Builds |
| 156 | ~~~~~~~~~~~~~~~ |
| 157 | |
| 158 | To start a build, Zuul invokes a Gearman function with the following |
| 159 | format: |
| 160 | |
| 161 | build:FUNCTION_NAME |
| 162 | |
| 163 | where **FUNCTION_NAME** is the name of the job that should be run. If |
| 164 | the job should run on a specific node (or class of node), Zuul will |
| 165 | instead invoke: |
| 166 | |
| 167 | build:FUNCTION_NAME:NODE_NAME |
| 168 | |
| 169 | where **NODE_NAME** is the name or class of node on which the job |
| 170 | should be run. This can be specified by setting the ZUUL_NODE |
Antoine Musso | 7c5db97 | 2013-09-26 11:48:26 +0200 | [diff] [blame] | 171 | parameter in a parameter-function (see :ref:`includes` section in |
| 172 | :ref:`zuulconf`). |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 173 | |
| 174 | Zuul sends the ZUUL_* parameters described in `Zuul Parameters`_ |
| 175 | encoded in JSON format as the argument included with the |
| 176 | SUBMIT_JOB_UNIQ request to Gearman. A unique ID (equal to the |
| 177 | ZUUL_UUID parameter) is also supplied to Gearman, and is accessible as |
| 178 | an added Gearman parameter with GRAB_JOB_UNIQ. |
| 179 | |
| 180 | When a Gearman worker starts running a job for Zuul, it should |
| 181 | immediately send a WORK_DATA packet with the following information |
| 182 | encoded in JSON format: |
| 183 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 184 | **name** |
| 185 | The name of the job. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 186 | |
| 187 | **number** |
| 188 | The build number (unique to this job). |
| 189 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 190 | **manager** |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 191 | A unique identifier associated with the Gearman worker that can |
| 192 | abort this build. See `Stopping Builds`_ for more information. |
| 193 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 194 | **url** (optional) |
| 195 | The URL with the status or results of the build. Will be used in |
| 196 | the status page and the final report. |
| 197 | |
Joshua Hesketh | ba8776a | 2014-01-12 14:35:40 +0800 | [diff] [blame] | 198 | To help with debugging builds a worker may send back some optional |
| 199 | metadata: |
| 200 | |
| 201 | **worker_name** (optional) |
| 202 | The name of the worker. |
| 203 | |
| 204 | **worker_hostname** (optional) |
| 205 | The hostname of the worker. |
| 206 | |
| 207 | **worker_ips** (optional) |
| 208 | A list of IPs for the worker. |
| 209 | |
| 210 | **worker_fqdn** (optional) |
| 211 | The FQDN of the worker. |
| 212 | |
| 213 | **worker_program** (optional) |
| 214 | The program name of the worker. For example Jenkins or turbo-hipster. |
| 215 | |
| 216 | **worker_version** (optional) |
| 217 | The version of the software running the job. |
| 218 | |
| 219 | **worker_extra** (optional) |
| 220 | A dictionary of any extra metadata you may want to pass along. |
| 221 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 222 | It should then immediately send a WORK_STATUS packet with a value of 0 |
| 223 | percent complete. It may then optionally send subsequent WORK_STATUS |
| 224 | packets with updated completion values. |
| 225 | |
| 226 | When the build is complete, it should send a final WORK_DATA packet |
| 227 | with the following in JSON format: |
| 228 | |
| 229 | **result** |
| 230 | Either the string 'SUCCESS' if the job succeeded, or any other value |
| 231 | that describes the result if the job failed. |
| 232 | |
| 233 | Finally, it should send either a WORK_FAIL or WORK_COMPLETE packet as |
| 234 | appropriate. A WORK_EXCEPTION packet will be interpreted as a |
| 235 | WORK_FAIL, but the exception will be logged in Zuul's error log. |
| 236 | |
| 237 | Stopping Builds |
| 238 | ~~~~~~~~~~~~~~~ |
| 239 | |
| 240 | If Zuul needs to abort a build already in progress, it will invoke the |
| 241 | following function through Gearman: |
| 242 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 243 | stop:MANAGER_NAME |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 244 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 245 | Where **MANAGER_NAME** is the name of the manager worker supplied in |
| 246 | the initial WORK_DATA packet when the job started. This is used to |
| 247 | direct the stop: function invocation to the correct Gearman worker |
| 248 | that is capable of stopping that particular job. The argument to the |
| 249 | function should be the following encoded in JSON format: |
| 250 | |
| 251 | **name** |
| 252 | The job name of the build to stop. |
| 253 | |
| 254 | **number** |
| 255 | The build number of the build to stop. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 256 | |
| 257 | The original job is expected to complete with a WORK_DATA and |
| 258 | WORK_FAIL packet as described in `Starting Builds`_. |
| 259 | |
| 260 | Build Descriptions |
| 261 | ~~~~~~~~~~~~~~~~~~ |
| 262 | |
| 263 | In order to update the job running system with a description of the |
| 264 | current state of all related builds, the job runner may optionally |
| 265 | implement the following Gearman function: |
| 266 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 267 | set_description:MANAGER_NAME |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 268 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 269 | Where **MANAGER_NAME** is used as described in `Stopping Builds`_. |
| 270 | The argument to the function is the following encoded in JSON format: |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 271 | |
James E. Blair | 3c483cf | 2013-06-04 16:30:43 -0700 | [diff] [blame] | 272 | **name** |
| 273 | The job name of the build to describe. |
| 274 | |
| 275 | **number** |
| 276 | The build number of the build to describe. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 277 | |
| 278 | **html_description** |
| 279 | The description of the build in HTML format. |