Open Closed

BackgroundJob Running Multiple Times on Server #2521


User avatar
0
shijo created

If you're creating a bug/problem report, please include the followings:

  • ABP Framework version: v5.0.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace: background job executing multiple times on server, not able to control this job execution.
  • Steps to reproduce the issue: Create a background job. Call/Execute Job.

7 Answer(s)
  • User Avatar
    0
    enisn created
    Support Team .NET Developer

    Do you use multiple instances of that service?

  • User Avatar
    0
    shijo created

    Do you use multiple instances of that service?

    Yes, I am using multiple instances of the service, Is there any way to stop running multiple time?

  • User Avatar
    0
    MichelZ created

    https://github.com/abpframework/abp/issues/10322

  • User Avatar
    0
    shijo created

    I went through the link shared, I have one question only the below section is enough to solve this issue, or do I need to change anything in my background service level code?

    context.Services.AddSingleton<IDistributedLockProvider>(sp => { var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]); return new RedisDistributedSynchronizationProvider(connection.GetDatabase()); });

  • User Avatar
    0
    MichelZ created

    Yes, according to the GitHub issue this should be enough. (Also make sure you have Redis configured correctly)

    No need to change anything in the background service level code.

  • User Avatar
    0
    shijo created

    This is not working as expected, even after adding this code application become too slow to process the requests.

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi,

    Can you share a project and I will check it?

    Or you can use Hangfire or Quartz: https://docs.abp.io/en/abp/latest/Background-Jobs#integrations

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 17, 2025, 10:38