This repository was archived by the owner on Jan 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcondor-base-db.snapshot.in
5631 lines (4862 loc) · 136 KB
/
condor-base-db.snapshot.in
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
--- !ruby/object:Mrg::Grid::SerializedConfigs::Store
features:
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Collector additions to provide the aviary locator
conflicts: []
depends: []
included:
- Collector
- AviaryPublishingEnabled
name: AviaryLocator
params:
COLLECTOR.PLUGINS: ">= $(LIB)/plugins/AviaryLocatorPlugin-plugin.so"
AVIARY_LOCATOR_MISSED_UPDATES: "2"
AVIARY_LOCATOR_PRUNE_INTERVAL: "20"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables publishing aviary locator information
conflicts: []
depends: []
included: []
name: AviaryPublishingEnabled
params:
AVIARY_PUBLISH_LOCATION: "TRUE"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Additions to the scheduler to provide aviary scheduler functionality
conflicts: []
depends:
- BaseScheduler
included:
- Axis2Home
name: AviaryScheduler
params:
SCHEDD.PLUGINS: ">= $(LIB)/plugins/AviaryScheddPlugin-plugin.so"
SCHEDD.HTTP_PORT: "9090"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables publishing aviary locator data for the aviary scheduler
conflicts: []
depends: []
included:
- AviaryScheduler
- AviaryPublishingEnabled
name: AviarySchedulerPublisher
params:
AVIARY_PUBLISH_INTERVAL: "10"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: The axis2 configuration file
conflicts: []
depends: []
included: []
name: Axis2Home
params:
WSFCPP_HOME: /var/lib/condor/aviary/axis2.xml
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: The version of the database
conflicts: []
depends: []
included: []
name: BaseDBVersion
params:
BaseDBVersion: v<%= db_version %>
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: A non-functional base for an highly available scheduler. This needs further configuration and is not meant to be used by itself
conflicts:
- Scheduler
depends: []
included:
- SharedJobQueueLocation
- BaseScheduler
name: BaseHAScheduler
params:
SCHEDD_NAME: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: A non-functional base for executing jobs. This needs further configuration and is not meant to be used by itself
conflicts: []
depends: []
included: []
name: BaseJobExecuter
params:
MAX_STARTER_LOG: "1000000"
STARTER_LOG: $(LOG)/StarterLog
STARTER_DEBUG: D_NODATE
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: A non-functional base for the job server. This needs furher configuration and is not meant to be used by itself
conflicts: []
depends:
- QMF
included: []
name: BaseJobServer
params:
JOB_SERVER.JOB_SERVER_DEBUG: ""
MAX_JOB_SERVER_LOG: "1000000"
JOB_SERVER: $(SBIN)/condor_job_server
QMF_PUBLISH_SUBMISSIONS: "FALSE"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: A non-functional base for the query server. This needs furher configuration and is not meant to be used by itself
conflicts: []
depends: []
included:
- Axis2Home
name: BaseQueryServer
params:
QUERY_SERVER_ARGS: -f
QUERY_SERVER.HISTORY_INTERVAL: "120"
QUERY_SERVER: $(SBIN)/aviary_query_server
QUERY_SERVER.QUERY_SERVER_DEBUG: D_ALWAYS
MAX_QUERY_SERVER_LOG: "1000000"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: A non-functional base for the scheduler. This needs further configuration and is not meant to be used by itself
conflicts: []
depends:
- Master
- NodeAccess
included:
- BaseJobExecuter
name: BaseScheduler
params:
SHADOW_SIZE_ESTIMATE: "1800"
SCHEDD: $(SBIN)/condor_schedd
START_SCHEDULER_UNIVERSE: "TRUE"
SCHEDD_ADDRESS_FILE: $(LOG)/.schedd_address
START_LOCAL_UNIVERSE: "TRUE"
SHADOW_LIST: SHADOW
SCHEDD_DEBUG: D_PID
STARTER_LOCAL: $(SBIN)/condor_starter
SHADOW_LOG: $(LOG)/ShadowLog
SCHEDD_LOG: $(LOG)/SchedLog
ALLOW_NEGOTIATOR_SCHEDD: $(ALLOW_NEGOTIATOR_SCHEDD), $(CONDOR_HOST), $(IP_ADDRESS)
SHADOW_LOCK: $(LOCK)/ShadowLock
SHADOW_DEBUG: ""
SCHEDD_DAEMON_AD_FILE: $(LOG)/.schedd_classad
QUEUE_SUPER_USERS: root, condor
MAX_SCHEDD_LOG: "1000000"
SHADOW: $(SBIN)/condor_shadow
MAX_SHADOW_LOG: "1000000"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: A set of features that comprise a central manager
conflicts: []
depends:
- NodeAccess
included:
- Collector
- Negotiator
name: CentralManager
params: {}
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables collector functionality
conflicts: []
depends:
- Master
- NodeAccess
included: []
name: Collector
params:
COLLECTOR_HOST: $(CONDOR_HOST)
MAX_COLLECTOR_LOG: "1000000"
COLLECTOR_NAME: Wallaby Configured Pool
FLOCK_COLLECTOR_HOSTS: $(FLOCK_TO)
COLLECTOR: 0
DAEMON_LIST: ">= COLLECTOR"
COLLECTOR_LOG: $(LOG)/CollectorLog
COLLECTOR_DEBUG: ""
COLLECTOR_ADDRESS_FILE: $(LOG)/.collector_address
COLLECTOR_UPDATE_INTERVAL: "900"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Sets the UID domain
conflicts: []
depends: []
included: []
name: CommonUIDDomain
params:
UID_DOMAIN: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables concurrency limits in the negotiator
conflicts: []
depends: []
included:
- Negotiator
name: ConcurrencyLimits
params:
CONCURRENCY_LIMIT_DEFAULT: "200"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables QMF publishing of collector data
conflicts: []
depends:
- QMF
included:
- Collector
name: ConsoleCollector
params:
QMF_IGNORE_UPDATE_STARTD_AD: "TRUE"
COLLECTOR.PLUGINS: ">= $(LIB)/plugins/MgmtCollectorPlugin-plugin.so"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables QMF publishing of startd data
conflicts: []
depends:
- QMF
- ExecuteNode
included: []
name: ConsoleExecuteNode
params:
STARTD.PLUGINS: ">= $(LIB)/plugins/MgmtStartdPlugin-plugin.so"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables QMF publishing of master data
conflicts: []
depends:
- Master
- QMF
included: []
name: ConsoleMaster
params:
MASTER.PLUGINS: ">= $(LIB)/plugins/MgmtMasterPlugin-plugin.so"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables QMF publishing and dynamic configuration for the negotiator
conflicts: []
depends:
- Negotiator
- QMF
included: []
name: ConsoleNegotiator
params:
NEGOTIATOR.ENABLE_RUNTIME_CONFIG: "TRUE"
NEGOTIATOR.PLUGINS: ">= $(LIB)/plugins/MgmtNegotiatorPlugin-plugin.so"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables QMF publishing of scheduler data
conflicts: []
depends:
- QMF
- BaseScheduler
included: []
name: ConsoleScheduler
params:
SCHEDD.QMF_STOREFILE: $(SPOOL)/.schedd_storefile
SCHEDD.PLUGINS: ">= $(LIB)/plugins/MgmtScheddPlugin-plugin.so"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Configures an execute node as a dedicated resource
conflicts: []
depends: []
included:
- ExecuteNode
name: DedicatedResource
params:
STARTD_ATTRS: ">= DEDICATEDSCHEDULER"
WANT_SUSPEND: "FALSE"
SUSPEND: (SCHEDULER =!= $(DEDICATEDSCHEDULER)) || ($(SUSPEND))
KILL: "FALSE"
CONTINUE: "TRUE"
WANT_VACATE: "FALSE"
START: (SCHEDULER =?= $(DEDICATEDSCHEDULER)) || ($(START))
RANK_FACTOR: "1000000"
DEDICATEDSCHEDULER: 0
RANK: SCHEDULER =?= $(DEDICATEDSCHEDULER) * $(RANK_FACTOR)
PREEMPT: (SCHEDULER =!= $(DEDICATEDSCHEDULER)) && ($(PREEMPT))
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Configures a scheduler as a dedicated scheduler
conflicts: []
depends: []
included:
- Scheduler
name: DedicatedScheduler
params:
DEDICATED_SCHEDULER_USE_FIFO: "TRUE"
UNUSED_CLAIM_TIMEOUT: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables dynamic slots for an execute node
conflicts: []
depends: []
included:
- ExecuteNode
name: DynamicSlots
params:
SLOT_TYPE_1_PARTITIONABLE: "TRUE"
NUM_SLOTS_TYPE_1: "1"
SLOT_TYPE_1: cpus=100%,disk=100%,swap=100%
NUM_SLOTS: "1"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables running ec2 jobs on an execute node
conflicts: []
depends: []
included:
- ExecuteNode
name: EC2
params:
AMAZON_GAHP_LOG: /tmp/AmazonGahpLog.$(USERNAME)
AMAZON_GAHP: $(SBIN)/amazon_gahp
EC2_GAHP: $(SBIN)/ec2_gahp
EC2_GAHP_LOG: /tmp/EC2GahpLog.$(USERNAME)
GRIDMANAGER_MAX_SUBMITTED_JOBS_PER_RESOURCE_EC2: "20"
GRIDMANAGER_MAX_SUBMITTED_JOBS_PER_RESOURCE_AMAZON: "20"
GRIDMANAGER_JOB_PROBE_INTERVAL: "300"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables routing ec2 enhanced jobs on a job router
conflicts: []
depends: []
included:
- JobRouter
name: EC2Enhanced
params:
JOB_ROUTER_HOOK_KEYWORD: EC2E
EC2E_HOOK_JOB_EXIT: $(LIBEXEC)/hooks/hook_job_finalize.py
NEED_SET_EC2E_ROUTES: "TRUE"
JOB_ROUTER_ENTRIES: 0
EC2E_HOOK_UPDATE_JOB_INFO: $(LIBEXEC)/hooks/hook_retrieve_status.py
EC2E_HOOK_JOB_CLEANUP: $(LIBEXEC)/hooks/hook_cleanup.py
EC2E_ATTRS_TO_COPY: EC2RunAttempts, EC2JobSuccessful
EC2E_HOOK_TRANSLATE_JOB: $(LIBEXEC)/hooks/hook_translate.py
JOB_ROUTER_DEFAULTS: $(JOB_ROUTER_DEFAULTS) [ MaxIdleJobs = 10; MaxJobs = 200; set_PeriodicRemove = (JobStatus == 5 && HoldReason =!= "Spooling input data files") || (JobStatus == 1 && (CurrentTime - QDate) > 3600*6); set_requirements = true; set_WantAWS = false; ]
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables running jobs
conflicts: []
depends:
- Master
included:
- BaseJobExecuter
name: ExecuteNode
params:
STARTER_LIST: STARTER
RUNBENCHMARKS: (LastBenchmark == 0 ) || ($(BenchmarkTimer) >= (4 * $(HOUR)))
STARTD_ATTRS: ">= \"$(COLLECTOR_HOST)\", SmallJob, KeyboardNotBusy, IsVanilla, ActivationTimer, MINUTE, StartIdleTime, CPUIdle, KeyboardBusy, ContinueIdleTime, MaxSuspendTime, MaxVacateTime, HOUR, LastCkpt"
WANT_SUSPEND: ( $(SmallJob) || $(KeyboardNotBusy) || $(IsVanilla) ) && ( $(SUSPEND) )
SUSPEND: ( $(KeyboardBusy) || ( (CpuBusyTime > 2 * $(MINUTE)) && $(ActivationTimer) > 90 ) )
KILL: $(ActivityTimer) > $(MaxVacateTime)
CONTINUE: ( $(CPUIdle) && ($(ActivityTimer) > 10) && (KeyboardIdle > $(ContinueIdleTime)) )
BENCHMARKTIMER: (CurrentTime - LastBenchmark)
WANT_VACATE: ( $(ActivationTimer) > 10 * $(MINUTE) || $(IsVanilla) )
START: ( (KeyboardIdle > $(StartIdleTime)) && ( $(CPUIdle) || (State != "Unclaimed" && State != "Owner")) )
MAXJOBRETIREMENTTIME: "0"
CONSOLE_DEVICES: mouse, console
STARTD_ADDRESS_FILE: $(LOG)/.startd_address
STARTD_LOG: $(LOG)/StartLog
STARTD_JOB_EXPRS: ImageSize, ExecutableSize, JobUniverse, NiceUser
STARTD_DEBUG: ""
PERIODIC_CHECKPOINT: $(LastCkpt) > (3 * $(HOUR) + $RANDOM_INTEGER(-30,30,1) * $(MINUTE) )
MAX_STARTD_LOG: "1000000"
DAEMON_LIST: ">= STARTD"
STARTER: $(SBIN)/condor_starter
STARTD: $(SBIN)/condor_startd
PREEMPT: ( ((Activity == "Suspended") && ($(ActivityTimer) > $(MaxSuspendTime))) || (SUSPEND && (WANT_SUSPEND == False)) )
ALLOW_NEGOTIATOR: $(ALLOW_NEGOTIATOR), $(CONDOR_HOST), $(IP_ADDRESS)
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables preemption for an execute node that is a dedicated resource
conflicts: []
depends: []
included:
- DedicatedResource
name: ExecuteNodeDedicatedPreemption
params:
STARTD_JOB_EXPRS: ImageSize, ExecutableSize, JobUniverse, NiceUser
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables publishing execute node data used by the trigger service
conflicts: []
depends: []
included:
- ExecuteNode
name: ExecuteNodeTriggerData
params:
STARTD_CRON_NAME: TRIGGER_DATA
TRIGGER_DATA_GETDATA_PERIOD: 5m
TRIGGER_DATA_GETDATA_PREFIX: Triggerd
STARTD_CRON_AUTOPUBLISH: If_Changed
TRIGGER_DATA_JOBLIST: GetData
TRIGGER_DATA_GETDATA_RECONFIG: "FALSE"
TRIGGER_DATA_GETDATA_EXECUTABLE: $(BIN)/get_trigger_data
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables high availability for the central manager
conflicts: []
depends: []
included:
- CentralManager
name: HACentralManager
params:
MASTER_NEGOTIATOR_CONTROLLER: HAD
REPLICATION_ARGS: -p $(REPLICATION_PORT)
MAX_TRANSFERER_LIFETIME: "300"
HAD_ARGS: -p $(HAD_PORT)
CONDOR_HOST: 0
REPLICATION_INTERVAL: "300"
MAX_HAD_LOG: "640000"
HAD_USE_PRIMARY: "TRUE"
COLLECTOR_HOST: $(CONDOR_HOST)
MAX_REPLICATION_LOG: "640000"
MASTER_HAD_BACKOFF_CONSTANT: "360"
HAD_PORT: "51450"
REPLICATION_LOG: $(LOG)/ReplicationLog
HAD_LOG: $(LOG)/HADLog
ALLOW_NEGOTIATOR_SCHEDD: $(IP_ADDRESS), $(COLLECTOR_HOST)
ALLOW_NEGOTIATOR: $(ALLOW_NEGOTIATOR), $(COLLECTOR_HOST), $(IP_ADDRESS)
TRANSFERER_LOG: $(LOG)/TransfererLog
REPLICATION: $(SBIN)/condor_replication
HAD_USE_REPLICATION: "TRUE"
ALLOW_ADMINISTRATOR: $(ALLOW_ADMINISTRATOR), $(COLLECTOR_HOST)
STATE_FILE: $(SPOOL)/Accountantnew.log
HAD_CONNECTION_TIMEOUT: "2"
REPLICATION_PORT: "41450"
REPLICATION_LIST: 0
DAEMON_LIST: ">= HAD, REPLICATION"
HAD_UPDATE_INTERVAL: "300"
HAD_LIST: 0
HAD: $(SBIN)/condor_had
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables high availability for a scheduler
conflicts: []
depends: []
included:
- BaseHAScheduler
- SchedulerInDL
name: HAScheduler
params:
HA_POLL_PERIOD: "60"
HA_LOCK_URL: 0
HA_LOCK_HOLD_TIME: "300"
MASTER_HA_LIST: $(MASTER_HA_LIST), SCHEDD
VALID_SPOOL_FILES: $(VALID_SPOOL_FILES), SCHEDD.lock
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Configures the job hooks used by the LowLatency feature to communicate with the carod daemon
conflicts: []
depends: []
included: []
name: JobHooks
params:
JOB_HOOKS_PORT: "10000"
JOB_HOOKS_LOG: $(LOG)/JobHooksLog
MAX_JOB_HOOKS_LOG: "10000000"
JOB_HOOKS_IP: 127.0.0.1
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: The location of the job queue used by the scheduler
conflicts: []
depends: []
included: []
name: JobQueueLocation
params:
HISTORY: $(SPOOL)/history
SPOOL: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables a job router
conflicts: []
depends:
- Master
- BaseScheduler
included: []
name: JobRouter
params:
MAX_HISTORY_ROTATIONS: "20"
MAX_JOB_ROUTER_LOG: "1000000"
JOB_ROUTER_LOG: $(LOG)/JobRouterLog
JOB_ROUTER_ADDRESS_FILE: $(LOG)/.job_router_address
JOB_ROUTER_POLLING_PERIOD: "10"
JOB_ROUTER_DEBUG: ""
DAEMON_LIST: ">= JOB_ROUTER"
JOB_ROUTER: $(LIBEXEC)/condor_job_router
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables a job server
conflicts: []
depends:
- Master
included:
- BaseJobServer
name: JobServer
params:
JOB_SERVER.JOB_SERVER_ADDRESS_FILE: $(LOG)/.job_server_address
DC_DAEMON_LIST: ">= JOB_SERVER"
JOB_SERVER.SPOOL: 0
JOB_SERVER.JOB_SERVER_LOG: $(LOG)/JobServerLog
DAEMON_LIST: ">= JOB_SERVER"
JOB_SERVER.HISTORY: $(JOB_SERVER.SPOOL)/history
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables keyboard monitoring
conflicts: []
depends:
- Master
included: []
name: KeyboardMonitor
params:
KBDD: $(SBIN)/condor_kbdd
MAX_KBDD_LOG: "1000000"
KBDD_ADDRESS_FILE: $(LOG)/.kbdd_address
KBDD_DEBUG: ""
KBDD_LOG: $(LOG)/KbdLog
DAEMON_LIST: ">= KBDD"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables low-latency scheduling for an execute node
conflicts: []
depends:
- JobHooks
included:
- ExecuteNode
name: LowLatency
params:
LOW_LATENCY_HOOK_FETCH_WORK: $(LIBEXEC)/hooks/hook_fetch_work.py
CAROD_IP: 127.0.0.1
MAX_CAROD_LOG: "1000000"
JOB_HOOKS_PORT: $(CAROD_PORT)
CAROD_BROKER_QUEUE: 0
CAROD_LEASE_CHECK_INTERVAL: "30"
LOW_LATENCY_JOB_HOOK_UPDATE_JOB_INFO: $(LIBEXEC)/hooks/hook_update_job_status.py
CAROD_PORT: "10000"
CAROD_BROKER_PORT: "5672"
LOW_LATENCY_JOB_HOOK_PREPARE_JOB: $(LIBEXEC)/hooks/hook_prepare_job.py
LOW_LATENCY_JOB_HOOK_JOB_EXIT: $(LIBEXEC)/hooks/hook_job_exit.py
LOW_LATENCY_HOOK_REPLY_FETCH: $(LIBEXEC)/hooks/hook_reply_fetch.py
FETCHWORKDELAY: 10 * (Activity == "Idle")
CAROD_LOG: $(LOG)/CaroLog
CAROD_QUEUED_CONNECTIONS: "5"
CAROD_BROKER_IP: 0
DAEMON_LIST: ">= CAROD"
CAROD_LEASE_TIME: "35"
STARTER_UPDATE_INTERVAL: "30"
STARTD_JOB_HOOK_KEYWORD: LOW_LATENCY
CAROD: $(SBIN)/carod
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables master functionality
conflicts: []
depends:
- NodeAccess
included: []
name: Master
params:
MASTER: $(SBIN)/condor_master
CONDOR_DEVELOPERS: NONE
SEC_DEFAULT_NEGOTIATION: OPTIONAL
SEC_DEFAULT_CRYPTO_METHODS: 3DES
MASTER_ADDRESS_FILE: $(LOG)/.master_address
CONDOR_HOST: 0
SEC_DEFAULT_AUTHENTICATION: OPTIONAL
COLLECTOR_NAME: ""
SEC_DEFAULT_AUTHENTICATION_METHODS: $(SEC_DEFAULT_AUTHENTICATION_METHODS), FS, NTLM, CLAIMTOBE
ALLOW_ADMINISTRATOR: $(ALLOW_ADMINISTRATOR), $(CONDOR_HOST)
DAEMON_LIST: ">= MASTER"
CONDOR_DEVELOPERS_COLLECTOR: NONE
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables negotiator functionality
conflicts: []
depends:
- Master
- NodeAccess
included: []
name: Negotiator
params:
PREEMPTION_REQUIREMENTS: ( $(StateTimer) > (1 * $(HOUR)) && RemoteUserPrio > SubmittorPrio * 1.2 ) || (MY.NiceUser == True)
NEGOTIATOR_PRE_JOB_RANK: RemoteOwner =?= UNDEFINED
FLOCK_NEGOTIATOR_HOSTS: $(FLOCK_TO)
NEGOTIATOR_INTERVAL: "20"
NEGOTIATOR: $(SBIN)/condor_negotiator
MAX_NEGOTIATOR_LOG: "1000000"
NEGOTIATOR_LOG: $(LOG)/NegotiatorLog
PREEMPTION_RANK: (RemoteUserPrio * 1000000) - TARGET.ImageSize
NEGOTIATOR_ADDRESS_FILE: $(LOG)/.negotiator_address
ALLOW_NEGOTIATOR: $(ALLOW_NEGOTIATOR), $(CONDOR_HOST), $(IP_ADDRESS)
NEGOTIATOR_MATCH_LOG: $(LOG)/MatchLog
DAEMON_LIST: ">= NEGOTIATOR"
NEGOTIATOR_DEBUG: D_MATCH
MAX_NEGOTIATOR_MATCH_LOG: "1000000"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Configures read/write access to the node
conflicts: []
depends: []
included: []
name: NodeAccess
params:
ALLOW_READ: 0
ALLOW_WRITE: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Provides historical job data to the plumage database
conflicts: []
depends:
- BaseScheduler
included: []
name: PlumageJobHistory
params:
JOB_ETL_SERVER.JOB_ETL_SERVER_ADDRESS_FILE: $(LOG)/.job_etl_server_address
JOB_ETL_SERVER.JOB_ETL_SERVER_DEBUG: D_ALWAYS
DC_DAEMON_LIST: ">= JOB_ETL_SERVER"
JOB_ETL_SERVER.PLUMAGE_DB_PORT: "27017"
JOB_ETL_SERVER: $(SBIN)/plumage_job_etl_server
JOB_ETL_SERVER.PLUMAGE_DB_HOST: localhost
JOB_ETL_SERVER.JOB_ETL_SERVER_LOG: $(LOG)/JobEtlLog
DAEMON_LIST: ">= JOB_ETL_SERVER"
JOB_ETL_SERVER.SPOOL: 0
JOB_ETL_SERVER_ARGS: -f
JOB_ETL_SERVER.HISTORY: $(JOB_ETL_SERVER.SPOOL)/history
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Provides statistics based on ClassAds to the plumage database
conflicts: []
depends: []
included:
- ViewServer
name: PlumageStats
params:
PLUMAGE_DB_PORT: "27017"
PLUMAGE_DB_HOST: localhost
VIEW_SERVER.PLUGINS: ">= $(LIB)/plugins/PlumageCollectorPlugin-plugin.so"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables power management on the collector
conflicts: []
depends: []
included:
- Collector
name: PowerManagementCollector
params:
COLLECTOR_PERSISTENT_AD_LOG: $(SPOOL)/OfflineLog
OFFLINE_EXPIRE_ADS_AFTER: "28800"
VALID_SPOOL_FILES: $(VALID_SPOOL_FILES), OfflineLog
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables power management for an execute node
conflicts:
- Collector
- Negotiator
- Scheduler
depends: []
included:
- ExecuteNode
name: PowerManagementNode
params:
HIBERNATE: ifThenElse( $(ShouldHibernate), "RAM", "NONE" )
ShouldHibernate: ( (KeyboardIdle > $(StartIdleTime)) && $(CPUIdle) && ($(StateTimer) > $(TimeToWait)) )
HIBERNATE_CHECK_INTERVAL: "300"
TimeToWait: (2 * $(HOUR))
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables power management wake up for a subnet
conflicts:
- PowerManagementNode
depends: []
included: []
name: PowerManagementSubnetManager
params:
ROOSTER_WAKEUP_CMD: "\"$(BIN)/condor_power -d -i -s $(ROOSTER_SUBNET_MASK)\""
UNHIBERNATE: CurrentTime - MachineLastMatchTime < 1200
ROOSTER_UNHIBERNATE_RANK: Mips*Cpus
ROOSTER_MAX_UNHIBERNATE: "0"
ROOSTER_SUBNET_MASK: 0
ROOSTER: $(LIBEXEC)/condor_rooster
ROOSTER_INTERVAL: "300"
ROOSTER_UNHIBERNATE: Offline && Unhibernate
DAEMON_LIST: ">= ROOSTER"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: QMF related parameters
conflicts: []
depends: []
included: []
name: QMF
params:
QMF_BROKER_PORT: "5672"
QMF_BROKER_HOST: 0
QMF_DELETE_ON_SHUTDOWN: "TRUE"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables query server functionality
conflicts: []
depends:
- Master
included:
- BaseQueryServer
name: QueryServer
params:
QUERY_SERVER.HTTP_PORT: "9091"
QUERY_SERVER.SPOOL: 0
DC_DAEMON_LIST: ">= QUERY_SERVER"
QUERY_SERVER.QUERY_SERVER_ADDRESS_FILE: $(LOG)/.query_server_address
QUERY_SERVER.QUERY_SERVER_LOG: $(LOG)/QueryServerLog
DAEMON_LIST: ">= QUERY_SERVER"
QUERY_SERVER.HISTORY: $(QUERY_SERVER.SPOOL)/history
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables publishing aviary locator data for the query server
conflicts: []
depends: []
included:
- QueryServer
- AviaryPublishingEnabled
name: QueryServerPublisher
params:
AVIARY_PUBLISH_INTERVAL: "10"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables SSL security for the aviary locator
conflicts: []
depends: []
included:
- AviaryLocator
name: SSLEnabledAviaryLocator
params:
COLLECTOR.AVIARY_SSL: "TRUE"
COLLECTOR.AVIARY_SSL_SERVER_KEY: 0
COLLECTOR.AVIARY_SSL_CA_DIR: 0
COLLECTOR.AVIARY_SSL_CA_FILE: 0
COLLECTOR.AVIARY_SSL_SERVER_CERT: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables SSL security for the aviary scheduler
conflicts: []
depends: []
included:
- AviaryScheduler
name: SSLEnabledAviaryScheduler
params:
SCHEDD.AVIARY_SSL: "TRUE"
SCHEDD.AVIARY_SSL_SERVER_KEY: 0
SCHEDD.AVIARY_SSL_CA_DIR: 0
SCHEDD.AVIARY_SSL_CA_FILE: 0
SCHEDD.AVIARY_SSL_SERVER_CERT: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables SSL security for the query server
conflicts: []
depends: []
included:
- QueryServer
name: SSLEnabledQueryServer
params:
QUERY_SERVER.AVIARY_SSL_SERVER_KEY: 0
QUERY_SERVER.AVIARY_SSL_CA_FILE: 0
QUERY_SERVER.AVIARY_SSL_CA_DIR: 0
QUERY_SERVER.AVIARY_SSL: "TRUE"
QUERY_SERVER.AVIARY_SSL_SERVER_CERT: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables job scheduling
conflicts:
- HAScheduler
depends: []
included:
- JobQueueLocation
- BaseScheduler
- SchedulerInDL
name: Scheduler
params:
SPOOL: $(LOCAL_DIR)/spool
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables preemption for a dedicated scheduler
conflicts: []
depends: []
included:
- DedicatedScheduler
name: SchedulerDedicatedPreemption
params:
SCHEDD_PREEMPTION_RANK: "0"
SCHEDD_PREEMPTION_REQUIREMENTS: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Adds the scheduler to the list of daemons to run. This is not intended to be used alone, but as a part of other features.
conflicts: []
depends: []
included: []
name: SchedulerInDL
params:
DAEMON_LIST: ">= SCHEDD"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Sets the filesystem domain
conflicts: []
depends: []
included: []
name: SharedFileSystem
params:
FILESYSTEM_DOMAIN: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: The location on a shared filesystem of the job queue used by the schedd.
conflicts: []
depends: []
included: []
name: SharedJobQueueLocation
params:
GRIDMANAGER.SPOOL: $(SCHEDD.SPOOL)
SCHEDD.HISTORY: $(SCHEDD.SPOOL)/history
SHADOW.SPOOL: $(SCHEDD.SPOOL)
SCHEDD.SPOOL: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables shared port
conflicts: []
depends:
- Master
included: []
name: SharedPort
params:
USE_SHARED_PORT: "TRUE"
SHARED_PORT_DEBUG: ""
SHARED_PORT: $(LIBEXEC)/condor_shared_port
DAEMON_SOCKET_DIR: $(RUN)
DAEMON_LIST: ">= SHARED_PORT"
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables event triggers over QMF
conflicts: []
depends:
- Master
- QMF
included: []
name: TriggerService
params:
TRIGGERD.QMF_STOREFILE: $(DATA)/.triggerd_storefile
MAX_TRIGGERD_LOG: "1000000"
TRIGGERD_ADDRESS_FILE: $(LOG)/.triggerd_address
ENABLE_ABSENT_NODES_DETECTION: "TRUE"
TRIGGERD_LOG: $(LOG)/TriggerLog
DC_DAEMON_LIST: ">= TRIGGERD"
DATA: 0
DAEMON_LIST: ">= TRIGGERD"
TRIGGERD_DEFAULT_EVAL_PERIOD: "10"
TRIGGERD: $(SBIN)/condor_triggerd
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables the vm universe on an execute node
conflicts: []
depends: []
included:
- ExecuteNode
name: VMUniverse
params:
VM_MEMORY: $(DETECTED_MEMORY)
VM_TYPE: 0
VM_NETWORKING: 0
LIBVIRT_XML_SCRIPT: 0
MAX_VM_GAHP_LOG: "1000000"
VM_GAHP_LOG: $(LOG)/VMGahpLog
VM_GAHP_SERVER: $(SBIN)/condor_vm-gahp
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: Enables view server functionality
conflicts: []
depends: []
included: []
name: ViewServer
params:
VIEW_SERVER.UPDATE_INTERVAL: "300"
VIEW_SERVER.KEEP_POOL_HISTORY: "TRUE"
VIEW_SERVER: $(COLLECTOR)
VIEW_SERVER.POOL_HISTORY_SAMPLING_INTERVAL: "60"
VIEW_SERVER_PORT: 0
VIEW_SERVER_ARGS: -f -p $(VIEW_SERVER_PORT) -local-name VIEW_SERVER
VIEW_SERVER.CONDOR_VIEW_HOST: ""
DAEMON_LIST: ">= VIEW_SERVER"
VIEW_SERVER_ENVIRONMENT: _CONDOR_COLLECTOR_LOG=$(LOG)/ViewServerLog
COLLECTOR: 0
- !ruby/object:Mrg::Grid::SerializedConfigs::Feature
annotation: A collector that will provide data to a view server
conflicts: []
depends: []
included:
- Collector
name: ViewServerSource
params:
CONDOR_VIEW_CLASSAD_TYPES: Machine,Scheduler,Submitter
COLLECTOR.CONDOR_VIEW_HOST: 0
groups:
- !ruby/object:Mrg::Grid::SerializedConfigs::Group
annotation: The default group
features: []
is_identity_group: false
name: +++DEFAULT
params: {}
- !ruby/object:Mrg::Grid::SerializedConfigs::Group
annotation: The skeleton group
features: []
is_identity_group: false
name: +++SKEL
params: {}
nodes: []
params:
- !ruby/object:Mrg::Grid::SerializedConfigs::Parameter
annotation: ""
conflicts: []
default_val: ""
depends: []
description: Hosts with administrator access
kind: String
level: 0
must_change: true
name: ALLOW_ADMINISTRATOR
needs_restart: false
- !ruby/object:Mrg::Grid::SerializedConfigs::Parameter
annotation: ""
conflicts: []
default_val: ""
depends: []
description: Machines allowed to advertise a condor_master to a condor_collector
kind: String
level: 0
must_change: false
name: ALLOW_ADVERTISE_MASTER
needs_restart: false
- !ruby/object:Mrg::Grid::SerializedConfigs::Parameter