forked from tarantool/cartridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cartridge.lua
1072 lines (932 loc) · 32.1 KB
/
cartridge.lua
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
--- Tarantool framework for distributed applications development.
--
-- Cartridge provides you a simple way
-- to manage distributed applications operations.
-- The cluster consists of several Tarantool instances acting in concert.
-- Cartridge does not care about how the instances start,
-- it only cares about the configuration of already running processes.
--
-- Cartridge automates vshard and replication configuration,
-- simplifies custom configuration and administrative tasks.
-- @module cartridge
local title = require('title')
local fio = require('fio')
local uri = require('uri')
local log = require('log')
local errno = require('errno')
local checks = require('checks')
local errors = require('errors')
local membership = require('membership')
local membership_network = require('membership.network')
local http = require('http.server')
local fiber = require('fiber')
local socket = require('socket')
local rpc = require('cartridge.rpc')
local auth = require('cartridge.auth')
local utils = require('cartridge.utils')
local roles = require('cartridge.roles')
local webui = require('cartridge.webui')
local issues = require('cartridge.issues')
local graphql = require('cartridge.graphql')
local upload = require('cartridge.upload')
local argparse = require('cartridge.argparse')
local topology = require('cartridge.topology')
local twophase = require('cartridge.twophase')
local hotreload = require('cartridge.hotreload')
local confapplier = require('cartridge.confapplier')
local vshard_utils = require('cartridge.vshard-utils')
local cluster_cookie = require('cartridge.cluster-cookie')
local service_registry = require('cartridge.service-registry')
local lua_api_topology = require('cartridge.lua-api.topology')
local lua_api_failover = require('cartridge.lua-api.failover')
local lua_api_vshard = require('cartridge.lua-api.vshard')
local lua_api_deprecated = require('cartridge.lua-api.deprecated')
local ConsoleListenError = errors.new_class('ConsoleListenError')
local CartridgeCfgError = errors.new_class('CartridgeCfgError')
local HttpInitError = errors.new_class('HttpInitError')
local DEFAULT_CLUSTER_COOKIE = 'secret-cluster-cookie'
local _ = require('cartridge.feedback')
local ok, VERSION = pcall(require, 'cartridge.VERSION')
if not ok then
VERSION = 'unknown'
end
--- Vshard storage group configuration.
--
-- Every vshard storage must be assigned to a group.
-- @tfield
-- number bucket_count
-- Bucket count for the storage group.
-- @table VshardGroup
local function check_vshard_group(name, params)
if type(name) ~= 'string' then
return nil, 'bad argument options.vshard_groups' ..
' to cartridge.cfg (table must have string keys)'
end
local field = string.format('options.vshard_groups[%s]', name)
if type(params) ~= 'table' then
return nil, string.format(
'bad argument %s' ..
' (table expected, got %s)',
field, type(params)
)
end
local bucket_count = params.bucket_count
if bucket_count ~= nil and type(bucket_count) ~= 'number' then
return nil, string.format(
'bad argument %s.bucket_count' ..
' (?number expected, got %s)',
field, type(bucket_count)
)
end
local known_keys = {
bucket_count = true,
}
for key, _ in pairs(params) do
if not known_keys[key] then
return string.format(
'unexpected argument %s.%s',
field, key
)
end
end
return true
end
--- Initialize the cartridge module.
--
-- After this call, you can operate the instance via Tarantool console.
-- Notice that this call does not initialize the database - `box.cfg` is not called yet.
-- Do not try to call `box.cfg` yourself: `cartridge` will do it when it is time.
--
-- Both `cartridge.cfg` and `box.cfg` options can be configured with
-- command-line arguments or environment variables.
--
-- @function cfg
-- @tparam table opts Available options are:
--
-- @tparam ?string opts.workdir
-- a directory where all data will be stored: snapshots, wal logs and cartridge config file.
-- (default: ".", overridden by
-- env `TARANTOOL_WORKDIR`,
-- args `--workdir`)
--
-- @tparam ?string opts.advertise_uri
-- either `"<HOST>:<PORT>"` or `"<HOST>:"` or `"<PORT>"`.
-- Used by other instances to connect to the current one.
--
-- When `<HOST>` isn't specified, it's detected as the only non-local IP address.
-- If there is more than one IP address available - defaults to "localhost".
--
-- When `<PORT>` isn't specified, it's derived as follows:
-- If the `TARANTOOL_INSTANCE_NAME` has numeric suffix `_<N>`, then `<PORT> = 3300+<N>`.
-- Otherwise default `<PORT> = 3301` is used.
--
-- @tparam ?string opts.cluster_cookie
-- secret used to separate unrelated applications, which
-- prevents them from seeing each other during broadcasts.
-- Also used as admin password in HTTP and binary connections and for
-- encrypting internal communications.
-- Allowed symbols are `[a-zA-Z0-9_.~-]`.
-- (default: "secret-cluster-cookie", overridden by
-- env `TARANTOOL_CLUSTER_COOKIE`,
-- args `--cluster-cookie`)
--
-- @tparam ?boolean opts.swim_broadcast
-- Announce own `advertise_uri` over UDP broadcast.
--
-- Cartridge health-checks are governed by SWIM protocol. To simplify
-- instances discovery on start it can UDP broadcast all networks
-- known from `getifaddrs()` C call. The broadcast is sent to several
-- ports: default 3301, the `<PORT>` from the `advertise_uri` option,
-- and its neighbours `<PORT>+1` and `<PORT>-1`.
--
-- (**Added** in v2.3.0-23,
-- default: true, overridden by
-- env `TARANTOOL_SWIM_BROADCAST`,
-- args `--swim-broadcast`)
--
-- @tparam ?number opts.bucket_count
-- bucket count for vshard cluster. See vshard doc for more details.
-- (default: 30000, overridden by
-- env `TARANTOOL_BUCKET_COUNT`,
-- args `--bucket-count`)
--
-- @tparam ?{[string]=VshardGroup,...} opts.vshard_groups
-- vshard storage groups, table keys used as names
--
-- @tparam ?boolean opts.http_enabled
-- whether http server should be started
-- (default: true, overridden by
-- env `TARANTOOL_HTTP_ENABLED`,
-- args `--http-enabled`)
--
-- @tparam ?boolean opts.webui_enabled
-- whether WebUI and corresponding API (HTTP + GraphQL) should be
-- initialized. Ignored if `http_enabled` is `false`. Doesn't
-- affect `auth_enabled`.
--
-- (**Added** in v2.4.0-38,
-- default: true, overridden by
-- env `TARANTOOL_WEBUI_ENABLED`,
-- args `--webui-enabled`)
--
-- @tparam ?string|number opts.http_port
-- port to open administrative UI and API on
-- (default: 8081, derived from
-- `TARANTOOL_INSTANCE_NAME`,
-- overridden by
-- env `TARANTOOL_HTTP_PORT`,
-- args `--http-port`)
--
-- @tparam ?string opts.http_host
-- host to open administrative UI and API on
-- (**Added** in v2.4.0-42,
-- default: "0.0.0.0", overridden by
-- env `TARANTOOL_HTTP_HOST`,
-- args `--http-host`)
--
-- @tparam ?string opts.webui_prefix
-- modify WebUI and cartridge HTTP API routes
-- (**Added** in v2.6.0-18,
-- default: "", overridden by
-- env `TARANTOOL_WEBUI_PREFIX`,
-- args `--webui-prefix`)
--
-- @tparam ?boolean opts.webui_enforce_root_redirect
-- respond on `GET /` with a redirect to `<WEBUI_PREFIX>/admin`.
-- (**Added** in v2.6.0-18,
-- default: true, overridden by
-- env `TARANTOOL_WEBUI_ENFORCE_ROOT_REDIRECT`,
-- args `--webui-enforce-root-redirect`)
--
-- @tparam ?string opts.alias
-- human-readable instance name that will be available in administrative UI
-- (default: argparse instance name, overridden by
-- env `TARANTOOL_ALIAS`,
-- args `--alias`)
--
-- @tparam table opts.roles
-- list of user-defined roles that will be available
-- to enable on the instance_uuid
--
-- @tparam ?boolean opts.auth_enabled
-- toggle authentication in administrative UI and API
-- (default: false)
--
-- @tparam ?string opts.auth_backend_name
-- user-provided set of callbacks related to authentication
--
-- @tparam ?string opts.console_sock
-- Socket to start console listening on.
-- (default: nil, overridden by
-- env `TARANTOOL_CONSOLE_SOCK`,
-- args `--console-sock`)
--
-- @tparam ?{string,...} opts.webui_blacklist
-- List of pages to be hidden in WebUI.
-- (**Added** in v2.0.1-54, default: `{}`)
--
-- @tparam ?boolean opts.upgrade_schema
-- Run schema upgrade on the leader instance.
-- (**Added** in v2.0.2-3,
-- default: `false`, overridden by
-- env `TARANTOOL_UPGRADE_SCHEMA`
-- args `--upgrade-schema`)
--
-- @tparam ?boolean opts.roles_reload_allowed
-- Allow calling `cartridge.reload_roles`.
-- (**Added** in v2.3.0-73, default: `false`)
--
-- @tparam ?string opts.upload_prefix
-- Temporary directory used for saving files during clusterwide
-- config upload. If relative path is specified, it's evaluated
-- relative to the `workdir`.
-- (**Added** in v2.4.0-43,
-- default: `/tmp`, overridden by
-- env `TARANTOOL_UPLOAD_PREFIX`,
-- args `--upload-prefix`)
--
-- @tparam ?table box_opts
-- tarantool extra box.cfg options (e.g. memtx_memory),
-- that may require additional tuning
--
-- @return[1] true
-- @treturn[2] nil
-- @treturn[2] table Error description
local function cfg(opts, box_opts)
checks({
workdir = '?string',
advertise_uri = '?string',
cluster_cookie = '?string',
bucket_count = '?number',
http_port = '?string|number',
http_host = '?string',
http_enabled = '?boolean',
webui_enabled = '?boolean',
webui_prefix = '?string',
webui_enforce_root_redirect = '?boolean',
alias = '?string',
roles = 'table',
auth_backend_name = '?string',
auth_enabled = '?boolean',
vshard_groups = '?table',
console_sock = '?string',
webui_blacklist = '?table',
upgrade_schema = '?boolean',
swim_broadcast = '?boolean',
roles_reload_allowed = '?boolean',
upload_prefix = '?string',
}, '?table')
if opts.webui_blacklist ~= nil then
local i = 0
for _, _ in pairs(opts.webui_blacklist) do
i = i + 1
if type(opts.webui_blacklist[i]) ~= 'string' then
error('bad argument opts.webui_blacklist to cartridge.cfg' ..
' (contiguous array of strings expected)', 2
)
end
end
end
local args, err = argparse.parse()
if args == nil then
return nil, err
end
local _cluster_opts, err = argparse.get_cluster_opts()
if _cluster_opts == nil then
return nil, err
end
local _box_opts, err = argparse.get_box_opts()
if _box_opts == nil then
return nil, err
end
for k, v in pairs(_cluster_opts) do
opts[k] = v
end
if box_opts == nil then
box_opts = {}
end
for k, v in pairs(_box_opts) do
box_opts[k] = v
end
-- Using syslog driver when running under systemd
-- makes it possible to filter by severity with
-- systemctl
if utils.under_systemd() and box_opts.log == nil then
local syslog, _ = socket.connect('unix/', '/dev/log')
if not syslog then
syslog, _ = socket.connect('unix/', '/var/run/syslog')
end
if syslog then
syslog:close()
local identity = table.concat({
args.app_name or 'tarantool',
args.instance_name
}, '.')
box_opts.log = string.format('syslog:identity=%s', identity)
end
end
if log.cfg ~= nil then
local _, err = CartridgeCfgError:pcall(log.cfg, {
log = box_opts.log,
level = box_opts.log_level,
nonblock = box_opts.log_nonblock,
})
if err ~= nil then
return nil, err
end
-- Workaround for log_format can't be set at boot time
-- See https://github.com/tarantool/tarantool/issues/5121
local _, err = CartridgeCfgError:pcall(log.cfg, {
format = box_opts.log_format,
})
if err ~= nil then
return nil, err
end
end
if box_opts.custom_proc_title == nil and args.instance_name ~= nil then
if args.app_name == nil then
box_opts.custom_proc_title = args.instance_name
else
box_opts.custom_proc_title = args.app_name .. '@' .. args.instance_name
end
end
if box_opts.custom_proc_title ~= nil then
title.update(box_opts.custom_proc_title)
end
local vshard_groups = {}
for k, v in pairs(opts.vshard_groups or {}) do
local name, params
if type(k) == 'number' and type(v) == 'string' then
-- {'group-name'}
name, params = v, {}
else
-- {['group-name'] = {bucket_count=1000}}
name, params = k, table.copy(v)
end
local ok, err = check_vshard_group(name, params)
if not ok then
error(err, 2)
end
vshard_groups[name] = params
end
if (confapplier.get_state() ~= '') then
return nil, CartridgeCfgError:new('Cluster is already initialized')
end
if opts.workdir == nil then
opts.workdir = '.'
end
opts.workdir = fio.abspath(opts.workdir)
local ok, err = utils.mktree(opts.workdir)
if not ok then
return nil, err
end
if box_opts.work_dir ~= nil then
log.warn(
"Box option 'work_dir' is deprecated." ..
" Please, dont't use it"
)
local ok, err = utils.mktree(box_opts.work_dir)
if not ok then
return nil, err
end
end
for _, option in pairs({'memtx_dir', 'vinyl_dir', 'wal_dir'}) do
local path = box_opts[option]
if path == nil then
path = opts.workdir
end
if not path:startswith('/') then
-- calc relative path
path = fio.pathjoin(opts.workdir, path)
end
box_opts[option] = path
local ok, err = utils.mktree(path)
if not ok then
return nil, err
end
end
cluster_cookie.init(opts.workdir)
if opts.cluster_cookie ~= nil then
cluster_cookie.set_cookie(opts.cluster_cookie)
end
if cluster_cookie.cookie() == nil then
cluster_cookie.set_cookie(DEFAULT_CLUSTER_COOKIE)
end
local advertise
if opts.advertise_uri ~= nil then
advertise = uri.parse(opts.advertise_uri)
else
advertise = {}
end
if advertise == nil then
return nil, CartridgeCfgError:new('Invalid advertise_uri %q', opts.advertise_uri)
end
local port_offset
if args.instance_name ~= nil then
port_offset = tonumber(args.instance_name:match('_(%d+)$'))
end
if advertise.host == nil then
local ip4_map = {}
for _, ifaddr in pairs(membership_network.getifaddrs() or {}) do
if ifaddr.name ~= 'lo' and ifaddr.inet4 ~= nil then
ip4_map[ifaddr.name or #ip4_map+1] = ifaddr.inet4
end
end
local ip_count = utils.table_count(ip4_map or {})
if ip_count > 1 then
log.info('This server has more than one non-local IP address:')
for name, inet4 in pairs(ip4_map) do
log.info(' %s: %s', name, inet4)
end
log.info('Auto-detection of IP address disabled. '
.. 'Use --advertise-uri argument'
.. ' or ADVERTISE_URI environment variable'
)
advertise.host = 'localhost'
elseif ip_count == 1 then
local _, inet4 = next(ip4_map)
advertise.host = inet4
log.info('Auto-detected IP to be %q', advertise.host)
else
advertise.host = 'localhost'
end
end
if advertise.service == nil then
if port_offset ~= nil then
advertise.service = 3300 + port_offset
log.info('Derived binary_port to be %d', advertise.service)
else
advertise.service = 3301
end
else
advertise.service = tonumber(advertise.service)
end
if advertise.service == nil then
return nil, CartridgeCfgError:new('Invalid port in advertise_uri %q', opts.advertise_uri)
end
local membership_new_opts, err = argparse.get_opts({
swim_protocol_period_seconds = 'number',
swim_anti_entropy_period_seconds = 'number',
swim_max_packet_size = 'number',
swim_ack_timeout_seconds = 'number',
swim_suspect_timeout_seconds = 'number',
swim_num_failure_detection_subgroups = 'number',
})
if err ~= nil then
return nil, err
end
for opt_name, opt_value in pairs(membership_new_opts) do
local opt_name = opt_name:match('swim_(.+)'):upper()
require("membership.options")[opt_name] = opt_value
end
local ok, err = CartridgeCfgError:pcall(membership.init,
advertise.host, advertise.service
)
if not ok then
return nil, err
end
local advertise_uri = membership.myself().uri
log.info('Using advertise_uri %q', advertise_uri)
if opts.alias == nil then
opts.alias = args.instance_name
end
membership.set_encryption_key(cluster_cookie.cookie())
membership.set_payload('alias', opts.alias)
local probe_uri_opts, err = argparse.get_opts({probe_uri_timeout = 'number'})
if err ~= nil then
return nil, err
end
local delay = require('membership.options').ACK_TIMEOUT_SECONDS
local deadline = fiber.clock() + (probe_uri_opts.probe_uri_timeout or 0)
while true do
local next_wakeup = fiber.clock() + delay
local ok, estr = membership.probe_uri(membership.myself().uri)
local now = fiber.clock()
if ok then
log.info('Probe uri was successful')
break
elseif now >= deadline then
return nil, CartridgeCfgError:new('Can not ping myself: %s', estr)
else
log.info('Can not ping myself: %s', estr)
fiber.sleep(next_wakeup - now)
end
end
if opts.swim_broadcast == nil then
opts.swim_broadcast = true
end
if opts.swim_broadcast then
-- broadcast several popular ports
for p, _ in pairs({
[3301] = true,
[advertise.service] = true,
[advertise.service-1] = true,
[advertise.service+1] = true,
}) do
membership.broadcast(p)
end
end
-- Gracefully leave membership in case of stop if box.ctl.on_shutdown supported
if box.ctl.on_shutdown ~= nil then
box.ctl.on_shutdown(function() pcall(membership.leave) end)
end
if opts.auth_backend_name == nil then
opts.auth_backend_name = 'cartridge.auth-backend'
end
local auth_backend, err = CartridgeCfgError:pcall(require, opts.auth_backend_name)
if not auth_backend then
return nil, err
elseif type(auth_backend) ~= 'table' then
return nil, CartridgeCfgError:new(
"Auth backend must export a table, got %s",
type(auth_backend)
)
end
local ok, err = CartridgeCfgError:pcall(auth.set_callbacks, auth_backend)
if not ok then
return nil, err
end
local auth_enabled = opts.auth_enabled
if auth_enabled == nil then
auth_enabled = false
end
local ok, err = CartridgeCfgError:pcall(auth.set_enabled, auth_enabled)
if not ok then
return nil, err
end
if opts.http_port == nil then
if port_offset ~= nil then
opts.http_port = 8080 + port_offset
log.info('Derived http_port to be %d', opts.http_port)
else
opts.http_port = 8081
end
end
if opts.http_host == nil then
opts.http_host = '0.0.0.0'
end
if opts.http_enabled == nil then
opts.http_enabled = true
end
if opts.webui_enabled == nil then
opts.webui_enabled = true
end
if opts.http_enabled then
local httpd = http.new(
opts.http_host, opts.http_port,
{ log_requests = false }
)
local ok, err = HttpInitError:pcall(httpd.start, httpd)
if not ok then
return nil, err
end
if opts.webui_prefix == nil then
opts.webui_prefix = ''
else
-- Add leading '/' for frontend-core
if not opts.webui_prefix:startswith('/') then
opts.webui_prefix = '/' .. opts.webui_prefix
end
-- Remove trailing '/' because frontend-core can't handle it
opts.webui_prefix = opts.webui_prefix:gsub('/$', '')
end
if opts.webui_enforce_root_redirect == nil then
opts.webui_enforce_root_redirect = true
end
local ok, err = CartridgeCfgError:pcall(auth.init, httpd, {
prefix = opts.webui_prefix
})
if not ok then
return nil, err
end
graphql.init(httpd, {prefix = opts.webui_prefix})
if opts.webui_enabled then
local ok, err = HttpInitError:pcall(webui.init, httpd, {
prefix = opts.webui_prefix,
enforce_root_redirect = opts.webui_enforce_root_redirect,
})
if not ok then
return nil, err
end
webui.set_blacklist(opts.webui_blacklist)
end
local srv_name = httpd.tcp_server:name()
log.info('Listening HTTP on %s:%s', srv_name.host, srv_name.port)
service_registry.set('httpd', httpd)
end
-- Set up vshard groups
if next(vshard_groups) == nil then
vshard_groups = nil
else
for _, params in pairs(vshard_groups) do
if params.bucket_count == nil then
params.bucket_count = opts.bucket_count
end
end
end
vshard_utils.set_known_groups(vshard_groups, opts.bucket_count)
-- Set up issues
local issue_limits, err = argparse.get_opts({
fragmentation_threshold_critical = 'number',
fragmentation_threshold_warning = 'number',
clock_delta_threshold_warning = 'number'
})
if err ~= nil then
return nil, err
end
local ok, err = issues.validate_limits(issue_limits)
if not ok then
return nil, err
end
issues.set_limits(issue_limits)
if opts.upload_prefix ~= nil then
local path = opts.upload_prefix
if not path:startswith('/') then
-- calc relative path
path = fio.pathjoin(opts.workdir, path)
end
opts.upload_prefix = path
upload.set_upload_prefix(path)
end
-- Start console sock
if opts.console_sock ~= nil then
local console = require('console')
local sock_name = 'unix/:' .. opts.console_sock
local ok, sock = pcall(console.listen, sock_name)
local _errno = errno()
if ok then
-- In Tarantool < 2.3.2 `console.listen` didn't raise,
-- but created a socket with trimmed filename
local unix_port = sock:name().port
if #unix_port < #opts.console_sock then
sock:close()
fio.unlink(unix_port)
ok = false
_errno = assert(errno.ENOBUFS)
end
end
if not ok then
local strerror
if _errno == assert(errno.ENOBUFS) then
strerror = 'Too long console_sock exceeds UNIX_PATH_MAX limit'
else
strerror = errno.strerror(_errno)
end
return nil, ConsoleListenError:new('%s: %s', sock_name, strerror)
end
end
-- Emulate support for NOTIFY_SOCKET in old tarantool.
-- NOTIFY_SOCKET is fully supported in >= 2.2.2
local tnt_version = string.split(_TARANTOOL, '.')
local tnt_major = tonumber(tnt_version[1])
local tnt_minor = tonumber(tnt_version[2])
local tnt_patch = tonumber(tnt_version[3]:split('-')[1])
if (tnt_major < 2) or (tnt_major == 2 and tnt_minor < 2) or
(tnt_major == 2 and tnt_minor == 2 and tnt_patch < 2) then
local notify_socket = os.getenv('NOTIFY_SOCKET')
if notify_socket then
local socket = require('socket')
local sock = assert(socket('AF_UNIX', 'SOCK_DGRAM', 0), 'Can not create socket')
sock:sendto('unix/', notify_socket, 'READY=1')
end
end
-- Do last few steps
if opts.roles_reload_allowed == true then
hotreload.save_state()
end
local ok, err = roles.cfg(opts.roles)
if not ok then
return nil, err
end
-- Stop roles on shutdown
if box.ctl.on_shutdown ~= nil then
box.ctl.on_shutdown(roles.stop)
end
local ok, err = confapplier.init({
workdir = opts.workdir,
box_opts = box_opts,
binary_port = advertise.service,
advertise_uri = advertise_uri,
upgrade_schema = opts.upgrade_schema,
})
if not ok then
return nil, err
end
-- Only log boot info if box.cfg wasn't called yet
-- Otherwise it's logged by confapplier.boot_instance
if type(box.cfg) == 'function' then
confapplier.log_bootinfo()
end
return true
end
_G.cartridge_get_schema = twophase.get_schema
_G.cartridge_set_schema = twophase.set_schema
return {
VERSION = VERSION,
cfg = cfg,
--- .
-- @refer cartridge.roles.reload
-- @function reload_roles
reload_roles = roles.reload,
--- .
-- @refer cartridge.topology.cluster_is_healthy
-- @function is_healthy
is_healthy = topology.cluster_is_healthy,
--- Global functions.
-- @section globals
--- .
-- @refer cartridge.twophase.get_schema
-- @function _G.cartridge_get_schema
--- .
-- @refer cartridge.twophase.set_schema
-- @function _G.cartridge_set_schema
--- Clusterwide DDL schema
-- @refer cartridge.twophase
-- @section schema
--- Get clusterwide DDL schema.
-- It's like **\_G.cartridge\_get\_schema**,
-- but isn't a global variable.
--
-- (**Added** in v2.0.1-54)
-- @function get_schema
-- @treturn[1] string Schema in YAML format
-- @treturn[2] nil
-- @treturn[2] table Error description
get_schema = _G.cartridge_get_schema,
--- Apply clusterwide DDL schema.
-- It's like **\_G.cartridge\_set\_schema**,
-- but isn't a global variable.
--
-- (**Added** in v2.0.1-54)
-- @function set_schema
-- @tparam string schema in YAML format
-- @treturn[1] string The same new schema
-- @treturn[2] nil
-- @treturn[2] table Error description
set_schema = _G.cartridge_set_schema,
--- Cluster administration.
-- @section admin
--- .
-- @field .
-- @refer cartridge.lua-api.get-topology.ServerInfo
-- @table ServerInfo
--- .
-- @field .
-- @refer cartridge.lua-api.get-topology.ReplicasetInfo
-- @table ReplicasetInfo
--- .
-- @refer cartridge.lua-api.topology.get_servers
-- @function admin_get_servers
admin_get_servers = lua_api_topology.get_servers,
--- .
-- @refer cartridge.lua-api.topology.get_replicasets
-- @function admin_get_replicasets
admin_get_replicasets = lua_api_topology.get_replicasets,
--- .
-- @refer cartridge.lua-api.topology.probe_server
-- @function admin_probe_server
admin_probe_server = lua_api_topology.probe_server,
--- .
-- @refer cartridge.lua-api.topology.enable_servers
-- @function admin_enable_servers
admin_enable_servers = lua_api_topology.enable_servers,
--- .
-- @refer cartridge.lua-api.topology.disable_servers
-- @function admin_disable_servers
admin_disable_servers = lua_api_topology.disable_servers,
--- .
-- @refer cartridge.lua-api.topology.restart_replication
-- @function admin_bootstrap_vshard
admin_restart_replication = lua_api_topology.restart_replication,
--- .
-- @refer cartridge.lua-api.vshard.bootstrap_vshard
-- @function admin_bootstrap_vshard
admin_bootstrap_vshard = lua_api_vshard.bootstrap_vshard,
--- Automatic failover management.
-- @section failover
--- .
-- @field .
-- @refer cartridge.lua-api.failover.FailoverParams
-- @table FailoverParams
--- .
-- @refer cartridge.lua-api.failover.get_params
-- @function failover_get_params
failover_get_params = lua_api_failover.get_params,
--- .
-- @refer cartridge.lua-api.failover.set_params
-- @function failover_set_params
failover_set_params = lua_api_failover.set_params,
--- .
-- @refer cartridge.lua-api.failover.promote
-- @function failover_promote
failover_promote = lua_api_failover.promote,
--- .
-- @refer cartridge.lua-api.failover.get_failover_enabled
-- @function admin_get_failover
admin_get_failover = lua_api_failover.get_failover_enabled,
--- Enable failover.
-- (**Deprecated** since v2.0.1-95 in favor of
-- `cartridge.failover_set_params`)
-- @function admin_enable_failover
admin_enable_failover = function()
return lua_api_failover.set_failover_enabled(true)
end,
--- Disable failover.
-- (**Deprecated** since v2.0.1-95 in favor of
-- `cartridge.failover_set_params`)
-- @function admin_disable_failover
admin_disable_failover = function()
return lua_api_failover.set_failover_enabled(false)
end,
--- Managing cluster topology.
-- @section topology
--- .
-- @refer cartridge.lua-api.edit-topology.edit_topology
-- @function admin_edit_topology
admin_edit_topology = lua_api_topology.edit_topology,
--- .
-- @field .
-- @refer cartridge.lua-api.edit-topology.EditReplicasetParams
-- @table EditReplicasetParams
--- .
-- @field .
-- @refer cartridge.lua-api.edit-topology.EditServerParams
-- @table EditServerParams
--- .
-- @field .
-- @refer cartridge.lua-api.edit-topology.JoinServerParams
-- @table JoinServerParams
--- Clusterwide configuration.
-- @refer cartridge.confapplier
-- @section confapplier
--- .
-- @refer cartridge.confapplier.get_readonly
-- @function config_get_readonly
config_get_readonly = confapplier.get_readonly,
--- .
-- @refer cartridge.confapplier.get_deepcopy
-- @function config_get_deepcopy
config_get_deepcopy = confapplier.get_deepcopy,
--- .
-- @refer cartridge.twophase.patch_clusterwide
-- @function config_patch_clusterwide
config_patch_clusterwide = twophase.patch_clusterwide,
--- .
-- @refer cartridge.twophase.force_reapply