-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathstart.go
1289 lines (1165 loc) · 44.8 KB
/
start.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2015 The Cockroach Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package cli
import (
"bytes"
"context"
"flag"
"fmt"
"io"
"io/ioutil"
"net"
"net/url"
"os"
"os/signal"
"path/filepath"
"runtime"
"runtime/pprof"
"strings"
"text/tabwriter"
"time"
opentracing "github.com/opentracing/opentracing-go"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"google.golang.org/grpc"
"github.com/cockroachdb/cockroach/pkg/base"
"github.com/cockroachdb/cockroach/pkg/build"
"github.com/cockroachdb/cockroach/pkg/cli/cliflags"
"github.com/cockroachdb/cockroach/pkg/rpc"
"github.com/cockroachdb/cockroach/pkg/security"
"github.com/cockroachdb/cockroach/pkg/server"
"github.com/cockroachdb/cockroach/pkg/server/serverpb"
"github.com/cockroachdb/cockroach/pkg/server/status"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/storage/engine"
"github.com/cockroachdb/cockroach/pkg/util/envutil"
"github.com/cockroachdb/cockroach/pkg/util/grpcutil"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/humanizeutil"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/log/logflags"
"github.com/cockroachdb/cockroach/pkg/util/sdnotify"
"github.com/cockroachdb/cockroach/pkg/util/stop"
"github.com/cockroachdb/cockroach/pkg/util/syncutil"
"github.com/cockroachdb/cockroach/pkg/util/sysutil"
"github.com/cockroachdb/cockroach/pkg/util/timeutil"
)
// jemallocHeapDump is an optional function to be called at heap dump time.
// This will be non-nil when jemalloc is linked in with profiling enabled.
// The function takes a filename to write the profile to.
var jemallocHeapDump func(string) error
// StartCmd starts a node by initializing the stores and joining
// the cluster.
var StartCmd = &cobra.Command{
Use: "start",
Short: "start a node",
Long: `
Start a CockroachDB node, which will export data from one or more
storage devices, specified via --store flags.
If no cluster exists yet and this is the first node, no additional
flags are required. If the cluster already exists, and this node is
uninitialized, specify the --join flag to point to any healthy node
(or list of nodes) already part of the cluster.
`,
Example: ` cockroach start --insecure --store=attrs=ssd,path=/mnt/ssd1 [--join=host:port,[host:port]]`,
Args: cobra.NoArgs,
RunE: maybeShoutError(MaybeDecorateGRPCError(runStart)),
}
// maxSizePerProfile is the maximum total size in bytes for profiles per
// profile type.
var maxSizePerProfile = envutil.EnvOrDefaultInt64(
"COCKROACH_MAX_SIZE_PER_PROFILE", 100<<20 /* 100 MB */)
// gcProfiles removes old profiles matching the specified prefix when the sum
// of newer profiles is larger than maxSize. Requires that the suffix used for
// the profiles indicates age (e.g. by using a date/timestamp suffix) such that
// sorting the filenames corresponds to ordering the profiles from oldest to
// newest.
func gcProfiles(dir, prefix string, maxSize int64) {
files, err := ioutil.ReadDir(dir)
if err != nil {
log.Warning(context.Background(), err)
return
}
var sum int64
var found int
for i := len(files) - 1; i >= 0; i-- {
f := files[i]
if !f.Mode().IsRegular() {
continue
}
if !strings.HasPrefix(f.Name(), prefix) {
continue
}
found++
sum += f.Size()
if found == 1 {
// Always keep the most recent profile.
continue
}
if sum <= maxSize {
continue
}
if err := os.Remove(filepath.Join(dir, f.Name())); err != nil {
log.Info(context.Background(), err)
}
}
}
func initMemProfile(ctx context.Context, dir string) {
const jeprof = "jeprof."
const memprof = "memprof."
gcProfiles(dir, jeprof, maxSizePerProfile)
gcProfiles(dir, memprof, maxSizePerProfile)
memProfileInterval := envutil.EnvOrDefaultDuration("COCKROACH_MEMPROF_INTERVAL", -1)
if memProfileInterval <= 0 {
return
}
if min := time.Second; memProfileInterval < min {
log.Infof(ctx, "fixing excessively short memory profiling interval: %s -> %s",
memProfileInterval, min)
memProfileInterval = min
}
if jemallocHeapDump != nil {
log.Infof(ctx, "writing go and jemalloc memory profiles to %s every %s", dir, memProfileInterval)
} else {
log.Infof(ctx, "writing go only memory profiles to %s every %s", dir, memProfileInterval)
log.Infof(ctx, `to enable jmalloc profiling: "export MALLOC_CONF=prof:true" or "ln -s prof:true /etc/malloc.conf"`)
}
go func() {
ctx := context.Background()
t := time.NewTicker(memProfileInterval)
defer t.Stop()
for {
<-t.C
func() {
const format = "2006-01-02T15_04_05.999"
suffix := timeutil.Now().Format(format)
// Try jemalloc heap profile first, we only log errors.
if jemallocHeapDump != nil {
jepath := filepath.Join(dir, jeprof+suffix)
if err := jemallocHeapDump(jepath); err != nil {
log.Warningf(ctx, "error writing jemalloc heap %s: %s", jepath, err)
}
gcProfiles(dir, jeprof, maxSizePerProfile)
}
path := filepath.Join(dir, memprof+suffix)
// Try writing a go heap profile.
f, err := os.Create(path)
if err != nil {
log.Warningf(ctx, "error creating go heap file %s", err)
return
}
defer f.Close()
if err = pprof.WriteHeapProfile(f); err != nil {
log.Warningf(ctx, "error writing go heap %s: %s", path, err)
return
}
gcProfiles(dir, memprof, maxSizePerProfile)
}()
}
}()
}
func initCPUProfile(ctx context.Context, dir string) {
const cpuprof = "cpuprof."
gcProfiles(dir, cpuprof, maxSizePerProfile)
cpuProfileInterval := envutil.EnvOrDefaultDuration("COCKROACH_CPUPROF_INTERVAL", -1)
if cpuProfileInterval <= 0 {
return
}
if min := time.Second; cpuProfileInterval < min {
log.Infof(ctx, "fixing excessively short cpu profiling interval: %s -> %s",
cpuProfileInterval, min)
cpuProfileInterval = min
}
go func() {
defer log.RecoverAndReportPanic(ctx, &serverCfg.Settings.SV)
ctx := context.Background()
t := time.NewTicker(cpuProfileInterval)
defer t.Stop()
var currentProfile *os.File
defer func() {
if currentProfile != nil {
pprof.StopCPUProfile()
currentProfile.Close()
}
}()
for {
func() {
const format = "2006-01-02T15_04_05.999"
suffix := timeutil.Now().Add(cpuProfileInterval).Format(format)
f, err := os.Create(filepath.Join(dir, cpuprof+suffix))
if err != nil {
log.Warningf(ctx, "error creating go cpu file %s", err)
return
}
// Stop the current profile if it exists.
if currentProfile != nil {
pprof.StopCPUProfile()
currentProfile.Close()
currentProfile = nil
gcProfiles(dir, cpuprof, maxSizePerProfile)
}
// Start the new profile.
if err := pprof.StartCPUProfile(f); err != nil {
log.Warningf(ctx, "unable to start cpu profile: %v", err)
f.Close()
return
}
currentProfile = f
}()
<-t.C
}
}()
}
func initBlockProfile() {
// Enable the block profile for a sample of mutex and channel operations.
// Smaller values provide more accurate profiles but are more
// expensive. 0 and 1 are special: 0 disables the block profile and
// 1 captures 100% of block events. For other values, the profiler
// will sample one event per X nanoseconds spent blocking.
//
// The block profile can be viewed with `pprof http://HOST:PORT/debug/pprof/block`
d := envutil.EnvOrDefaultInt64("COCKROACH_BLOCK_PROFILE_RATE",
10000000 /* 1 sample per 10 milliseconds spent blocking */)
runtime.SetBlockProfileRate(int(d))
}
func initMutexProfile() {
// Enable the mutex profile for a fraction of mutex contention events.
// Smaller values provide more accurate profiles but are more expensive. 0
// and 1 are special: 0 disables the mutex profile and 1 captures 100% of
// mutex contention events. For other values, the profiler will sample on
// average 1/X events.
//
// The mutex profile can be viewed with `pprof http://HOST:PORT/debug/pprof/mutex`
d := envutil.EnvOrDefaultInt("COCKROACH_MUTEX_PROFILE_RATE",
1000 /* 1 sample per 1000 mutex contention events */)
runtime.SetMutexProfileFraction(d)
}
var cacheSizeValue = newBytesOrPercentageValue(&serverCfg.CacheSize, memoryPercentResolver)
var sqlSizeValue = newBytesOrPercentageValue(&serverCfg.SQLMemoryPoolSize, memoryPercentResolver)
var diskTempStorageSizeValue = newBytesOrPercentageValue(nil /* v */, nil /* percentResolver */)
func initExternalIODir(ctx context.Context, firstStore base.StoreSpec) (string, error) {
externalIODir := startCtx.externalIODir
if externalIODir == "" && !firstStore.InMemory {
externalIODir = filepath.Join(firstStore.Path, "extern")
}
if externalIODir == "" || externalIODir == "disabled" {
return "", nil
}
if !filepath.IsAbs(externalIODir) {
return "", errors.Errorf("%s path must be absolute", cliflags.ExternalIODir.Name)
}
return externalIODir, nil
}
func initTempStorageConfig(
ctx context.Context,
st *cluster.Settings,
stopper *stop.Stopper,
firstStore base.StoreSpec,
specIdx int,
) (base.TempStorageConfig, error) {
var recordPath string
if !firstStore.InMemory {
recordPath = filepath.Join(firstStore.Path, server.TempDirsRecordFilename)
}
var err error
// Need to first clean up any abandoned temporary directories from
// the temporary directory record file before creating any new
// temporary directories in case the disk is completely full.
if recordPath != "" {
if err = engine.CleanupTempDirs(recordPath); err != nil {
return base.TempStorageConfig{}, errors.Wrap(err, "could not cleanup temporary directories from record file")
}
}
// The temp store size can depend on the location of the first regular store
// (if it's expressed as a percentage), so we resolve that flag here.
var tempStorePercentageResolver percentResolverFunc
if !firstStore.InMemory {
dir := firstStore.Path
// Create the store dir, if it doesn't exist. The dir is required to exist
// by diskPercentResolverFactory.
if err = os.MkdirAll(dir, 0755); err != nil {
return base.TempStorageConfig{}, errors.Wrapf(err, "failed to create dir for first store: %s", dir)
}
tempStorePercentageResolver, err = diskPercentResolverFactory(dir)
if err != nil {
return base.TempStorageConfig{}, errors.Wrapf(err, "failed to create resolver for: %s", dir)
}
} else {
tempStorePercentageResolver = memoryPercentResolver
}
var tempStorageMaxSizeBytes int64
if err = diskTempStorageSizeValue.Resolve(
&tempStorageMaxSizeBytes, tempStorePercentageResolver,
); err != nil {
return base.TempStorageConfig{}, err
}
if !diskTempStorageSizeValue.IsSet() {
// The default temp storage size is different when the temp
// storage is in memory (which occurs when no temp directory
// is specified and the first store is in memory).
if startCtx.tempDir == "" && firstStore.InMemory {
tempStorageMaxSizeBytes = base.DefaultInMemTempStorageMaxSizeBytes
} else {
tempStorageMaxSizeBytes = base.DefaultTempStorageMaxSizeBytes
}
}
// Initialize a base.TempStorageConfig based on first store's spec and
// cli flags.
tempStorageConfig := base.TempStorageConfigFromEnv(
ctx,
st,
firstStore,
startCtx.tempDir,
tempStorageMaxSizeBytes,
specIdx,
)
// Set temp directory to first store's path if the temp storage is not
// in memory.
tempDir := startCtx.tempDir
if tempDir == "" && !tempStorageConfig.InMemory {
tempDir = firstStore.Path
}
// Create the temporary subdirectory for the temp engine.
if tempStorageConfig.Path, err = engine.CreateTempDir(tempDir, server.TempDirPrefix, stopper); err != nil {
return base.TempStorageConfig{}, errors.Wrap(err, "could not create temporary directory for temp storage")
}
// We record the new temporary directory in the record file (if it
// exists) for cleanup in case the node crashes.
if recordPath != "" {
if err = engine.RecordTempDir(recordPath, tempStorageConfig.Path); err != nil {
return base.TempStorageConfig{}, errors.Wrapf(
err,
"could not record temporary directory path to record file: %s",
recordPath,
)
}
}
return tempStorageConfig, nil
}
// runStart starts the cockroach node using --store as the list of
// storage devices ("stores") on this machine and --join as the list
// of other active nodes used to join this node to the cockroach
// cluster, if this is its first time connecting.
func runStart(cmd *cobra.Command, args []string) error {
tBegin := timeutil.Now()
// First things first: if the user wants background processing,
// relinquish the terminal ASAP by forking and exiting.
//
// If executing in the backround, the function returns ok == true in
// the parent process (regardless of err) and the parent exits at
// this point.
if ok, err := maybeRerunBackground(); ok {
return err
}
// Set up the signal handlers. This also ensures that any of these
// signals received beyond this point do not interrupt the startup
// sequence until the point signals are checked below.
// We want to set up signal handling before starting logging, because
// logging uses buffering, and we want to be able to sync
// the buffers in the signal handler below. If we started capturing
// signals later, some startup logging might be lost.
signalCh := make(chan os.Signal, 1)
signal.Notify(signalCh, drainSignals...)
// Set up a tracing span for the start process. We want any logging
// happening beyond this point to be accounted to this start
// context, including logging related to the initialization of
// the logging infrastructure below.
// This span concludes when the startup goroutine started below
// has completed.
tracer := serverCfg.Settings.Tracer
sp := tracer.StartSpan("server start")
ctx := opentracing.ContextWithSpan(context.Background(), sp)
// Set up the logging and profiling output.
//
// We want to do this as early as possible, because most of the code
// in CockroachDB may use logging, and until logging has been
// initialized log files will be created in $TMPDIR instead of their
// expected location.
//
// This initialization uses the various configuration parameters
// initialized by flag handling (before runStart was called). Any
// additional server configuration tweaks for the startup process
// must be necessarily non-logging-related, as logging parameters
// cannot be picked up beyond this point.
stopper, err := setupAndInitializeLoggingAndProfiling(ctx)
if err != nil {
return err
}
serverCfg.HeapProfileDirName = logOutputDirectory()
// We don't care about GRPCs fairly verbose logs in most client commands,
// but when actually starting a server, we enable them.
grpcutil.SetSeverity(log.Severity_WARNING)
// Now perform additional configuration tweaks specific to the start
// command.
//
// This includes propagating server flags dependent on the
// flags specified for the command.
serverCfg.Insecure = startCtx.serverInsecure
serverCfg.SSLCertsDir = startCtx.serverSSLCertsDir
serverCfg.User = security.NodeUser
// As well as derived temporary/auxiliary directory specifications.
if serverCfg.Settings.ExternalIODir, err = initExternalIODir(ctx, serverCfg.Stores.Specs[0]); err != nil {
return err
}
// Find a StoreSpec that has encryption at rest turned on. If can't find
// one, use the first StoreSpec in the list.
var specIdx = 0
for i := range serverCfg.Stores.Specs {
if serverCfg.Stores.Specs[i].ExtraOptions != nil {
specIdx = i
}
}
useStore := serverCfg.Stores.Specs[specIdx]
if serverCfg.TempStorageConfig, err = initTempStorageConfig(ctx, serverCfg.Settings, stopper, useStore, specIdx); err != nil {
return err
}
// Initialize the node's configuration from startup parameters.
// This also reads the part of the configuration that comes from
// environment variables.
if err := serverCfg.InitNode(); err != nil {
return errors.Wrap(err, "failed to initialize node")
}
// The configuration is now ready to report to the user and the log
// file. We had to wait after InitNode() so that all configuration
// environment variables, which are reported too, have been read and
// registered.
reportConfiguration(ctx)
// ReadyFn will be called when the server has started listening on
// its network sockets, but perhaps before it has done bootstrapping
// and thus before Start() completes.
serverCfg.ReadyFn = func(waitForInit bool) {
// Inform the user if the network settings are suspicious. We need
// to do that after starting to listen because we need to know
// which advertise address NewServer() has decided.
hintServerCmdFlags(ctx, cmd)
// If another process was waiting on the PID (e.g. using a FIFO),
// this is when we can tell them the node has started listening.
if startCtx.pidFile != "" {
log.Infof(ctx, "PID file: %s", startCtx.pidFile)
if err := ioutil.WriteFile(startCtx.pidFile, []byte(fmt.Sprintf("%d\n", os.Getpid())), 0644); err != nil {
log.Errorf(ctx, "failed writing the PID: %v", err)
}
}
if waitForInit {
log.Shout(ctx, log.Severity_INFO,
"initial startup completed, will now wait for `cockroach init`\n"+
"or a join to a running cluster to start accepting clients.\n"+
"Check the log file(s) for progress.")
}
// Ensure the configuration logging is written to disk in case a
// process is waiting for the sdnotify readiness to read important
// information from there.
log.Flush()
// Signal readiness. This unblocks the process when running with
// --background or under systemd.
if err := sdnotify.Ready(); err != nil {
log.Errorf(ctx, "failed to signal readiness using systemd protocol: %s", err)
}
}
// DelayedBoostrapFn will be called if the boostrap process is
// taking a bit long.
serverCfg.DelayedBootstrapFn = func() {
msg := `The server appears to be unable to contact the other nodes in the cluster. Please try:
- starting the other nodes, if you haven't already;
- double-checking that the '--join' and '--listen'/'--advertise' flags are set up correctly;
- running the 'cockroach init' command if you are trying to initialize a new cluster.
If problems persist, please see ` + base.DocsURL("cluster-setup-troubleshooting.html") + "."
if !startCtx.inBackground {
log.Shout(context.Background(), log.Severity_WARNING, msg)
} else {
// Don't shout to stderr since the server will have detached by
// the time this function gets called.
log.Warningf(ctx, msg)
}
}
// Beyond this point, the configuration is set and the server is
// ready to start.
log.Info(ctx, "starting cockroach node")
// Run the rest of the startup process in a goroutine separate from
// the main goroutine to avoid preventing proper handling of signals
// if we get stuck on something during initialization (#10138).
var serverStatusMu struct {
syncutil.Mutex
// Used to synchronize server startup with server shutdown if something
// interrupts the process during initialization (it isn't safe to try to
// drain a server that doesn't exist or is in the middle of starting up,
// or to start a server after draining has begun).
started, draining bool
}
var s *server.Server
errChan := make(chan error, 1)
go func() {
// Ensure that the log files see the startup messages immediately.
defer log.Flush()
// If anything goes dramatically wrong, use Go's panic/recover
// mechanism to intercept the panic and log the panic details to
// the error reporting server.
defer func() {
if s != nil {
// We only attempt to log the panic details if the server has
// actually been started successfully. If there's no server,
// we won't know enough to decide whether reporting is
// permitted.
log.RecoverAndReportPanic(ctx, &s.ClusterSettings().SV)
}
}()
// When the start up goroutine completes, so can the start up span
// defined above.
defer sp.Finish()
// Any error beyond this point should be reported through the
// errChan defined above. However, in Go the code pattern "if err
// != nil { return err }" is more common. Expecting contributors
// to remember to write "if err != nil { errChan <- err }" beyond
// this point is optimistic. To avoid any error, we capture all
// the error returns in a closure, and do the errChan reporting,
// if needed, when that function returns.
if err := func() error {
// Instantiate the server.
var err error
s, err = server.NewServer(serverCfg, stopper)
if err != nil {
return errors.Wrap(err, "failed to start server")
}
// Have we already received a signal to terminate? If so, just
// stop here.
serverStatusMu.Lock()
draining := serverStatusMu.draining
serverStatusMu.Unlock()
if draining {
return nil
}
// Attempt to start the server.
if err := s.Start(ctx); err != nil {
if le, ok := err.(server.ListenError); ok {
const errorPrefix = "consider changing the port via --"
if le.Addr == serverCfg.Addr {
err = errors.Wrap(err, errorPrefix+cliflags.ListenAddr.Name)
} else if le.Addr == serverCfg.HTTPAddr {
err = errors.Wrap(err, errorPrefix+cliflags.ListenHTTPAddr.Name)
}
}
return errors.Wrap(err, "cockroach server exited with error")
}
// Server started, notify the shutdown monitor running concurrently.
serverStatusMu.Lock()
serverStatusMu.started = true
serverStatusMu.Unlock()
// Start up the update check loop.
// We don't do this in (*server.Server).Start() because we don't want it
// in tests.
if !envutil.EnvOrDefaultBool("COCKROACH_SKIP_UPDATE_CHECK", false) {
s.PeriodicallyCheckForUpdates(ctx)
}
// Now inform the user that the server is running and tell the
// user about its run-time derived parameters.
pgURL, err := serverCfg.PGURL(url.User(security.RootUser))
if err != nil {
return err
}
var buf bytes.Buffer
info := build.GetInfo()
tw := tabwriter.NewWriter(&buf, 2, 1, 2, ' ', 0)
fmt.Fprintf(tw, "CockroachDB node starting at %s (took %0.1fs)\n", timeutil.Now(), timeutil.Since(tBegin).Seconds())
fmt.Fprintf(tw, "build:\t%s %s @ %s (%s)\n", info.Distribution, info.Tag, info.Time, info.GoVersion)
fmt.Fprintf(tw, "webui:\t%s\n", serverCfg.AdminURL())
fmt.Fprintf(tw, "sql:\t%s\n", pgURL)
fmt.Fprintf(tw, "client flags:\t%s\n", clientFlags())
if len(serverCfg.SocketFile) != 0 {
fmt.Fprintf(tw, "socket:\t%s\n", serverCfg.SocketFile)
}
fmt.Fprintf(tw, "logs:\t%s\n", flag.Lookup("log-dir").Value)
if serverCfg.SQLAuditLogDirName.IsSet() {
fmt.Fprintf(tw, "SQL audit logs:\t%s\n", serverCfg.SQLAuditLogDirName)
}
if serverCfg.Attrs != "" {
fmt.Fprintf(tw, "attrs:\t%s\n", serverCfg.Attrs)
}
if len(serverCfg.Locality.Tiers) > 0 {
fmt.Fprintf(tw, "locality:\t%s\n", serverCfg.Locality)
}
if s.TempDir() != "" {
fmt.Fprintf(tw, "temp dir:\t%s\n", s.TempDir())
}
if ext := s.ClusterSettings().ExternalIODir; ext != "" {
fmt.Fprintf(tw, "external I/O path: \t%s\n", ext)
} else {
fmt.Fprintf(tw, "external I/O path: \t<disabled>\n")
}
for i, spec := range serverCfg.Stores.Specs {
fmt.Fprintf(tw, "store[%d]:\t%s\n", i, spec)
}
initialBoot := s.InitialBoot()
nodeID := s.NodeID()
if initialBoot {
if nodeID == server.FirstNodeID {
fmt.Fprintf(tw, "status:\tinitialized new cluster\n")
} else {
fmt.Fprintf(tw, "status:\tinitialized new node, joined pre-existing cluster\n")
}
} else {
fmt.Fprintf(tw, "status:\trestarted pre-existing node\n")
}
// Remember the cluster ID for log file rotation.
clusterID := s.ClusterID().String()
log.SetClusterID(clusterID)
fmt.Fprintf(tw, "clusterID:\t%s\n", clusterID)
fmt.Fprintf(tw, "nodeID:\t%d\n", nodeID)
if err := tw.Flush(); err != nil {
return err
}
msg := buf.String()
log.Infof(ctx, "node startup completed:\n%s", msg)
if !startCtx.inBackground && !log.LoggingToStderr(log.Severity_INFO) {
fmt.Print(msg)
}
// If the invoker has requested an URL update, do it now that
// the server is ready to accept SQL connections. We do this
// here and not in ReadyFn because we need to wait for bootstrap
// to complete.
if startCtx.listeningURLFile != "" {
log.Infof(ctx, "listening URL file: %s", startCtx.listeningURLFile)
pgURL, err := serverCfg.PGURL(url.User(security.RootUser))
if err == nil {
err = ioutil.WriteFile(startCtx.listeningURLFile, []byte(fmt.Sprintf("%s\n", pgURL)), 0644)
}
if err != nil {
log.Error(ctx, err)
}
}
return nil
}(); err != nil {
errChan <- err
}
}()
// The remainder of the main function executes concurrently with the
// start up goroutine started above.
//
// It is concerned with determining when the server should stop
// because the main process is being shut down -- either via a stop
// message received from `cockroach quit` / `cockroach
// decommission`, or a signal.
// We'll want to log any shutdown activity against a separate span.
shutdownSpan := tracer.StartSpan("server shutdown")
defer shutdownSpan.Finish()
shutdownCtx := opentracing.ContextWithSpan(context.Background(), shutdownSpan)
// returnErr will be populated with the error to use to exit the
// process (reported to the shell).
var returnErr error
stopWithoutDrain := make(chan struct{}) // closed if interrupted very early
// Block until one of the signals above is received or the stopper
// is stopped externally (for example, via the quit endpoint).
select {
case err := <-errChan:
// SetSync both flushes and ensures that subsequent log writes are flushed too.
log.SetSync(true)
return err
case <-stopper.ShouldStop():
// Server is being stopped externally and our job is finished
// here since we don't know if it's a graceful shutdown or not.
<-stopper.IsStopped()
// SetSync both flushes and ensures that subsequent log writes are flushed too.
log.SetSync(true)
return nil
case sig := <-signalCh:
// We start synchronizing log writes from here, because if a
// signal was received there is a non-zero chance the sender of
// this signal will follow up with SIGKILL if the shutdown is not
// timely, and we don't want logs to be lost.
log.SetSync(true)
log.Infof(shutdownCtx, "received signal '%s'", sig)
if sig == os.Interrupt {
// Graceful shutdown after an interrupt should cause the process
// to terminate with a non-zero exit code; however SIGTERM is
// "legitimate" and should be acknowledged with a success exit
// code. So we keep the error state here for later.
returnErr = &cliError{
exitCode: 1,
// INFO because a single interrupt is rather innocuous.
severity: log.Severity_INFO,
cause: errors.New("interrupted"),
}
msgDouble := "Note: a second interrupt will skip graceful shutdown and terminate forcefully"
fmt.Fprintln(os.Stdout, msgDouble)
}
// Start the draining process in a separate goroutine so that it
// runs concurrently with the timeout check below.
go func() {
serverStatusMu.Lock()
serverStatusMu.draining = true
drainingIsSafe := serverStatusMu.started
serverStatusMu.Unlock()
// drainingIsSafe may have been set in the meantime, but that's ok.
// In the worst case, we're not draining a Server that has *just*
// started. Not desirable, but not terrible either.
if !drainingIsSafe {
close(stopWithoutDrain)
return
}
// Don't use shutdownCtx because this is in a goroutine that may
// still be running after shutdownCtx's span has been finished.
ac := log.AmbientContext{}
ac.AddLogTag("server drain process", nil)
drainCtx := ac.AnnotateCtx(context.Background())
if _, err := s.Drain(drainCtx, server.GracefulDrainModes); err != nil {
log.Warning(drainCtx, err)
}
stopper.Stop(drainCtx)
}()
// Don't return: we're shutting down gracefully.
case <-log.FatalChan():
// A fatal error has occurred. Stop everything (gracelessly) to
// avoid serving incorrect data while the final log messages are
// being written.
// https://github.com/cockroachdb/cockroach/issues/23414
// TODO(bdarnell): This could be more graceless, for example by
// reaching into the server objects and closing all the
// connections while they're in use. That would be more in line
// with the expected effect of a log.Fatal.
stopper.Stop(shutdownCtx)
// The logging goroutine is now responsible for killing this
// process, so just block this goroutine.
select {}
}
// At this point, a signal has been received to shut down the
// process, and a goroutine is busy telling the server to drain and
// stop. From this point on, we just have to wait until the server
// indicates it has stopped.
const msgDrain = "initiating graceful shutdown of server"
log.Info(shutdownCtx, msgDrain)
fmt.Fprintln(os.Stdout, msgDrain)
// Notify the user every 5 second of the shutdown progress.
go func() {
ticker := time.NewTicker(5 * time.Second)
defer ticker.Stop()
for {
select {
case <-ticker.C:
log.Infof(context.Background(), "%d running tasks", stopper.NumTasks())
case <-stopper.ShouldStop():
return
case <-stopWithoutDrain:
return
}
}
}()
// Meanwhile, we don't want to wait too long either, in case the
// server is getting stuck and doesn't shut down in a timely manner.
//
// So we also pay attention to any additional signal received beyond
// this point (maybe some service monitor was impatient and sends
// another signal to hasten the shutdown process).
// And we also pay attention to an additional timeout.
//
// If any such trigger to hasten occurs, we simply return, which
// will cause the process to exit and the server goroutines to be
// forcefully terminated.
const hardShutdownHint = " - node may take longer to restart & clients may need to wait for leases to expire"
select {
case sig := <-signalCh:
// This new signal is not welcome, as it interferes with the graceful
// shutdown process.
log.Shout(shutdownCtx, log.Severity_ERROR, fmt.Sprintf(
"received signal '%s' during shutdown, initiating hard shutdown%s", sig, hardShutdownHint))
handleSignalDuringShutdown(sig)
panic("unreachable")
case <-time.After(time.Minute):
return errors.Errorf("time limit reached, initiating hard shutdown%s", hardShutdownHint)
case <-stopper.IsStopped():
const msgDone = "server drained and shutdown completed"
log.Infof(shutdownCtx, msgDone)
fmt.Fprintln(os.Stdout, msgDone)
case <-stopWithoutDrain:
const msgDone = "too early to drain; used hard shutdown instead"
log.Infof(shutdownCtx, msgDone)
fmt.Fprintln(os.Stdout, msgDone)
}
return returnErr
}
func hintServerCmdFlags(ctx context.Context, cmd *cobra.Command) {
pf := cmd.Flags()
listenAddrSpecified := pf.Lookup(cliflags.ListenAddr.Name).Changed || pf.Lookup(cliflags.ServerHost.Name).Changed
advAddrSpecified := pf.Lookup(cliflags.AdvertiseAddr.Name).Changed || pf.Lookup(cliflags.AdvertiseHost.Name).Changed
if !listenAddrSpecified && !advAddrSpecified {
host, _, _ := net.SplitHostPort(serverCfg.AdvertiseAddr)
log.Shout(ctx, log.Severity_WARNING,
"neither --listen-addr nor --advertise-addr was specified.\n"+
"The server will advertise "+fmt.Sprintf("%q", host)+" to other nodes, is this routable?\n\n"+
"Consider using:\n"+
"- for local-only servers: --listen-addr=localhost\n"+
"- for multi-node clusters: --advertise-addr=<host/IP addr>\n")
}
}
func clientFlags() string {
flags := []string{os.Args[0], "<client cmd>"}
host, port, err := net.SplitHostPort(serverCfg.AdvertiseAddr)
if err == nil {
flags = append(flags, "--host="+host+":"+port)
}
if startCtx.serverInsecure {
flags = append(flags, "--insecure")
} else {
flags = append(flags, "--certs-dir="+startCtx.serverSSLCertsDir)
}
return strings.Join(flags, " ")
}
func reportConfiguration(ctx context.Context) {
serverCfg.Report(ctx)
if envVarsUsed := envutil.GetEnvVarsUsed(); len(envVarsUsed) > 0 {
log.Infof(ctx, "using local environment variables: %s", strings.Join(envVarsUsed, ", "))
}
// If a user ever reports "bad things have happened", any
// troubleshooting steps will want to rule out that the user was
// running as root in a multi-user environment, or using different
// uid/gid across runs in the same data directory. To determine
// this, it's easier if the information appears in the log file.
log.Infof(ctx, "process identity: %s", sysutil.ProcessIdentity())
}
func maybeWarnMemorySizes(ctx context.Context) {
// Is the cache configuration OK?
if !cacheSizeValue.IsSet() {
var buf bytes.Buffer
fmt.Fprintf(&buf, "Using the default setting for --cache (%s).\n", cacheSizeValue)
fmt.Fprintf(&buf, " A significantly larger value is usually needed for good performance.\n")
if size, err := status.GetTotalMemory(context.Background()); err == nil {
fmt.Fprintf(&buf, " If you have a dedicated server a reasonable setting is --cache=.25 (%s).",
humanizeutil.IBytes(size/4))
} else {
fmt.Fprintf(&buf, " If you have a dedicated server a reasonable setting is 25%% of physical memory.")
}
log.Warning(ctx, buf.String())
}
if !sqlSizeValue.IsSet() {
var buf bytes.Buffer
fmt.Fprintf(&buf, "Using the default setting for --max-sql-memory (%s).\n", sqlSizeValue)
fmt.Fprintf(&buf, " A significantly larger value is usually needed in production.\n")
if size, err := status.GetTotalMemory(context.Background()); err == nil {
fmt.Fprintf(&buf, " If you have a dedicated server a reasonable setting is --max-sql-memory=.25 (%s).",
humanizeutil.IBytes(size/4))
} else {
fmt.Fprintf(&buf, " If you have a dedicated server a reasonable setting is 25%% of physical memory.")
}
log.Warning(ctx, buf.String())
}
// Check that the total suggested "max" memory is well below the available memory.
if maxMemory, err := status.GetTotalMemory(ctx); err == nil {
requestedMem := serverCfg.CacheSize + serverCfg.SQLMemoryPoolSize
maxRecommendedMem := int64(.75 * float64(maxMemory))
if requestedMem > maxRecommendedMem {
log.Shout(ctx, log.Severity_WARNING, fmt.Sprintf(
"the sum of --max-sql-memory (%s) and --cache (%s) is larger than 75%% of total RAM (%s).\nThis server is running at increased risk of memory-related failures.",
sqlSizeValue, cacheSizeValue, humanizeutil.IBytes(maxRecommendedMem)))
}
}
}
func logOutputDirectory() string {
return startCtx.logDir.String()
}
// setupAndInitializeLoggingAndProfiling does what it says on the label.
// Prior to this however it determines suitable defaults for the
// logging output directory and the verbosity level of stderr logging.
// We only do this for the "start" command which is why this work
// occurs here and not in an OnInitialize function.
func setupAndInitializeLoggingAndProfiling(ctx context.Context) (*stop.Stopper, error) {
// Default the log directory to the "logs" subdirectory of the first
// non-memory store. If more than one non-memory stores is detected,
// print a warning.
ambiguousLogDirs := false
if !startCtx.logDir.IsSet() && !startCtx.logDirFlag.Changed {
// We only override the log directory if the user has not explicitly
// disabled file logging using --log-dir="".
newDir := ""
for _, spec := range serverCfg.Stores.Specs {
if spec.InMemory {
continue
}
if newDir != "" {
ambiguousLogDirs = true
break
}
newDir = filepath.Join(spec.Path, "logs")
}
if err := startCtx.logDir.Set(newDir); err != nil {
return nil, err
}
}
if logDir := startCtx.logDir.String(); logDir != "" {
ls := cockroachCmd.PersistentFlags().Lookup(logflags.LogToStderrName)
if !ls.Changed {
// Unless the settings were overridden by the user, silence
// logging to stderr because the messages will go to a log file.