TODO.txt 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. - Finish process group reloading that was merged into trunk. We decided to
  2. implement addProcessGroup() such that at the time it is called, it reads the
  3. config from disk and then adds the group if found. It will have no other
  4. side effects and will not require a sort of "refresh" command to be called
  5. prior. We decided that a supervisorctl "avail" command will not be
  6. implemented. We decided that we are not going to implement any kind of DWIM
  7. or "smart" config reloading in the foreseeable future and will remove the
  8. process group "diffing" functionality that attempts to compare the runtime
  9. config to that on disk.
  10. - Add an option that allows numprocs for an existing process group to be
  11. adjusted at runtime. Requested by Roger Hoover.
  12. - Subprocess logging appears to stop when the subprocess moves to the "killing"
  13. state. Reported to the mailing list by Nicolas Grilly on 2008-04-13.
  14. - Supervisorctl tab completion and history.
  15. - Supervisorctl "debug" command (communicate with a process over its stdin).
  16. - Allow effective user to switch to a particular group instead of
  17. defaulting to the user's primary group:
  18. http://www.plope.com/software/collector/233.
  19. - Allow sockchown group only: http://www.plope.com/software/collector/214
  20. - Implement event max_retry counter that means "after X retries of a
  21. rejected event, go into FATAL state".
  22. - FATAL state for supervisor.
  23. - When we try to clear the main log file and we get an IOError or an
  24. OSError (clearLog)
  25. - When we attempt to remove a process log file via os.remove (or
  26. equivalent all into handlers) and we get an IOError or an OSError
  27. (clearProcessLog)
  28. - When we try to kill a process and the os.kill command raises an
  29. exception (stopProcess)
  30. - If eventlisteners repeatedly reject (or crash on) an event, causing
  31. the event to be rebuffered above a reasonable threshold.
  32. - General speed improvement wrangling:
  33. - Play around with creating a select trigger file descriptor for
  34. each event pool. Maybe when an event is accepted by the pool,
  35. write to the file descriptor. This will cause select to time out
  36. and fall through. In an asyncore dispatcher represented by the
  37. file descriptor, attempt to dispatch the event.
  38. - Revisit test_startProcessGroup and test_startAllProcesses (see XXX
  39. comment about ordering).
  40. - Address outstanding collector issues.
  41. - We *might* be able to delay shutdown until all buffered events have
  42. been processed (or a timeout has been reached).
  43. - Web interface:
  44. - Unit tests for meld classes and ui server.
  45. - Meta-refresh on tail page.
  46. - Organize processes by group and allow groups to be started/stopped.
  47. - Support operations against both stderr and stdout logs.
  48. - Allow a supervisorctl-like command line through the web interface.
  49. - Display more information about Supervisor (identification, pid, etc.)
  50. - Expat error on Jens' system running slapd as root after reload.
  51. - Unit tests for log rotation.
  52. - Command-line arg tests.