File: control

package info (click to toggle)
ruby-puma-worker-killer 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: ruby: 283; makefile: 4
file content (36 lines) | stat: -rw-r--r-- 1,498 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Source: ruby-puma-worker-killer
Section: ruby
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Pirate Praveen <praveen@debian.org>
Build-Depends: debhelper-compat (= 13),
               gem2deb (>= 1),
               puma (>= 4.0~),
               rake (>= 13.0~),
               ruby-get-process-mem (>= 0.2.5~),
               ruby-wait-for-it,
               ruby-bundler,
               ruby-rack (>= 2.0~),
               ruby-rackup,
               rubocop,
Standards-Version: 4.7.3
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-puma-worker-killer.git
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-puma-worker-killer
Homepage: https://github.com/schneems/puma_worker_killer
Testsuite: autopkgtest-pkg-ruby

Package: ruby-puma-worker-killer
Architecture: all
Depends: ${misc:Depends},
         ${ruby:Depends},
         ${shlibs:Depends}
Description: kill memory leaking puma workers
 Memory leaks in web code can be checked using puma_worker_killer.
 .
 When there is a memory leak in a code, finding and plugging it can be a
 herculean effort. Instead what if processes are just killed when they got to
 be too large? The Puma Worker Killer does just that. It is similar to Unicorn
 Worker Killer but for the Puma web server.
 .
 Puma worker killer can only function cluster mode or hybrid mode (threads +
 worker cluster) is enabled. If only using threads (and not workers) then puma
 worker killer cannot help keep memory in control.