mirror of
https://github.com/minio/minio.git
synced 2025-11-11 06:20:14 -05:00
Replace Minio refs in docs with MinIO and links (#7494)
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
# Kernel Tuning for Minio Production Deployment on Linux Servers [](https://slack.minio.io) [](https://goreportcard.com/report/minio/minio) [](https://hub.docker.com/r/minio/minio/) [](https://codecov.io/gh/minio/minio)
|
||||
# Kernel Tuning for MinIO Production Deployment on Linux Servers [](https://slack.min.io) [](https://goreportcard.com/report/minio/minio) [](https://hub.docker.com/r/minio/minio/) [](https://codecov.io/gh/minio/minio)
|
||||
|
||||
## Tuning Network Parameters
|
||||
|
||||
Following network parameter settings can help ensure optimal Minio server performance on production workloads.
|
||||
Following network parameter settings can help ensure optimal MinIO server performance on production workloads.
|
||||
|
||||
- *`tcp_fin_timeout`* : A socket left in memory takes approximately 1.5Kb of memory. It makes sense to close the unused sockets preemptively to ensure no memory leakage. This way, even if a peer doesn't close the socket due to some reason, the system itself closes it after a timeout. `tcp_fin_timeout` variable defines this timeout and tells kernel how long to keep sockets in the state FIN-WAIT-2. We recommend setting it to 30. You can set it as shown below
|
||||
|
||||
@@ -60,7 +60,7 @@ Also, set `transparent_hugepage=madvise` on your kernel command line (e.g. in /e
|
||||
|
||||
## Tuning Scheduler
|
||||
|
||||
Proper scheduler configuration makes sure Minio process gets adequate CPU time. Here are the recommended scheduler settings
|
||||
Proper scheduler configuration makes sure MinIO process gets adequate CPU time. Here are the recommended scheduler settings
|
||||
|
||||
- *`sched_min_granularity_ns`*: This parameter decides the minimum time a task will be be allowed to run on CPU before being pre-empted out. We recommend setting it to 10ms.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
## Minio Cloud Storage, (C) 2017, 2018 Minio, Inc.
|
||||
## MinIO Cloud Storage, (C) 2017, 2018 MinIO, Inc.
|
||||
##
|
||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||
## you may not use this file except in compliance with the License.
|
||||
|
||||
Reference in New Issue
Block a user