| 
									
										
										
										
											2021-04-19 03:41:13 +08:00
										 |  |  | // Copyright (c) 2015-2021 MinIO, Inc.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This file is part of MinIO Object Storage stack
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2017-03-02 13:51:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-04 01:37:45 +08:00
										 |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-09-09 04:31:51 +08:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2017-10-04 01:37:45 +08:00
										 |  |  | 	"runtime/debug" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-04 20:06:57 +08:00
										 |  |  | 	"github.com/dustin/go-humanize" | 
					
						
							| 
									
										
										
										
											2023-06-20 08:53:08 +08:00
										 |  |  | 	"github.com/minio/madmin-go/v3/kernel" | 
					
						
							| 
									
										
										
										
											2021-08-25 00:14:46 +08:00
										 |  |  | 	"github.com/minio/minio/internal/logger" | 
					
						
							| 
									
										
										
										
											2024-05-25 07:05:23 +08:00
										 |  |  | 	"github.com/minio/pkg/v3/sys" | 
					
						
							| 
									
										
										
										
											2017-10-04 01:37:45 +08:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2017-03-02 13:51:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-11 09:36:13 +08:00
										 |  |  | func oldLinux() bool { | 
					
						
							|  |  |  | 	currentKernel, err := kernel.CurrentVersion() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		// Could not probe the kernel version
 | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if currentKernel == 0 { | 
					
						
							|  |  |  | 		// We could not get any valid value return false
 | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// legacy linux indicator for printing warnings
 | 
					
						
							|  |  |  | 	// about older Linux kernels and Go runtime.
 | 
					
						
							|  |  |  | 	return currentKernel < kernel.Version(4, 0, 0) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-30 19:58:12 +08:00
										 |  |  | func setMaxResources(ctx serverCtxt) (err error) { | 
					
						
							| 
									
										
										
										
											2017-10-04 01:37:45 +08:00
										 |  |  | 	// Set the Go runtime max threads threshold to 90% of kernel setting.
 | 
					
						
							| 
									
										
										
										
											2022-10-03 17:10:15 +08:00
										 |  |  | 	sysMaxThreads, err := sys.GetMaxThreads() | 
					
						
							|  |  |  | 	if err == nil { | 
					
						
							| 
									
										
										
										
											2017-10-04 01:37:45 +08:00
										 |  |  | 		minioMaxThreads := (sysMaxThreads * 90) / 100 | 
					
						
							|  |  |  | 		// Only set max threads if it is greater than the default one
 | 
					
						
							|  |  |  | 		if minioMaxThreads > 10000 { | 
					
						
							|  |  |  | 			debug.SetMaxThreads(minioMaxThreads) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-03 02:34:37 +08:00
										 |  |  | 	var maxLimit uint64 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Set open files limit to maximum.
 | 
					
						
							|  |  |  | 	if _, maxLimit, err = sys.GetMaxOpenFileLimit(); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 04:31:51 +08:00
										 |  |  | 	if maxLimit < 4096 && runtime.GOOS != globalWindowsOSName { | 
					
						
							| 
									
										
										
										
											2022-03-04 05:21:16 +08:00
										 |  |  | 		logger.Info("WARNING: maximum file descriptor limit %d is too low for production servers. At least 4096 is recommended. Fix with \"ulimit -n 4096\"", | 
					
						
							|  |  |  | 			maxLimit) | 
					
						
							| 
									
										
										
										
											2021-08-25 00:14:46 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-03 02:34:37 +08:00
										 |  |  | 	if err = sys.SetMaxOpenFileLimit(maxLimit, maxLimit); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-30 19:58:12 +08:00
										 |  |  | 	_, vssLimit, err := sys.GetMaxMemoryLimit() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-03-02 13:51:57 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-30 19:58:12 +08:00
										 |  |  | 	if vssLimit > 0 && vssLimit < humanize.GiByte { | 
					
						
							|  |  |  | 		logger.Info("WARNING: maximum virtual memory limit (%s) is too small for 'go runtime', please consider setting `ulimit -v` to unlimited", | 
					
						
							|  |  |  | 			humanize.IBytes(vssLimit)) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-04-04 20:06:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-30 19:58:12 +08:00
										 |  |  | 	if ctx.MemLimit > 0 { | 
					
						
							|  |  |  | 		maxLimit = ctx.MemLimit | 
					
						
							| 
									
										
										
										
											2024-04-04 20:06:57 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-05-30 19:58:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if maxLimit > 0 { | 
					
						
							|  |  |  | 		debug.SetMemoryLimit(int64(maxLimit)) | 
					
						
							| 
									
										
										
										
											2024-04-04 20:06:57 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-05-30 19:58:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Do not use RLIMIT_AS as that is not useful and at times on systems < 4Gi
 | 
					
						
							|  |  |  | 	// this can crash the Go runtime if the value is smaller refer
 | 
					
						
							|  |  |  | 	// - https://github.com/golang/go/issues/38010
 | 
					
						
							|  |  |  | 	// - https://github.com/golang/go/issues/43699
 | 
					
						
							|  |  |  | 	// So do not add `sys.SetMaxMemoryLimit()` this is not useful for any practical purposes.
 | 
					
						
							| 
									
										
										
										
											2024-04-04 20:06:57 +08:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } |