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

Add note about at_exit into README #207

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,21 @@ If you are running in pre-fork servers (such as Unicorn or Puma with multiple pr
make sure you do this **before** the server forks. Otherwise, each child process may delete
files created by other processes on *this* run, instead of deleting old files.

**Large numbers of files**: Because there is an individual file per metric and per process
(which is done to optimize for observation performance), you may end up with a large number
of files. We don't currently have a solution for this problem, but we're working on it.
**Large numbers of files**: Because there is an individual file per metric and
per process (which is done to optimize for observation performance), you may
end up with a large number of files. We don't currently have a solution for
this problem, but it's important to make sure that files get deleted when
worker processes exit. This can be achieved using Ruby's `at_exit` block:

```ruby
at_exit do
FileUtils.rm_f(Dir.glob("/path/to/prometheus_app/tmp/cache/*#{Process.pid}.bin"))
end
```

For Ruby on Rails applications, this can be done via an initializer for
example. It is also a good idea to delete all files during startup to clean up
all leftovers caused by SIGKILL.

**Performance**: Even though this store saves data on disk, it's still much faster than
would probably be expected, because the files are never actually `fsync`ed, so the store
Expand Down