mirror of
https://github.com/docker/compose.git
synced 2025-07-23 13:45:00 +02:00
Use stop grace period for container stop.
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
6cac48c056
commit
079c95c340
@ -24,7 +24,6 @@ from ..config import ConfigurationError
|
|||||||
from ..config import parse_environment
|
from ..config import parse_environment
|
||||||
from ..config.environment import Environment
|
from ..config.environment import Environment
|
||||||
from ..config.serialize import serialize_config
|
from ..config.serialize import serialize_config
|
||||||
from ..const import DEFAULT_TIMEOUT
|
|
||||||
from ..const import IS_WINDOWS_PLATFORM
|
from ..const import IS_WINDOWS_PLATFORM
|
||||||
from ..errors import StreamParseError
|
from ..errors import StreamParseError
|
||||||
from ..progress_stream import StreamOutputError
|
from ..progress_stream import StreamOutputError
|
||||||
@ -726,7 +725,7 @@ class TopLevelCommand(object):
|
|||||||
-t, --timeout TIMEOUT Specify a shutdown timeout in seconds.
|
-t, --timeout TIMEOUT Specify a shutdown timeout in seconds.
|
||||||
(default: 10)
|
(default: 10)
|
||||||
"""
|
"""
|
||||||
timeout = int(options.get('--timeout') or DEFAULT_TIMEOUT)
|
timeout = timeout_from_opts(options)
|
||||||
|
|
||||||
for s in options['SERVICE=NUM']:
|
for s in options['SERVICE=NUM']:
|
||||||
if '=' not in s:
|
if '=' not in s:
|
||||||
@ -760,7 +759,7 @@ class TopLevelCommand(object):
|
|||||||
-t, --timeout TIMEOUT Specify a shutdown timeout in seconds.
|
-t, --timeout TIMEOUT Specify a shutdown timeout in seconds.
|
||||||
(default: 10)
|
(default: 10)
|
||||||
"""
|
"""
|
||||||
timeout = int(options.get('--timeout') or DEFAULT_TIMEOUT)
|
timeout = timeout_from_opts(options)
|
||||||
self.project.stop(service_names=options['SERVICE'], timeout=timeout)
|
self.project.stop(service_names=options['SERVICE'], timeout=timeout)
|
||||||
|
|
||||||
def restart(self, options):
|
def restart(self, options):
|
||||||
@ -773,7 +772,7 @@ class TopLevelCommand(object):
|
|||||||
-t, --timeout TIMEOUT Specify a shutdown timeout in seconds.
|
-t, --timeout TIMEOUT Specify a shutdown timeout in seconds.
|
||||||
(default: 10)
|
(default: 10)
|
||||||
"""
|
"""
|
||||||
timeout = int(options.get('--timeout') or DEFAULT_TIMEOUT)
|
timeout = timeout_from_opts(options)
|
||||||
containers = self.project.restart(service_names=options['SERVICE'], timeout=timeout)
|
containers = self.project.restart(service_names=options['SERVICE'], timeout=timeout)
|
||||||
exit_if(not containers, 'No containers to restart', 1)
|
exit_if(not containers, 'No containers to restart', 1)
|
||||||
|
|
||||||
@ -831,7 +830,7 @@ class TopLevelCommand(object):
|
|||||||
start_deps = not options['--no-deps']
|
start_deps = not options['--no-deps']
|
||||||
cascade_stop = options['--abort-on-container-exit']
|
cascade_stop = options['--abort-on-container-exit']
|
||||||
service_names = options['SERVICE']
|
service_names = options['SERVICE']
|
||||||
timeout = int(options.get('--timeout') or DEFAULT_TIMEOUT)
|
timeout = timeout_from_opts(options)
|
||||||
remove_orphans = options['--remove-orphans']
|
remove_orphans = options['--remove-orphans']
|
||||||
detached = options.get('-d')
|
detached = options.get('-d')
|
||||||
|
|
||||||
@ -896,6 +895,11 @@ def convergence_strategy_from_opts(options):
|
|||||||
return ConvergenceStrategy.changed
|
return ConvergenceStrategy.changed
|
||||||
|
|
||||||
|
|
||||||
|
def timeout_from_opts(options):
|
||||||
|
timeout = options.get('--timeout')
|
||||||
|
return None if timeout is None else int(timeout)
|
||||||
|
|
||||||
|
|
||||||
def image_type_from_opt(flag, value):
|
def image_type_from_opt(flag, value):
|
||||||
if not value:
|
if not value:
|
||||||
return ImageType.none
|
return ImageType.none
|
||||||
|
@ -248,7 +248,3 @@ def parallel_unpause(containers, options):
|
|||||||
|
|
||||||
def parallel_kill(containers, options):
|
def parallel_kill(containers, options):
|
||||||
parallel_operation(containers, 'kill', options, 'Killing')
|
parallel_operation(containers, 'kill', options, 'Killing')
|
||||||
|
|
||||||
|
|
||||||
def parallel_restart(containers, options):
|
|
||||||
parallel_operation(containers, 'restart', options, 'Restarting')
|
|
||||||
|
@ -14,7 +14,6 @@ from .config import ConfigurationError
|
|||||||
from .config.config import V1
|
from .config.config import V1
|
||||||
from .config.sort_services import get_container_name_from_network_mode
|
from .config.sort_services import get_container_name_from_network_mode
|
||||||
from .config.sort_services import get_service_name_from_network_mode
|
from .config.sort_services import get_service_name_from_network_mode
|
||||||
from .const import DEFAULT_TIMEOUT
|
|
||||||
from .const import IMAGE_EVENTS
|
from .const import IMAGE_EVENTS
|
||||||
from .const import LABEL_ONE_OFF
|
from .const import LABEL_ONE_OFF
|
||||||
from .const import LABEL_PROJECT
|
from .const import LABEL_PROJECT
|
||||||
@ -250,7 +249,7 @@ class Project(object):
|
|||||||
|
|
||||||
parallel.parallel_execute(
|
parallel.parallel_execute(
|
||||||
containers,
|
containers,
|
||||||
operator.methodcaller('stop', **options),
|
self.build_container_operation_with_timeout_func('stop', options),
|
||||||
operator.attrgetter('name'),
|
operator.attrgetter('name'),
|
||||||
'Stopping',
|
'Stopping',
|
||||||
get_deps)
|
get_deps)
|
||||||
@ -291,7 +290,12 @@ class Project(object):
|
|||||||
|
|
||||||
def restart(self, service_names=None, **options):
|
def restart(self, service_names=None, **options):
|
||||||
containers = self.containers(service_names, stopped=True)
|
containers = self.containers(service_names, stopped=True)
|
||||||
parallel.parallel_restart(containers, options)
|
|
||||||
|
parallel.parallel_execute(
|
||||||
|
containers,
|
||||||
|
self.build_container_operation_with_timeout_func('restart', options),
|
||||||
|
operator.attrgetter('name'),
|
||||||
|
'Restarting')
|
||||||
return containers
|
return containers
|
||||||
|
|
||||||
def build(self, service_names=None, no_cache=False, pull=False, force_rm=False):
|
def build(self, service_names=None, no_cache=False, pull=False, force_rm=False):
|
||||||
@ -365,7 +369,7 @@ class Project(object):
|
|||||||
start_deps=True,
|
start_deps=True,
|
||||||
strategy=ConvergenceStrategy.changed,
|
strategy=ConvergenceStrategy.changed,
|
||||||
do_build=BuildAction.none,
|
do_build=BuildAction.none,
|
||||||
timeout=DEFAULT_TIMEOUT,
|
timeout=None,
|
||||||
detached=False,
|
detached=False,
|
||||||
remove_orphans=False):
|
remove_orphans=False):
|
||||||
|
|
||||||
@ -506,6 +510,14 @@ class Project(object):
|
|||||||
dep_services.append(service)
|
dep_services.append(service)
|
||||||
return acc + dep_services
|
return acc + dep_services
|
||||||
|
|
||||||
|
def build_container_operation_with_timeout_func(self, operation, options):
|
||||||
|
def container_operation_with_timeout(container):
|
||||||
|
if options.get('timeout') is None:
|
||||||
|
service = self.get_service(container.service)
|
||||||
|
options['timeout'] = service.stop_timeout(None)
|
||||||
|
return getattr(container, operation)(**options)
|
||||||
|
return container_operation_with_timeout
|
||||||
|
|
||||||
|
|
||||||
def get_volumes_from(project, service_dict):
|
def get_volumes_from(project, service_dict):
|
||||||
volumes_from = service_dict.pop('volumes_from', None)
|
volumes_from = service_dict.pop('volumes_from', None)
|
||||||
|
@ -17,6 +17,7 @@ from docker.utils.ports import split_port
|
|||||||
|
|
||||||
from . import __version__
|
from . import __version__
|
||||||
from . import progress_stream
|
from . import progress_stream
|
||||||
|
from . import timeparse
|
||||||
from .config import DOCKER_CONFIG_KEYS
|
from .config import DOCKER_CONFIG_KEYS
|
||||||
from .config import merge_environment
|
from .config import merge_environment
|
||||||
from .config.types import VolumeSpec
|
from .config.types import VolumeSpec
|
||||||
@ -169,7 +170,7 @@ class Service(object):
|
|||||||
self.start_container_if_stopped(c, **options)
|
self.start_container_if_stopped(c, **options)
|
||||||
return containers
|
return containers
|
||||||
|
|
||||||
def scale(self, desired_num, timeout=DEFAULT_TIMEOUT):
|
def scale(self, desired_num, timeout=None):
|
||||||
"""
|
"""
|
||||||
Adjusts the number of containers to the specified number and ensures
|
Adjusts the number of containers to the specified number and ensures
|
||||||
they are running.
|
they are running.
|
||||||
@ -196,7 +197,7 @@ class Service(object):
|
|||||||
return container
|
return container
|
||||||
|
|
||||||
def stop_and_remove(container):
|
def stop_and_remove(container):
|
||||||
container.stop(timeout=timeout)
|
container.stop(timeout=self.stop_timeout(timeout))
|
||||||
container.remove()
|
container.remove()
|
||||||
|
|
||||||
running_containers = self.containers(stopped=False)
|
running_containers = self.containers(stopped=False)
|
||||||
@ -374,7 +375,7 @@ class Service(object):
|
|||||||
|
|
||||||
def execute_convergence_plan(self,
|
def execute_convergence_plan(self,
|
||||||
plan,
|
plan,
|
||||||
timeout=DEFAULT_TIMEOUT,
|
timeout=None,
|
||||||
detached=False,
|
detached=False,
|
||||||
start=True):
|
start=True):
|
||||||
(action, containers) = plan
|
(action, containers) = plan
|
||||||
@ -421,7 +422,7 @@ class Service(object):
|
|||||||
def recreate_container(
|
def recreate_container(
|
||||||
self,
|
self,
|
||||||
container,
|
container,
|
||||||
timeout=DEFAULT_TIMEOUT,
|
timeout=None,
|
||||||
attach_logs=False,
|
attach_logs=False,
|
||||||
start_new_container=True):
|
start_new_container=True):
|
||||||
"""Recreate a container.
|
"""Recreate a container.
|
||||||
@ -432,7 +433,7 @@ class Service(object):
|
|||||||
"""
|
"""
|
||||||
log.info("Recreating %s" % container.name)
|
log.info("Recreating %s" % container.name)
|
||||||
|
|
||||||
container.stop(timeout=timeout)
|
container.stop(timeout=self.stop_timeout(timeout))
|
||||||
container.rename_to_tmp_name()
|
container.rename_to_tmp_name()
|
||||||
new_container = self.create_container(
|
new_container = self.create_container(
|
||||||
previous_container=container,
|
previous_container=container,
|
||||||
@ -446,6 +447,14 @@ class Service(object):
|
|||||||
container.remove()
|
container.remove()
|
||||||
return new_container
|
return new_container
|
||||||
|
|
||||||
|
def stop_timeout(self, timeout):
|
||||||
|
if timeout is not None:
|
||||||
|
return timeout
|
||||||
|
timeout = timeparse.timeparse(self.options.get('stop_grace_period') or '')
|
||||||
|
if timeout is not None:
|
||||||
|
return timeout
|
||||||
|
return DEFAULT_TIMEOUT
|
||||||
|
|
||||||
def start_container_if_stopped(self, container, attach_logs=False, quiet=False):
|
def start_container_if_stopped(self, container, attach_logs=False, quiet=False):
|
||||||
if not container.is_running:
|
if not container.is_running:
|
||||||
if not quiet:
|
if not quiet:
|
||||||
@ -483,10 +492,10 @@ class Service(object):
|
|||||||
link_local_ips=netdefs.get('link_local_ips', None),
|
link_local_ips=netdefs.get('link_local_ips', None),
|
||||||
)
|
)
|
||||||
|
|
||||||
def remove_duplicate_containers(self, timeout=DEFAULT_TIMEOUT):
|
def remove_duplicate_containers(self, timeout=None):
|
||||||
for c in self.duplicate_containers():
|
for c in self.duplicate_containers():
|
||||||
log.info('Removing %s' % c.name)
|
log.info('Removing %s' % c.name)
|
||||||
c.stop(timeout=timeout)
|
c.stop(timeout=self.stop_timeout(timeout))
|
||||||
c.remove()
|
c.remove()
|
||||||
|
|
||||||
def duplicate_containers(self):
|
def duplicate_containers(self):
|
||||||
|
@ -50,3 +50,7 @@ def test_invalid_with_space():
|
|||||||
|
|
||||||
def test_invalid_with_comma():
|
def test_invalid_with_comma():
|
||||||
assert timeparse.timeparse('5h,34m,56s') is None
|
assert timeparse.timeparse('5h,34m,56s') is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_invalid_with_empty_string():
|
||||||
|
assert timeparse.timeparse('') is None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user