Giter Site home page Giter Site logo

Comments (6)

viniciuschiele avatar viniciuschiele commented on May 18, 2024

Hi @mrabhiram

Your jobs above are running parallely, each job runs on its own thread, the default is 10 max concurrent threads.

This code below (python 3+) shows that each job is running in a different thread.

import threading

def job1(a, b):
    print(threading.current_thread().name)
    print(str(a) + ' ' + str(b))

from flask-apscheduler.

mrabhiram avatar mrabhiram commented on May 18, 2024

Okay, Thank you. Can i change the max concurrent threads? if so , where do i do that?

from flask-apscheduler.

viniciuschiele avatar viniciuschiele commented on May 18, 2024

You have to explicitly set an executor in your config object.

class Config(object):
    JOBS = [
        {
            'id': 'job1',
            'func': 'jobs:job1',
            'args': (1, 2),
            'trigger': 'interval',
            'seconds': 10
        },
       {
            'id': 'job2',
            'func': 'jobs:job1',
            'args': (3, 4),
            'trigger': 'interval',
            'seconds': 10
        }
    ]

    SCHEDULER_EXECUTORS = {
        'default': {'type': 'threadpool', 'max_workers': 20}
    }

    SCHEDULER_API_ENABLED = True

from flask-apscheduler.

mrabhiram avatar mrabhiram commented on May 18, 2024

Thank you. Can many workers is the max that APScheduler can handle? Or the max is only 20?

from flask-apscheduler.

viniciuschiele avatar viniciuschiele commented on May 18, 2024

There isn't a limit for the number of workers, it's up to you.

from flask-apscheduler.

mrabhiram avatar mrabhiram commented on May 18, 2024

Awesome. Thanks!

from flask-apscheduler.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.