Start CircleCI Machines Faster by Using RAM Disk

How to make sure the CI machines are not IO-limited when running Cypress tests in parallel on CircleCI machines

When running Cypress tests in parallel you might notice a curious thing: some of the machines are late to the party!

The first machine starts much earlier compared to the other three machines

The above difference is significant - the first machine goes through the longest spec by the time the other three machines start executing the other specs. The above test run takes longer than necessary, just because the machines are not splitting the load equally. Why is this happening?

We are running the tests on CircleCI using Cypress Orb. Our job definition is identical for all four machines: we simply say that we want 4 parallel containers:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: 2.1
orbs:
cypress: cypress-io/cypress@1
workflows:
build:
jobs:
# first get the source code and install npm dependencies
- cypress/install
- cypress/run:
requires:
- cypress/install
record: true # record results on Cypress Dashboard
parallel: true # split all specs across machines
parallelism: 4 # use 4 CircleCI machines to finish quickly

Let's look at the timings reported by Circle for each of the four containers. Every container prepares the Docker cypress/base image, attaches the workspace with source and dependencies, and then runs the tests. The video below shows the time durations between the machines:

Initial steps for each of the four machines

The time it takes for CircleCI to prepare a Docker image and attach the workspace folder can vary significantly. For this example (which comes from cypress-documentation) the times in seconds were:

Step | M0 | M1 | M2 | M3 --- | --- | --- | --- Spin up | 10 | 2 | 11 | 9 Attaching workspace | 35 | 18 | 29 | 71

Hmm, that's very different - no wonder the machine M1 started testing the spec 60 seconds before the machine M3 joined the run. The above variance is not a fluke. Here are the same timings from cypress-realworld-app test execution.

Timings for starting RealWorld App tests

The time differences between the machines are extreme (in seconds):

Step | M0 | M1 | M2 | M3 | M4 --- | --- | --- | --- | --- Spin up | 9 | 24 | 3 | 4 | 28 Attaching workspace | 16 | 17 | 111 | 39 | 55

What can we do to prepare the machines and start the tests at the same time?

I have asked the CircleCI support forum about this difference. They have blamed it on the CI machines being IO-bound. Meaning the start of the container is very disk-heavy - you are downloading a Docker image, then downloading the workspace archive and copying it to the container. If multiple CI containers all copy lots of files, then the IO system gets full and some machines have to wait their turn, delaying the above steps.

The possible solution is to use the CircleCI RAM disk. It is a special folder that is located not on disk, but entirely on memory. Since even the medium CircleCI machines have plenty of memory, if our Node process needs < 1GB of disk, then it can fit in memory! We are still downloading the Docker image via network, but it should be much less intensive process than downloading and writing it on disk (together with the workspace).

To use the RAM disk, you just set the working directory to /mnt/ram-disk like this:

1
working_directory: /mnt/ramdisk

Of course, in case of Cypress we also want to store the NPM folder and Cypress binary folder on the same disk. To control the Cypress binary cache folder we can use the environment variable CYPRESS_CACHE_FOLDER. We can change the NPM global cache module path using the npm config --global set cache command. Thus the full workflow with a separate single install job and parallel test jobs would be something like this:

.circleci/config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: 2.1
commands:
restore-cached-dependencies:
description: restores the NPM cache and the cached Cypress binary
...
install-dependencies:
# Install NPM dependencies quickly using "npm ci"
# https://on.cypress.io/continuous-integration
# https://docs.npmjs.com/cli/ci
description: installs npm dependencies
...
jobs:
# speed up work by using memory instead of disk
# https://circleci.com/docs/2.0/executor-types/#ram-disks
install-using-ram-disk:
docker:
- image: cypress/base:12.14.0

working_directory: /mnt/ramdisk

environment:
# set Cypress to cache its binary on RAM disk
CYPRESS_CACHE_FOLDER: /mnt/ramdisk/.cache/Cypress

steps:
- checkout
- restore_cache:
keys:
- ram-disk-dependencies-{{ checksum "package.json" }}
# set NPM to cache its dependencies on RAM disk
- run: npm config --global set cache /mnt/ramdisk/.npm
- install-dependencies
# cache NPM and Cypress dependencies for the future build
- save_cache:
paths:
- /mnt/ramdisk/.npm
- /mnt/ramdisk/.cache
key: ram-disk-dependencies-{{ checksum "package.json" }}

# when passing files to run the app and the tests
# we do NOT need the NPM cache since everything has been installed already
- run: rm -rf .npm
# optional: build the application

- persist_to_workspace:
root: /mnt
paths:
- ramdisk

using-ram-disk:
parallelism: 4
docker:
- image: cypress/base:12.14.0

working_directory: /mnt/ramdisk

environment:
# set Cypress to cache its binary on RAM disk
CYPRESS_CACHE_FOLDER: /mnt/ramdisk/.cache/Cypress

steps:
- attach_workspace:
at: /mnt

# optional: start local application

- run:
name: Run Cypress tests
command: npm test

workflows:
version: 2
tests:
jobs:
- install-using-ram-disk
- using-ram-disk:
requires:
- install-using-ram-disk

🎁 You can find the full source code in the repo cypress-io/testing-workshop-cypress and its file .circleci/config.yml.

The entire work is done using the RAM disk. Let's see the new timings for Cypress documentation project:

Timings when using RAM disk

The timings are much more consistent now (in seconds):

Step | M0 | M1 | M2 | M3 --- | --- | --- | --- Spin up | 4 | 3 | 14 | 11 Attaching workspace | 15 | 14 | 15 | 14

The specs are now much more uniform and start approximately at the same time. The latest machine 4 has joined the run only 17 seconds after the first machine.

The new spec timings

⚠️ The RAM disk approach is not yet compatible with Cypress CircleCI Orb because of the assumptions the orb makes about the folders. Follow issue #325 to find when we make the orb faster by allowing to use the RAM disk.