There are some issues with bundle of eventlet, taskflow and apscheduler on Python 3.7. According to [0], replace ThreadPoolExecutor with GreenThreadPoolExecutor [0]: http://lists.openstack.org/pipermail/openstack-dev/2018-July/132481.html Co-Authored-By: Canwei Li <li.canwei2@zte.com.cn> Change-Id: I989d7155eb8764088f91b3ca0d1f47ac6332bf11
72 lines
2.1 KiB
Python
72 lines
2.1 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright (c) 2016 b<>com
|
|
#
|
|
# Authors: Vincent FRANCOISE <vincent.francoise@b-com.com>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from apscheduler import events
|
|
from apscheduler.executors.pool import BasePoolExecutor
|
|
from apscheduler.schedulers import background
|
|
import futurist
|
|
from oslo_service import service
|
|
|
|
job_events = events
|
|
|
|
|
|
class GreenThreadPoolExecutor(BasePoolExecutor):
|
|
"""Green thread pool
|
|
|
|
An executor that runs jobs in a green thread pool.
|
|
Plugin alias: ``threadpool``
|
|
:param max_workers: the maximum number of spawned threads.
|
|
"""
|
|
|
|
def __init__(self, max_workers=10):
|
|
pool = futurist.GreenThreadPoolExecutor(int(max_workers))
|
|
super(GreenThreadPoolExecutor, self).__init__(pool)
|
|
|
|
executors = {
|
|
'default': GreenThreadPoolExecutor(),
|
|
}
|
|
|
|
|
|
class BackgroundSchedulerService(service.ServiceBase,
|
|
background.BackgroundScheduler):
|
|
def __init__(self, gconfig={}, **options):
|
|
if options is None:
|
|
options = {'executors': executors}
|
|
else:
|
|
if 'executors' not in options.keys():
|
|
options['executors'] = executors
|
|
super(BackgroundSchedulerService, self).__init__(
|
|
gconfig, **options)
|
|
|
|
def start(self):
|
|
"""Start service."""
|
|
background.BackgroundScheduler.start(self)
|
|
|
|
def stop(self):
|
|
"""Stop service."""
|
|
self.shutdown()
|
|
|
|
def wait(self):
|
|
"""Wait for service to complete."""
|
|
|
|
def reset(self):
|
|
"""Reset service.
|
|
|
|
Called in case service running in daemon mode receives SIGHUP.
|
|
"""
|