-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathcdap-default.xml
More file actions
6610 lines (5840 loc) · 185 KB
/
Copy pathcdap-default.xml
File metadata and controls
6610 lines (5840 loc) · 185 KB
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
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!--
Copyright © 2014-2022 Cask Data, Inc.
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.
-->
<configuration>
<!-- General Configuration -->
<property>
<name>cluster.name</name>
<value></value>
<description>
A cluster-based name for CDAP. It is used for scope resolution of
preferences and runtime arguments. For example: the preference key
"cluster.[cluster.name].my.key" would be resolved to "my.key" at
runtime; a program can then retrieve the preference value by using
just "my.key". The administrator can use this property to set
different preferences for each cluster.
</description>
</property>
<property>
<name>hdfs.lib.dir</name>
<value>${hdfs.namespace}/lib</value>
<description>
Common directory in HDFS for, among others, JAR files for coprocessors
</description>
</property>
<property>
<name>hdfs.namespace</name>
<value>/${root.namespace}</value>
<description>
Root directory for HDFS files written by CDAP
</description>
</property>
<property>
<name>hdfs.user</name>
<value>yarn</value>
<description>
User name for accessing HDFS
</description>
</property>
<property>
<name>instance.name</name>
<value>${root.namespace}</value>
<description>
Determines a unique identifier for a CDAP instance. It is used for
providing authorization to a particular CDAP instance. Must be
alphanumeric, and should not be changed after CDAP has been started.
If it is changed, there is a risk of losing data (for example,
authorization policies).
</description>
</property>
<property>
<name>network.proxy.address</name>
<value></value>
<description>
A SOCKS 5 proxy address for CDAP to proxy outgoing connections.
The address must be in the format of "host:port".
</description>
</property>
<property>
<name>local.data.dir</name>
<value>data</value>
<description>
Data directory for CDAP Local Sandbox and the CDAP Master process in
Distributed CDAP
</description>
</property>
<property>
<name>mapreduce.include.custom.format.classes</name>
<value>true</value>
<description>
Indicates whether to include custom input/output format classes in the
job.jar or not; if set to true, custom format classes will be added to
the job.jar and available as part of the MapReduce system classpath
</description>
</property>
<property>
<name>mapreduce.jobclient.connect.max.retries</name>
<value>2</value>
<description>
Indicates the maximum number of retries the JobClient will make to
establish a service connection when retrieving job status and history
</description>
</property>
<property>
<name>mapreduce.status.report.interval.seconds</name>
<value>60</value>
<description>
Time in seconds between reporting the status, including retrieval of
the job's task report, while a MapReduce program is running.
</description>
</property>
<property>
<name>master.manage.hbase.coprocessors</name>
<value>true</value>
<description>
Whether CDAP Master should manage HBase coprocessors. This should only
be set to false if you are managing coprocessors yourself in order to
support rolling HBase upgrades.
</description>
</property>
<property>
<name>master.environment.extensions.dir</name>
<value>/opt/cdap/master/ext/environments</value>
<description>
Semicolon-separated list of local directories that are scanned for
CDAP Master environment providers.
</description>
</property>
<property>
<name>master.startup.checks.classes</name>
<value></value>
<description>
Comma-separated list of classnames for checks that will be run before
the CDAP Master starts up. If any of the checks fails, the CDAP Master
will not start up. Checks will only be run if
${master.startup.checks.enabled} is set to true.
</description>
</property>
<property>
<name>master.startup.checks.enabled</name>
<value>true</value>
<description>
Whether checks should be run before startup to determine if the CDAP
Master can be run correctly. Which checks are run is determined by the
${master.startup.checks.packages} and ${master.startup.checks.classes}
settings. If any checks fail, the CDAP Master will fail to start
instead of waiting for the problem to be fixed. This setting only
affects Distributed CDAP. It does not apply to CDAP Local Sandbox.
</description>
</property>
<property>
<name>master.startup.checks.packages</name>
<value>io.cdap.cdap.master.startup,io.cdap.cdap.data.startup</value>
<description>
Comma-separated list of packages containing checks that will be run
before the CDAP Master starts up. If any of the checks fails, the CDAP
Master will not start up. Checks will only be run if
${master.startup.checks.enabled} is set to true.
</description>
</property>
<property>
<name>namespaces.dir</name>
<value>namespaces</value>
<description>
The sub-directory of ${hdfs.namespace} in which namespaces are stored
</description>
</property>
<property>
<name>namespaces.creation.hook.enabled</name>
<value>false</value>
<description>
Whether to invoke a master environment-specific method hook upon namespace
creation.
</description>
</property>
<property>
<name>root.namespace</name>
<value>cdap</value>
<description>
Root for this CDAP instance; used as the parent (or root) node for
ZooKeeper, as the directory under which all CDAP data and metadata is
stored in HDFS, and as the prefix for all HBase tables created by
CDAP; must be composed of alphanumeric characters
</description>
</property>
<property>
<name>location.cache.path</name>
<value></value>
<description>
Local directory for caching remote location content
</description>
</property>
<property>
<name>location.cache.expiration.ms</name>
<value>86400000</value>
<description>
Location cache expiration time in milliseconds
</description>
</property>
<property>
<name>location.cache.force.cleanup.ms</name>
<value>3600000</value>
<description>
Time duration after which the location cache is forced cleaned up. A
non-positive value indicates that the cache is never forced cleaned up.
</description>
</property>
<property>
<name>thrift.max.read.buffer</name>
<value>16777216</value>
<description>
Specifies the maximum read buffer size in bytes used by the Thrift
service; value should be set to greater than the maximum frame sent on
the RPC channel
</description>
</property>
<property>
<name>twill.java.heap.memory.ratio</name>
<value>0.6</value>
<description>
The minimum ratio of heap to non-heap memory for all launched Apache Twill
containers. Container-specific settings also exist for CDAP system
containers.
</description>
</property>
<property>
<name>twill.java.reserved.memory.mb</name>
<value>768</value>
<description>
Desired reserved non-heap memory in megabytes for all launched Apache
Twill containers.
The actual value is bounded by the ${twill.java.heap.memory.ratio} setting
of the container memory size.
Container-specific settings also exist for CDAP system containers.
</description>
</property>
<property>
<name>twill.jvm.gc.opts</name>
<value>-XX:+UseG1GC -verbose:gc -Xloggc:<LOG_DIR>/gc.log -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=1M</value>
<activation>
<jdk>(,9)</jdk>
</activation>
<description>
Java garbage collection options for all Apache Twill containers;
"<LOG_DIR>" is the location of the log directory in the
container; note that the special characters are replaced with entity
equivalents so they can be included in the XML
</description>
</property>
<property>
<name>twill.jvm.gc.opts</name>
<value>-XX:+UseG1GC -verbose:gc -Xlog:gc*:file=<LOG_DIR>/gc.log:time,level,tags:filecount=10,filesize=1M</value>
<activation>
<jdk>[9,)</jdk>
</activation>
<description>
Java garbage collection options for all Apache Twill containers in Java 9
or above environment.
"<LOG_DIR>" is the location of the log directory in the
container; note that the special characters are replaced with entity
equivalents so they can be included in the XML
</description>
</property>
<property>
<name>twill.location.cache.dir</name>
<value>.cache</value>
<description>
The relative directory name on the distributed file system for Apache
Twill to cache generated files, to speed up launching applications.
This directory is relative to ${root.namespace}/twill on the file
system.
</description>
</property>
<property>
<name>twill.no.container.timeout</name>
<value>120000</value>
<description>
Duration in milliseconds to wait for at least one container for Apache
Twill runnable
</description>
</property>
<property>
<name>twill.security.master.secret.disk.name</name>
<value>cdap-security</value>
<description>
The name of the Twill security disk mount which contains cdap-security.xml
for master services.
</description>
</property>
<property>
<name>twill.security.master.secret.disk.path</name>
<value>/etc/cdap/security</value>
<description>
The absolute directory of the Twill security disk mount which contains
cdap-security.xml for master services.
</description>
</property>
<property>
<name>twill.security.worker.mount.secret</name>
<value>true</value>
<description>
Whether to mount a secret disk in worker runnables.
</description>
</property>
<property>
<name>twill.security.worker.secret.disk.name</name>
<value>cdap-security</value>
<description>
The name of the Twill security disk mount which contains cdap-security.xml
for worker runnables.
</description>
</property>
<property>
<name>twill.security.worker.secret.disk.path</name>
<value>/etc/cdap/security</value>
<description>
The absolute directory of the Twill security disk mount which contains
cdap-security.xml for worker runnables.
</description>
</property>
<property>
<name>twill.yarn.am.memory.mb</name>
<value>512</value>
<description>
The memory size in megabytes of the Apache Twill application master
container
</description>
</property>
<property>
<name>twill.yarn.am.reserved.memory.mb</name>
<value>${twill.java.reserved.memory.mb}</value>
<description>
Desired reserved non-heap memory in megabytes for Apache Twill application
master container.
The actual value is bounded by the ${twill.java.heap.memory.ratio} of the
${twill.yarn.am.memory.mb} setting.
</description>
</property>
<property>
<name>twill.zookeeper.namespace</name>
<value>/twill</value>
<description>
ZooKeeper namespace prefix for Apache Twill
</description>
</property>
<property>
<name>upgrade.thread.pool.size</name>
<value>1</value>
<description>
Number of threads to be used running operations concurrently during a CDAP
upgrade
</description>
</property>
<property>
<name>zookeeper.client.startup.timeout.millis</name>
<value>60000</value>
<description>
Duration in milliseconds to wait for a successful connection to a
server in the ZooKeeper quorum
</description>
</property>
<property>
<name>zookeeper.quorum</name>
<value/>
<description>
ZooKeeper quorum string; specifies the ZooKeeper host:port; substitute
the quorum (FQDN1:2181,FQDN2:2181,...) for the components shown here
</description>
</property>
<property>
<name>zookeeper.session.timeout.millis</name>
<value>40000</value>
<description>
ZooKeeper session timeout in milliseconds
</description>
</property>
<!-- Global Configuration -->
<property>
<name>bootstrap.file</name>
<value>/opt/cdap/master/bootstrap/distributed.json</value>
<description>
File that contains bootstrap steps that should be executed on a new CDAP
instance as well
as steps that should be executed on every restart of CDAP. Bootstrap steps
include operations
like loading system artifacts, creating the native profile, and creating
the data prep
application.
</description>
</property>
<property>
<name>system.app.config.dir</name>
<value>/opt/cdap/master/system-app-config</value>
<description>
Directory that contains definitions for what system apps should be
running. This directory is continuously
monitored for new/modified config files and updating application state to
match what is defined in those files.
</description>
</property>
<property>
<name>dataset.unchecked.upgrade</name>
<value>false</value>
<description>
If false, any changes made to existing datasets are not deployed when
an app is redeployed; setting this value to true allows the dataset
changes to be deployed upon app redeployment
</description>
</property>
<property>
<name>enable.unrecoverable.reset</name>
<value>false</value>
<description>
Determines if resetting CDAP should be enabled. **WARNING: Enabling
this option makes it possible to delete all applications and data; NO
RECOVERY IS POSSIBLE!**
</description>
</property>
<!-- Applications Configuration -->
<property>
<name>app.list.default.page.size</name>
<value>0</value>
<description>
This represents the default value of pageSize during list apps call.
</description>
</property>
<property>
<name>app.artifact.compute.hash.time.bucket.days</name>
<value>15</value>
<description>
If greater than 0, ensures that has values are time bucketed every x days.
Therefore, generating hash of an identical value x days apart will result
in different hash values.
</description>
</property>
<property>
<name>app.artifact.compute.hash</name>
<value>false</value>
<description>
If true, a hash for sharable artifacts will be computed and appended to
artifact filename.
</description>
</property>
<property>
<name>app.artifact.compute.hash.snapshot</name>
<value>false</value>
<description>
If true, a hash for sharable artifacts with SNAPSHOT in their versions
will be computed and appended
to artifact filename.
Should only be enabled for testing purposes. Otherwise, should always
remain false.
</description>
</property>
<property>
<name>app.artifact.dir</name>
<value>/opt/cdap/master/artifacts</value>
<description>
Semicolon-separated list of local directories scanned for system
artifacts to add to the artifact repository
</description>
</property>
<property>
<name>app.artifact.parallelism.max</name>
<value>50</value>
<description>
Maximum parallelism of system artifact loading. This can be a
resource-consuming process, e.g. with
repository on GCS upload can use 64MB buffer, so we need to ensure app
fabric is not overwhelmed during
the process.
</description>
</property>
<property>
<name>appfabric.processor.bind.port</name>
<value>0</value>
<description>
App Fabric processor bind port; if 0, binds to a random port
</description>
</property>
<property>
<name>appfabric.bind.port</name>
<value>0</value>
<description>
App Fabric server bind port; if 0, binds to a random port
</description>
</property>
<property>
<name>app.output.dir</name>
<value>/programs</value>
<description>
Directory where all archives are stored
</description>
</property>
<property>
<name>app.program.extra.classpath</name>
<value></value>
<description>
Additional Java classpath for CDAP programs. These extra classpaths
must be present on all nodes in the cluster. Supports wildcard suffix
"*" to include all JAR files under a directory.
</description>
</property>
<property>
<name>app.program.jvm.opts</name>
<value>${twill.jvm.gc.opts}</value>
<description>
Java options for all Apache Twill containers
</description>
</property>
<property>
<name>app.max.concurrent.runs</name>
<value>-1</value>
<description>
Maximum number of concurrent program runs allowed; set to -1 for
unlimited.
Program runs are those with an active run record.
</description>
</property>
<property>
<name>app.max.concurrent.launching</name>
<value>-1</value>
<description>
Maximum number of concurrent launching runs allowed; set to -1 for
unlimited.
Launching runs have an active run record with PENDING or STARTING status.
</description>
</property>
<property>
<name>user.program.launch.disabled</name>
<value>false</value>
<description>Allows users to disable program launches on CDAP cluster.
True means program launch on CDAP cluster is not allowed.
</description>
</property>
<property>
<name>app.program.launch.threads</name>
<value>20</value>
<description>
Size of the thread pool for launching programs
</description>
</property>
<property>
<name>app.program.kill.threads</name>
<value>20</value>
<description>
Size of the thread pool for force killing programs
</description>
</property>
<property>
<name>app.run.records.ttl.days</name>
<value>0</value>
<description>
Amount of time (in days) to retain run records for old job runs.
This TTL is retroactive and applies to all runs regardless of what this
value was when the run was started.
Zero or negative values will cause run records to be retained indefinitely
and disable this feature.
</description>
</property>
<property>
<name>app.run.records.ttl.frequency.hours</name>
<value>12</value>
<description>
How frequently (in hours) to check for and delete old run records.
Will always wait at least 1 hour. This value is ignored if
app.run.records.table.ttl.days is set to zero.
</description>
</property>
<property>
<name>app.run.records.ttl.initial.delay.minutes</name>
<value>10</value>
<description>
How long (in minutes) to wait after initial start to initially scan for
old run records to delete. This value is ignored if
app.run.records.table.ttl.days is set to zero.
</description>
</property>
<property>
<name>app.program.max.start.seconds</name>
<value>300</value>
<description>
Maximum number of seconds to wait for a program to start before
killing it
</description>
</property>
<property>
<name>program.twill.controller.start.seconds</name>
<value>${app.program.max.start.seconds}</value>
<description>
Upon starting a program, the amount of time to wait for a program twill
controller to either go into
running or termination before returning.
</description>
</property>
<property>
<name>app.program.max.stop.seconds</name>
<value>300</value>
<description>
Maximum number of seconds to wait for a program to stop before killing
it
</description>
</property>
<property>
<name>app.program.runid.corrector.interval</name>
<value>180</value>
<description>
Interval in seconds of how often the run id corrector thread will run;
this value should be greater than 0
</description>
</property>
<property>
<name>app.program.runid.corrector.tx.batch.size</name>
<value>1000</value>
<description>
Number of run records being fetched per transaction for checking if needed
for correction.
This value is directly proportional to the ${data.tx.timeout} setting.
</description>
</property>
<property>
<name>app.program.local.dataset.deleter.initial.delay</name>
<value>300</value>
<description>
Interval in seconds for initial delay for the local dataset deletion
thread;
this value should be greater than 0
</description>
</property>
<property>
<name>app.program.local.dataset.deleter.interval</name>
<value>3600</value>
<description>
Interval in seconds of how often the local dataset deletion thread will
run;
this value should be greater than 0
</description>
</property>
<property>
<name>app.program.terminator.interval.secs</name>
<value>300</value>
<description>
Interval in seconds of how often the program terminator thread will run;
this value should be greater than 0
</description>
</property>
<property>
<name>app.program.terminate.time.buffer.secs</name>
<value>60</value>
<description>
Interval in seconds of how much buffer time is given to programs to allow
them
to stop on their own before issuing a hard kill
</description>
</property>
<property>
<name>app.program.terminate.tethered.time.buffer.secs</name>
<value>3600</value>
<description>
Interval in seconds of how much buffer time is given to tethered programs
running on another CDAP instace to allow them to stop on their own before
issuing a hard kill
</description>
</property>
<property>
<name>app.program.terminator.tx.batch.size</name>
<value>1000</value>
<description>
Number of run records being fetched per transaction for checking
if a program in stopping state is active beyond its terminateTime.
This value is directly proportional to the ${data.tx.timeout} setting.
</description>
</property>
<property>
<name>app.program.runtime.extensions.dir</name>
<value>/opt/cdap/master/ext/runtimes</value>
<description>
Semicolon-separated list of local directories that are scanned for
program runtime extensions
</description>
</property>
<property>
<name>app.program.spark.event.logs.enabled</name>
<value>false</value>
<description>
Enables spark event logs collection
</description>
</property>
<property>
<name>app.program.spark.event.logs.dir</name>
<value>spark-histories</value>
<description>
When ${app.program.spark.event.logs.enabled} is true, the directory under
the ${root.namespace}
for storing the logs.
</description>
</property>
<property>
<name>app.program.spark.yarn.client.rewrite.enabled</name>
<value>true</value>
<description>
Specify whether to rewrite the YARN 'Client.scala' class in Spark to
work around issue SPARK-13441 in CDH clusters
</description>
</property>
<property>
<name>app.program.status.event.tx.separation</name>
<value>false</value>
<description>
if true, ProgramNotificationSubscriberService will go
shouldRunInSeparateTx to
see if certain messages need to run in a separate transaction.
This is usually not needed, unless scale is extremely high, which in turn
may result
in transactions being deadlock with
program.status.event.topic.num.partitions is greater than 1.
</description>
</property>
<property>
<name>app.program.status.event.fetch.size</name>
<value>100</value>
<description>
Maximum number of events to fetch from the messaging system in each
processing cycle for
program status update events
</description>
</property>
<property>
<name>app.program.status.event.tx.size</name>
<value>${app.program.status.event.fetch.size}</value>
<description>
Maximum number of events to process in one transaction when messages are
fetched from the messaging system
in each processing cycle for program status update events
</description>
</property>
<property>
<name>app.program.status.event.poll.delay.millis</name>
<value>2000</value>
<description>
The delay in milliseconds to check again for new program status events
after it detects there was no event
</description>
</property>
<property>
<name>app.program.yarn.attempt.failures.validity.interval</name>
<value>60000</value>
<description>
The interval in milliseconds for the time window used by YARN Resource
Manager to check for
application max failure attempts. By default, this is only used for long
running program, but
can be override through runtime argument
`system.yarn.attempt.failures.validity.interval`
</description>
</property>
<property>
<name>app.program.transaction.control</name>
<value>implicit</value>
<description>
Defines how transactions are controlled for program methods invocation;
"implicit" means that the platform encloses method execution into a
transaction,
whereas "explicit" means that the method itself is in control of executing
transactions.
</description>
</property>
<property>
<name>app.temp.dir</name>
<value>/tmp</value>
<description>
Temp directory
</description>
</property>
<property>
<name>apps.scheduler.queue</name>
<value></value>
<description>
Scheduler queue for CDAP programs
</description>
</property>
<property>
<name>app.deploy.update.schedules</name>
<value>true</value>
<description>
If true, redeploying an application will modify any schedules that
currently exist
for the application; if false, redeploying an application does not create
any new
schedules and existing schedules are neither deleted nor updated. This
property only
affects the redeployment of an application; all related actions or
endpoints are
unaffected.
</description>
</property>
<property>
<name>master.services.bind.address</name>
<value>0.0.0.0</value>
<description>
Bind address for app fabric service and dataset service
</description>
</property>
<property>
<name>program.container.dist.jars</name>
<value></value>
<description>
Additional jars to be localized to every program container and to be
added to classpaths of CDAP programs. They can be local file paths on
the CDAP Master or URIs of remote files. Multiple JAR files are comma-
separated.
</description>
</property>
<property>
<name>scheduler.job.queue.num.partitions</name>
<value>16</value>
<description>
Number of partitions in the scheduler's job queue. This is the same
as the number of constraint checker threads started by the scheduler.
</description>
</property>
<property>
<name>scheduler.max.thread.pool.size</name>
<value>100</value>
<description>
Size of the scheduler thread pool
</description>
</property>
<property>
<name>scheduler.misfire.threshold.ms</name>
<value>60000</value>
<description>
The number of milliseconds by which a schedule execution can miss its
next-fire-time and still run
</description>
</property>
<property>
<name>scheduler.event.poll.delay.millis</name>
<value>2000</value>
<description>
The delay in milliseconds that the scheduler checks again for new events
after it detects there was no event
</description>
</property>
<property>
<name>scheduler.time.event.fetch.size</name>
<value>100</value>
<description>
Maximum number of events to fetch from the messaging system in each
processing cycle for
time schedule events
</description>
</property>
<property>
<name>scheduler.stream.size.event.fetch.size</name>
<value>100</value>
<description>
Maximum number of events to fetch from the messaging system in each
processing cycle for
stream size schedule events
</description>
</property>
<property>
<name>scheduler.data.event.fetch.size</name>
<value>100</value>
<description>
Maximum number of events to fetch from the messaging system in each
processing cycle for
data schedule events
</description>
</property>
<property>
<name>scheduler.program.status.event.fetch.size</name>
<value>100</value>
<description>
Maximum number of events to fetch from the messaging system in each
processing cycle for
program status schedule events
</description>
</property>
<property>
<name>time.event.topic</name>
<value>timeevent</value>
<description>
Topic name for publishing time events from time scheduler to the messaging
system
</description>
</property>
<property>
<name>program.status.event.topic</name>
<value>programstatusevent</value>
<description>
Topic prefix for publishing status transitioning events of program runs to
the messaging system.
Note that depending on program.status.event.topic.num.partitions, it's
either topic name
(when 1 partition is requested) or prefix (when more than 1 partition is
requested). Also all subscribers
must always subscribe to the bare name to ensure backwards compatibility.
</description>