mirror of
				https://github.com/minio/minio.git
				synced 2025-10-31 08:11:19 +01:00 
			
		
		
		
	Also shutdown poll add jitter, to verify if the shutdown sequence can finish before 500ms, this reduces the overall time taken during "restart" of the service. Provides speedup for `mc admin service restart` during active I/O, also ensures that systemd doesn't treat the returned 'error' as a failure, certain configurations in systemd can cause it to 'auto-restart' the process by-itself which can interfere with `mc admin service restart`. It can be observed how now restarting the service is much snappier.
		
			
				
	
	
		
			102 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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/>.
 | |
| 
 | |
| package cmd
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"errors"
 | |
| 	"net/http"
 | |
| 	"os"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/coreos/go-systemd/v22/daemon"
 | |
| 	"github.com/minio/minio/internal/logger"
 | |
| )
 | |
| 
 | |
| func handleSignals() {
 | |
| 	// Custom exit function
 | |
| 	exit := func(success bool) {
 | |
| 		// If global profiler is set stop before we exit.
 | |
| 		globalProfilerMu.Lock()
 | |
| 		defer globalProfilerMu.Unlock()
 | |
| 		for _, p := range globalProfiler {
 | |
| 			p.Stop()
 | |
| 		}
 | |
| 
 | |
| 		if success {
 | |
| 			os.Exit(0)
 | |
| 		}
 | |
| 
 | |
| 		os.Exit(1)
 | |
| 	}
 | |
| 
 | |
| 	stopProcess := func() bool {
 | |
| 		// send signal to various go-routines that they need to quit.
 | |
| 		cancelGlobalContext()
 | |
| 
 | |
| 		if httpServer := newHTTPServerFn(); httpServer != nil {
 | |
| 			if err := httpServer.Shutdown(); err != nil && !errors.Is(err, http.ErrServerClosed) {
 | |
| 				logger.LogIf(context.Background(), err)
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		if objAPI := newObjectLayerFn(); objAPI != nil {
 | |
| 			logger.LogIf(context.Background(), objAPI.Shutdown(context.Background()))
 | |
| 		}
 | |
| 
 | |
| 		if srv := newConsoleServerFn(); srv != nil {
 | |
| 			logger.LogIf(context.Background(), srv.Shutdown())
 | |
| 		}
 | |
| 
 | |
| 		if globalEventNotifier != nil {
 | |
| 			globalEventNotifier.RemoveAllBucketTargets()
 | |
| 		}
 | |
| 
 | |
| 		return true
 | |
| 	}
 | |
| 
 | |
| 	for {
 | |
| 		select {
 | |
| 		case err := <-globalHTTPServerErrorCh:
 | |
| 			logger.LogIf(context.Background(), err)
 | |
| 			exit(stopProcess())
 | |
| 		case osSignal := <-globalOSSignalCh:
 | |
| 			logger.Info("Exiting on signal: %s", strings.ToUpper(osSignal.String()))
 | |
| 			daemon.SdNotify(false, daemon.SdNotifyStopping)
 | |
| 			exit(stopProcess())
 | |
| 		case signal := <-globalServiceSignalCh:
 | |
| 			switch signal {
 | |
| 			case serviceRestart:
 | |
| 				logger.Info("Restarting on service signal")
 | |
| 				daemon.SdNotify(false, daemon.SdNotifyReloading)
 | |
| 				stop := stopProcess()
 | |
| 				rerr := restartProcess()
 | |
| 				if rerr == nil {
 | |
| 					daemon.SdNotify(false, daemon.SdNotifyReady)
 | |
| 				}
 | |
| 				logger.LogIf(context.Background(), rerr)
 | |
| 				exit(stop && rerr == nil)
 | |
| 			case serviceStop:
 | |
| 				logger.Info("Stopping on service signal")
 | |
| 				daemon.SdNotify(false, daemon.SdNotifyStopping)
 | |
| 				exit(stopProcess())
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 |