Merge pull request #162 from overleaf/ta-jpa-epipe-retry

[DockerRunner] retry container inspect on EPIPE
This commit is contained in:
Henry Oswald
2020-05-19 11:15:25 +01:00
committed by GitHub
2 changed files with 83 additions and 15 deletions

View File

@@ -26,6 +26,7 @@ const LockManager = require('./DockerLockManager')
const fs = require('fs') const fs = require('fs')
const Path = require('path') const Path = require('path')
const _ = require('underscore') const _ = require('underscore')
const metrics = require('metrics-sharelatex')
logger.info('using docker runner') logger.info('using docker runner')
@@ -411,10 +412,18 @@ module.exports = DockerRunner = {
}) })
} }
) )
return container.inspect(function(error, stats) { var inspectContainer = (isRetry) =>
container.inspect(function(error, stats) {
if ((error != null ? error.statusCode : undefined) === 404) { if ((error != null ? error.statusCode : undefined) === 404) {
return createAndStartContainer() return createAndStartContainer()
} else if (error != null) { } else if (error != null) {
if (error.message.match(/EPIPE/)) {
if (!isRetry) {
metrics.inc('container-inspect-epipe-retry')
return inspectContainer(true)
}
metrics.inc('container-inspect-epipe-error')
}
logger.err( logger.err(
{ container_name: name, error }, { container_name: name, error },
'unable to inspect container to start' 'unable to inspect container to start'
@@ -424,6 +433,7 @@ module.exports = DockerRunner = {
return startExistingContainer() return startExistingContainer()
} }
}) })
inspectContainer(false)
}, },
attachToContainer(containerId, attachStreamHandler, attachStartCallback) { attachToContainer(containerId, attachStreamHandler, attachStartCallback) {

View File

@@ -36,6 +36,7 @@ describe('DockerRunner', function() {
'logger-sharelatex': (this.logger = { 'logger-sharelatex': (this.logger = {
log: sinon.stub(), log: sinon.stub(),
error: sinon.stub(), error: sinon.stub(),
err: sinon.stub(),
info: sinon.stub(), info: sinon.stub(),
warn: sinon.stub() warn: sinon.stub()
}), }),
@@ -357,8 +358,8 @@ describe('DockerRunner', function() {
return this.DockerRunner.startContainer( return this.DockerRunner.startContainer(
this.options, this.options,
this.volumes, this.volumes,
this.callback, () => {},
() => {} this.callback
) )
}) })
@@ -387,6 +388,63 @@ describe('DockerRunner', function() {
}) })
}) })
describe('when inspect always fails with EPIPE error', function() {
beforeEach(function() {
this.error = new Error('write EPIPE')
this.container.inspect = sinon.stub().yields(this.error)
this.container.start = sinon.stub().yields()
this.DockerRunner.startContainer(
this.options,
this.volumes,
() => {},
this.callback
)
})
it('should retry once', function() {
sinon.assert.callOrder(
this.container.inspect,
this.container.inspect,
this.callback
)
})
it('should call back with error', function() {
sinon.assert.calledWith(this.callback, this.error)
})
})
describe('when inspect fails once with EPIPE error', function() {
beforeEach(function() {
this.container.inspect = sinon.stub()
this.container.inspect.onFirstCall().yields(new Error('write EPIPE'))
this.container.inspect.onSecondCall().yields()
this.container.start = sinon.stub().yields()
this.DockerRunner.startContainer(
this.options,
this.volumes,
() => {},
this.callback
)
})
it('should retry once and start container', function() {
sinon.assert.callOrder(
this.container.inspect,
this.container.inspect,
this.DockerRunner.attachToContainer,
this.container.start,
this.callback
)
})
it('should call back without error', function() {
sinon.assert.calledWith(this.callback, null)
})
})
describe('when the container does not exist', function() { describe('when the container does not exist', function() {
beforeEach(function() { beforeEach(function() {
const exists = false const exists = false