Coder Social home page Coder Social logo

Comments (7)

JohnJiangLA avatar JohnJiangLA commented on May 24, 2024

I got the same question. Is there any hints or answers for this issue?

from redbeat.

JohnJiangLA avatar JohnJiangLA commented on May 24, 2024

I got the same question. Is there any hints or answers for this issue?

I think I got the answer.
I used it in flask, and my code is

entry = RedBeatSchedulerEntry('task-name', 'tasks.some_task', interval, args=['arg1', 2])
entry.save()

as same as the code in the readme file, and it should pass the celery instance that has set up to the RedBeatSchedulerEntry using app param. so ,it should be:

entry = RedBeatSchedulerEntry('task-name', 'tasks.some_task', interval, args=['arg1', 2], app= 'celery_had_set_up')

from redbeat.

rajeshyogeshwar avatar rajeshyogeshwar commented on May 24, 2024

@JohnJiangLA I couldn't trace it to anything. But I observed a certain thing, whenever there was a programming error in the tasks to be scheduled this particular error popped up. It can be completely irrelevant, but it is something that I have observed. Once I fixed the programming error, this error is gone. It's misleading.

from redbeat.

JohnJiangLA avatar JohnJiangLA commented on May 24, 2024

@JohnJiangLA I couldn't trace it to anything. But I observed a certain thing, whenever there was a programming error in the tasks to be scheduled this particular error popped up. It can be completely irrelevant, but it is something that I have observed. Once I fixed the programming error, this error is gone. It's misleading.

@rajeshyogeshwar can you post your code of the myapp.taskapp and the process how the scheduled tasks added ? I think my problem is when the entry is built without the celery having the configure object, but a new instance of celery which didn't configured.

you can see the code in redbeat/scheduler.py where the error raising is getting the redis connection. and the redis_url is None. So the error raising.

entry = RedBeatSchedulerEntry('task-name', 'tasks.some_task', interval, args=['arg1', 2], app= 'celery_had_set_up')

this app param passing the celery instance with the configure to the new RedBeatSchedulerEntry object. and this instance has the property app’ and conf`. and my problem ended.

from redbeat.

rajeshyogeshwar avatar rajeshyogeshwar commented on May 24, 2024

This is the piece I use to schedule a task. Here app is the instance of Celery app.

interval = crontab(hour=1, minute=30, day_of_week='0,1,2,3,4,5,6')
entry = RedBeatSchedulerEntry('task_name', 'app.tasks.task_name', interval, app=app)
entry.save()
print('Scheduled task_name')

Given that I faced this problem quite some time back, I was able to resolve it. But if there is even a typo in any of the tasks module then I still get the same error.

from redbeat.

JohnJiangLA avatar JohnJiangLA commented on May 24, 2024

This is the piece I use to schedule a task. Here app is the instance of Celery app.

interval = crontab(hour=1, minute=30, day_of_week='0,1,2,3,4,5,6')
entry = RedBeatSchedulerEntry('task_name', 'app.tasks.task_name', interval, app=app)
entry.save()
print('Scheduled task_name')

Given that I faced this problem quite some time back, I was able to resolve it. But if there is even a typo in any of the tasks module then I still get the same error.

Sorry, I don't know what the reason why your problem occur.

from redbeat.

rajeshyogeshwar avatar rajeshyogeshwar commented on May 24, 2024

No issues, it doesn't occur anymore. If it ever does then upon bit of looking into code I have usually found out some errors. So, I am assuming that it would have been case with me.

from redbeat.

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.