GithubHelp home page GithubHelp logo

Comments (2)

rtobar avatar rtobar commented on July 4, 2024

@szampier thanks for reporting this and sorry for taking so long to respond, but I was on leave.

After trying it out I can also see the same behavior. I was able to at least duplicate the problem with the following:

  • Start the server data checker disabled (for simplicity) and started with -autoonline, I see two processes (main and janitor)
  • Send OFFLINE command, I see only the main process
  • Send ONLINE command, I see the main process plus a defunct one

INIT is just OFFLINE + ONLINE in one go, so it would be the same.

The problem was that the code starting/ending the background tasks didn't clear the Event object before starting the background tasks. These events are what we use to coordinate the shutdown of the background tasks when necessary. This is usually when SIGTERM/SIGINT is sent to the server, but also during the OFFLINE command. When shutting down the background tasks we call event.set() and wait for the background tasks to timely react and finish -- but we never clear the event again, so a new ONLINE command started the background tasks, all of which immediately finish, hence the defunct process (the server would have collected it when shutting itself down).

I'll put a patch in now for this, it should appear in master in not too long.

from ngas.

rtobar avatar rtobar commented on July 4, 2024

Done, a fix for this is now on the master branch.

from ngas.

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.