aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-12-07 20:10:03 +0800
committerGitHub <noreply@github.com>2018-12-07 20:10:03 +0800
commitd2328b604a2d4ecdccc47d8f9133593161cbd40a (patch)
tree3881283a2efd3f9051c1776d56b7db5268c054d7
parent661809714e35f69dea23f713dd1e65cff523344c (diff)
parentcf62bd2e8878d880aa9d5b20c05bb348111f6298 (diff)
downloadgo-tangerine-d2328b604a2d4ecdccc47d8f9133593161cbd40a.tar
go-tangerine-d2328b604a2d4ecdccc47d8f9133593161cbd40a.tar.gz
go-tangerine-d2328b604a2d4ecdccc47d8f9133593161cbd40a.tar.bz2
go-tangerine-d2328b604a2d4ecdccc47d8f9133593161cbd40a.tar.lz
go-tangerine-d2328b604a2d4ecdccc47d8f9133593161cbd40a.tar.xz
go-tangerine-d2328b604a2d4ecdccc47d8f9133593161cbd40a.tar.zst
go-tangerine-d2328b604a2d4ecdccc47d8f9133593161cbd40a.zip
Merge pull request #18211 from karalabe/drop-fd-limit
cmd/utils: max out the OS file allowance, don't cap to 2K
-rw-r--r--cmd/utils/flags.go11
1 files changed, 3 insertions, 8 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index d0597c2f1..6a285fcb3 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -824,17 +824,12 @@ func setIPC(ctx *cli.Context, cfg *node.Config) {
// makeDatabaseHandles raises out the number of allowed file handles per process
// for Geth and returns half of the allowance to assign to the database.
func makeDatabaseHandles() int {
- limit, err := fdlimit.Current()
+ limit, err := fdlimit.Maximum()
if err != nil {
Fatalf("Failed to retrieve file descriptor allowance: %v", err)
}
- if limit < 2048 {
- if err := fdlimit.Raise(2048); err != nil {
- Fatalf("Failed to raise file descriptor allowance: %v", err)
- }
- }
- if limit > 2048 { // cap database file descriptors even if more is available
- limit = 2048
+ if err := fdlimit.Raise(uint64(limit)); err != nil {
+ Fatalf("Failed to raise file descriptor allowance: %v", err)
}
return limit / 2 // Leave half for networking and other stuff
}