Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

daemon-subdaemon-removal #416

Merged
merged 31 commits into from
Sep 26, 2023
Merged

Conversation

cgalibern
Copy link
Contributor

No description provided.

daemon components won't anymore embed *subdaemon.T
daemon components won't anymore embed *subdaemon.T
daemon components won't anymore embed *subdaemon.T

t.Stop() now returns when internal waitGroup is done
daemon components won't anymore embed *subdaemon.T

This commit also removes useless code: loop & httpHandler
daemon components won't anymore embed *subdaemon.T
DaemonApi has a new LabelNode member that is defined during api.RegisterHandlers
=> mocked hostname value during tests is applied to daemon api used label node
Previous implementation has unclear start/stop order.

Now created routines that has its own stop methods will use main t.ctx context:
- controller

other routines will use a cancelable context, that is cancelled during t.Stop()
- msgToTx
- msgFromRx
- janitor
- hb drivers

=> Stop()
   1- t.cancel() => cancel msgToTx, msgFromRx, janitor, hb drivers
   2- stop started hb drivers
   3- wait for wait group (msgToTx, msgFromRx and janitor are done)
   4- stop the controller

- msgToTx and msgFromRx returns when it detects cancellation while processing message
This stop the associated goroutine
## all components are now managed by the startStopper interface.

    - hbcache
    - ccfg
    - cstat
    - istat

## Stop function now waits for all components done before return.

## notifyWatchDog functions are now defined in dedicated functions:

    - notifyWatchDogSys (for systemd watch dog)
    - notifyWatchDogBus (for pubsub watch dog)

## use dedicated stopWatcher function to watch for daemon stop requests:

    - stop from signal
    - stop from msgbus.DaemonCtl

## update daemoncli to use Start from daemon instead of RunDaemon
WARNING: DATA RACE
Read at 0x00c004047ae0 by goroutine 91:
  github.com/opensvc/om3/daemon/listener/lsnrhttpux.(*T).Stop()
      .../om3/daemon/listener/lsnrhttpux/main.go:82 +0x19c
  github.com/opensvc/om3/daemon/listener.startStopper·1.Stop-fm()
      <autogenerated>:1 +0x48
  github.com/opensvc/om3/daemon/listener.(*T).Stop()
      .../om3/daemon/listener/main.go:111 +0x1c1
  github.com/opensvc/om3/daemon/daemon.(*T).startComponent.func1()
      .../om3/daemon/daemon/main.go:247 +0xba
  github.com/opensvc/om3/daemon/daemon.(*T).Stop()
      .../om3/daemon/daemon/main.go:165 +0x23a
  github.com/opensvc/om3/daemon/daemon_test.TestDaemon.func2.2()
      .../om3/daemon/daemon/main_test.go:57 +0x39
  testing.tRunner()
      /usr/local/go/src/testing/testing.go:1576 +0x216
  testing.(*T).Run.func1()
      /usr/local/go/src/testing/testing.go:1629 +0x47

Previous write at 0x00c004047ae0 by goroutine 50:
  github.com/opensvc/om3/daemon/listener/lsnrhttpux.(*T).Start.func1()
      .../om3/daemon/listener/lsnrhttpux/main.go:69 +0x6d1
  github.com/opensvc/om3/daemon/listener/lsnrhttpux.(*T).Start.func2()
      .../om3/daemon/listener/lsnrhttpux/main.go:74 +0x47

Goroutine 91 (running) created at:
  testing.(*T).Run()
      /usr/local/go/src/testing/testing.go:1629 +0x805
  github.com/opensvc/om3/daemon/daemon_test.TestDaemon.func2()
      .../om3/daemon/daemon/main_test.go:56 +0x259
  testing.tRunner()
      /usr/local/go/src/testing/testing.go:1576 +0x216
  testing.(*T).Run.func1()
      /usr/local/go/src/testing/testing.go:1629 +0x47

Goroutine 50 (running) created at:
  github.com/opensvc/om3/daemon/listener/lsnrhttpux.(*T).Start()
      .../om3/daemon/listener/lsnrhttpux/main.go:47 +0x204
  github.com/opensvc/om3/daemon/listener.(*T).Start()
      .../om3/daemon/listener/main.go:95 +0xd6c
  github.com/opensvc/om3/daemon/daemon.(*T).startComponent()
      .../om3/daemon/daemon/main.go:241 +0x72
  github.com/opensvc/om3/daemon/daemon.(*T).Start()
      .../om3/daemon/daemon/main.go:146 +0x136e
  github.com/opensvc/om3/daemon/daemon_test.TestDaemon.func2.1()
      .../om3/daemon/daemon/main_test.go:51 +0x58
  testing.tRunner()
      /usr/local/go/src/testing/testing.go:1576 +0x216
  testing.(*T).Run.func1()
      /usr/local/go/src/testing/testing.go:1629 +0x47
==================
@cgalibern cgalibern merged commit b954ff1 into opensvc:main Sep 26, 2023
1 check passed
@cgalibern cgalibern deleted the daemon-subdaemon-removal branch September 30, 2023 12:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant