Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6683899
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:52:34+00:00 2026-05-26T04:52:34+00:00

I need to run some tasks on the specific celeryd instance. So I configured

  • 0

I need to run some tasks on the specific celeryd instance. So I configured queues:

celeryconfig.py:

CELERY_QUEUES = {
    'celery': {
        'exchange': 'celery',
        'binding_key': 'celery',
    },
    'import': {
        'exchange': 'import',
        'binding_key': 'import.products',
    },
}

CELERY_ROUTES = {
    'celery_tasks.import_tasks.test': {
        'queue': 'import',
        'routing_key': 'import.products',
    },
}

import_tasks.py:

@task
def test():
    print 'test'

@task(exchange='import', routing_key='import.products')
def test2
    print 'test2'

then I start celeryd:

celeryd -c 2 -l INFO -Q import

And try to execute that tasks. ‘test’ executes but ‘test2’ do not. But I don’t want to specify every importing task in the CELERY_ROUTES. How can I specify which queue should execute task in the task definition?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T04:52:34+00:00Added an answer on May 26, 2026 at 4:52 am

    Oh, forgot to say that I’ve used send_task function to execute tasks. And this function doesn’t import tasks. It just sends the name of the task to the queue.

    So instead of this:

    from celery.execute import send_task
    
    result = send_task(args.task, task_args, task_kwargs)
    

    I wrote:

    from celery import current_app as celery_app, registry as celery_registry
    
    celery_imports = celery_app.conf.get('CELERY_IMPORTS')
    if celery_imports:
        for module in celery_imports:
            __import__(module)
    
    task = celery_registry.tasks.get(args.task)
    if task:
        result = task.apply_async(task_args, task_kwargs)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to be able to run some scheduled tasks (reports) for an EJB
I have a need to run some automation tasks in a web browser control
I need to run some precompile steps before I build my project using FlexBuilder.
I need to run some classic ASP locally before deployment to a legacy web
I need to run some code that will fetch some configuration values from the
I need to run some p4 commands using a filespec with a changelist but
I need to run some method in Swing application in separate thread. What is
[Rails] I need to run some code only 40% of the times, how may
We need to read and count different types of messages/run some statistics on a
I need to setup NACHOS java version in Linux and run some simple sample

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.