﻿---
title: Too many open file handlers
description: Filebeat keeps the file handler open in case it reaches the end of a file so that it can read new log lines in near real time. If Filebeat is harvesting...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/reference/beats/filebeat/open-file-handlers
products:
  - Beats
  - Filebeat
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# Too many open file handlers
Filebeat keeps the file handler open in case it reaches the end of a file so that it can read new log lines in near real time. If Filebeat is harvesting a large number of files, the number of open files can become an issue. In most environments, the number of files that are actively updated is low. The `close_inactive` configuration option should be set accordingly to close files that are no longer active.
There are additional configuration options that you can use to close file handlers, but all of them should be used carefully because they can have side effects. The options are:
- [`close_renamed`](/elastic/docs-builder/docs/3028/reference/beats/filebeat/filebeat-input-log#filebeat-input-log-close-renamed)
- [`close_removed`](/elastic/docs-builder/docs/3028/reference/beats/filebeat/filebeat-input-log#filebeat-input-log-close-removed)
- [`close_eof`](/elastic/docs-builder/docs/3028/reference/beats/filebeat/filebeat-input-log#filebeat-input-log-close-eof)
- [`close_timeout`](/elastic/docs-builder/docs/3028/reference/beats/filebeat/filebeat-input-log#filebeat-input-log-close-timeout)
- [`harvester_limit`](/elastic/docs-builder/docs/3028/reference/beats/filebeat/filebeat-input-log#filebeat-input-log-harvester-limit)

The `close_renamed` and `close_removed` options can be useful on Windows to resolve issues related to file rotation. See [Open file handlers cause issues with Windows file rotation](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/beats/filebeat/windows-file-rotation). The `close_eof` option can be useful in environments with a large number of files that have only very few entries. The `close_timeout` option is useful in environments where closing file handlers is more important than sending all log lines. For more details, see [Inputs](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/beats/filebeat/configuration-filebeat-options).
Make sure that you read the documentation for these configuration options before using any of them.