-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
split-route-merge-flow.xml
1291 lines (1291 loc) · 63.8 KB
/
split-route-merge-flow.xml
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" encoding="UTF-8" standalone="yes"?>
<template>
<description></description>
<name>SplitRouteMerge</name>
<snippet>
<connections>
<id>ae8a7240-7bd0-4341-8650-8348d8d3cb67</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<backPressureDataSizeThreshold>0 MB</backPressureDataSizeThreshold>
<backPressureObjectThreshold>0</backPressureObjectThreshold>
<destination>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>007c9ae4-795e-41b2-8626-8c5f13b64501</id>
<type>PROCESSOR</type>
</destination>
<flowFileExpiration>0 sec</flowFileExpiration>
<labelIndex>1</labelIndex>
<name></name>
<selectedRelationships>unmatched</selectedRelationships>
<source>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>f52ffdb6-a583-4dd1-b2ac-4b0864d6d3e4</id>
<type>PROCESSOR</type>
</source>
<zIndex>0</zIndex>
</connections>
<connections>
<id>15529742-7b35-4822-8a9f-cd6aee4097da</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<backPressureDataSizeThreshold>0 MB</backPressureDataSizeThreshold>
<backPressureObjectThreshold>0</backPressureObjectThreshold>
<destination>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>b4509ea5-edde-4595-b6aa-2b4c17dbcd41</id>
<type>PROCESSOR</type>
</destination>
<flowFileExpiration>0 sec</flowFileExpiration>
<labelIndex>1</labelIndex>
<name></name>
<selectedRelationships>merged</selectedRelationships>
<source>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>007c9ae4-795e-41b2-8626-8c5f13b64501</id>
<type>PROCESSOR</type>
</source>
<zIndex>0</zIndex>
</connections>
<connections>
<id>155c8e81-5d17-477a-b26c-70602ae12a7f</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<backPressureDataSizeThreshold>0 MB</backPressureDataSizeThreshold>
<backPressureObjectThreshold>0</backPressureObjectThreshold>
<destination>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>f52ffdb6-a583-4dd1-b2ac-4b0864d6d3e4</id>
<type>PROCESSOR</type>
</destination>
<flowFileExpiration>0 sec</flowFileExpiration>
<labelIndex>1</labelIndex>
<name></name>
<selectedRelationships>splits</selectedRelationships>
<source>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>53b1fa4e-3bf1-435f-8bae-7853676f2d2d</id>
<type>PROCESSOR</type>
</source>
<zIndex>0</zIndex>
</connections>
<connections>
<id>7ea014c2-3cf9-4a46-872e-b78557ed906b</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<backPressureDataSizeThreshold>0 MB</backPressureDataSizeThreshold>
<backPressureObjectThreshold>0</backPressureObjectThreshold>
<destination>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>53b1fa4e-3bf1-435f-8bae-7853676f2d2d</id>
<type>PROCESSOR</type>
</destination>
<flowFileExpiration>0 sec</flowFileExpiration>
<labelIndex>1</labelIndex>
<name></name>
<selectedRelationships>success</selectedRelationships>
<source>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>e830ccee-8663-42a8-899d-fac0bf82ae6f</id>
<type>PROCESSOR</type>
</source>
<zIndex>0</zIndex>
</connections>
<connections>
<id>3b4fe14c-17fa-4cd9-a2a6-40924d026316</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<backPressureDataSizeThreshold>0 MB</backPressureDataSizeThreshold>
<backPressureObjectThreshold>0</backPressureObjectThreshold>
<destination>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>d2c4439e-c320-4838-b94b-03b8e8b4aa41</id>
<type>PROCESSOR</type>
</destination>
<flowFileExpiration>0 sec</flowFileExpiration>
<labelIndex>1</labelIndex>
<name></name>
<selectedRelationships>high priority</selectedRelationships>
<source>
<groupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</groupId>
<id>f52ffdb6-a583-4dd1-b2ac-4b0864d6d3e4</id>
<type>PROCESSOR</type>
</source>
<zIndex>0</zIndex>
</connections>
<processors>
<id>007c9ae4-795e-41b2-8626-8c5f13b64501</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<position>
<x>456.0</x>
<y>582.0</y>
</position>
<config>
<bulletinLevel>WARN</bulletinLevel>
<comments></comments>
<concurrentlySchedulableTaskCount>1</concurrentlySchedulableTaskCount>
<defaultConcurrentTasks>
<entry>
<key>TIMER_DRIVEN</key>
<value>1</value>
</entry>
<entry>
<key>EVENT_DRIVEN</key>
<value>0</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>1</value>
</entry>
</defaultConcurrentTasks>
<defaultSchedulingPeriod>
<entry>
<key>TIMER_DRIVEN</key>
<value>0 sec</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>* * * * * ?</value>
</entry>
</defaultSchedulingPeriod>
<descriptors>
<entry>
<key>Merge Strategy</key>
<value>
<allowableValues>
<description>Generates 'bins' of FlowFiles and fills each bin as full as possible.
FlowFiles are placed into a bin based on their size and optionally their attributes
(if the <Correlation Attribute> property is set)
</description>
<displayName>Bin-Packing Algorithm</displayName>
<value>Bin-Packing Algorithm</value>
</allowableValues>
<allowableValues>
<description>Combines fragments that are associated by attributes back into a single
cohesive FlowFile. If using this strategy, all FlowFiles must have the attributes
<fragment.identifier>, <fragment.count>, and <fragment.index> or
alternatively (for backward compatibility purposes) <segment.identifier>, <segment.count>,
and <segment.index>. All FlowFiles with the same value for "fragment.identifier"
will be grouped together. All FlowFiles in this group must have the same value for
the "fragment.count" attribute. All FlowFiles in this group must have a
unique value for the "fragment.index" attribute between 0 and the value of
the "fragment.count" attribute.
</description>
<displayName>Defragment</displayName>
<value>Defragment</value>
</allowableValues>
<defaultValue>Bin-Packing Algorithm</defaultValue>
<description>Specifies the algorithm used to merge content. The 'Defragment' algorithm
combines fragments that are associated by attributes back into a single cohesive
FlowFile. The 'Bin-Packing Algorithm' generates a FlowFile populated by arbitrarily
chosen FlowFiles
</description>
<displayName>Merge Strategy</displayName>
<dynamic>false</dynamic>
<name>Merge Strategy</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Merge Format</key>
<value>
<allowableValues>
<description>A bin of FlowFiles will be combined into a single TAR file. The FlowFiles'
<path> attribute will be used to create a directory in the TAR file if the
<Keep Paths> property is set to true; otherwise, all FlowFiles will be added
at the root of the TAR file. If a FlowFile has an attribute named <tar.permissions>
that is 3 characters, each between 0-7, that attribute will be used as the TAR
entry's 'mode'.
</description>
<displayName>TAR</displayName>
<value>TAR</value>
</allowableValues>
<allowableValues>
<description>A bin of FlowFiles will be combined into a single ZIP file. The FlowFiles'
<path> attribute will be used to create a directory in the ZIP file if the
<Keep Paths> property is set to true; otherwise, all FlowFiles will be added
at the root of the ZIP file. The <Compression Level> property indicates the
ZIP compression to use.
</description>
<displayName>ZIP</displayName>
<value>ZIP</value>
</allowableValues>
<allowableValues>
<description>A bin of FlowFiles will be combined into a single Version 3 FlowFile
Stream
</description>
<displayName>FlowFile Stream, v3</displayName>
<value>FlowFile Stream, v3</value>
</allowableValues>
<allowableValues>
<description>A bin of FlowFiles will be combined into a single Version 2 FlowFile
Stream
</description>
<displayName>FlowFile Stream, v2</displayName>
<value>FlowFile Stream, v2</value>
</allowableValues>
<allowableValues>
<description>A bin of FlowFiles will be combined into a single Version 1 FlowFile
Package
</description>
<displayName>FlowFile Tar, v1</displayName>
<value>FlowFile Tar, v1</value>
</allowableValues>
<allowableValues>
<description>The contents of all FlowFiles will be concatenated together into a single
FlowFile
</description>
<displayName>Binary Concatenation</displayName>
<value>Binary Concatenation</value>
</allowableValues>
<allowableValues>
<description>The Avro contents of all FlowFiles will be concatenated together into a
single FlowFile
</description>
<displayName>Avro</displayName>
<value>Avro</value>
</allowableValues>
<defaultValue>Binary Concatenation</defaultValue>
<description>Determines the format that will be used to merge the content.</description>
<displayName>Merge Format</displayName>
<dynamic>false</dynamic>
<name>Merge Format</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Attribute Strategy</key>
<value>
<allowableValues>
<displayName>Keep Only Common Attributes</displayName>
<value>Keep Only Common Attributes</value>
</allowableValues>
<allowableValues>
<displayName>Keep All Unique Attributes</displayName>
<value>Keep All Unique Attributes</value>
</allowableValues>
<defaultValue>Keep Only Common Attributes</defaultValue>
<description>Determines which FlowFile attributes should be added to the bundle. If 'Keep
All Unique Attributes' is selected, any attribute on any FlowFile that gets bundled will
be kept unless its value conflicts with the value from another FlowFile. If 'Keep Only
Common Attributes' is selected, only the attributes that exist on all FlowFiles in the
bundle, with the same value, will be preserved.
</description>
<displayName>Attribute Strategy</displayName>
<dynamic>false</dynamic>
<name>Attribute Strategy</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Correlation Attribute Name</key>
<value>
<description>If specified, like FlowFiles will be binned together, where 'like FlowFiles'
means FlowFiles that have the same value for this Attribute. If not specified, FlowFiles
are bundled by the order in which they are pulled from the queue.
</description>
<displayName>Correlation Attribute Name</displayName>
<dynamic>false</dynamic>
<name>Correlation Attribute Name</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Minimum Number of Entries</key>
<value>
<defaultValue>1</defaultValue>
<description>The minimum number of files to include in a bundle</description>
<displayName>Minimum Number of Entries</displayName>
<dynamic>false</dynamic>
<name>Minimum Number of Entries</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Maximum Number of Entries</key>
<value>
<description>The maximum number of files to include in a bundle. If not specified, there is
no maximum.
</description>
<displayName>Maximum Number of Entries</displayName>
<dynamic>false</dynamic>
<name>Maximum Number of Entries</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Minimum Group Size</key>
<value>
<defaultValue>0 B</defaultValue>
<description>The minimum size of for the bundle</description>
<displayName>Minimum Group Size</displayName>
<dynamic>false</dynamic>
<name>Minimum Group Size</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Maximum Group Size</key>
<value>
<description>The maximum size for the bundle. If not specified, there is no maximum.
</description>
<displayName>Maximum Group Size</displayName>
<dynamic>false</dynamic>
<name>Maximum Group Size</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Max Bin Age</key>
<value>
<description>The maximum age of a Bin that will trigger a Bin to be complete. Expected
format is <duration> <time unit> where <duration> is a positive
integer and time unit is one of seconds, minutes, hours
</description>
<displayName>Max Bin Age</displayName>
<dynamic>false</dynamic>
<name>Max Bin Age</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Maximum number of Bins</key>
<value>
<defaultValue>100</defaultValue>
<description>Specifies the maximum number of bins that can be held in memory at any one
time
</description>
<displayName>Maximum number of Bins</displayName>
<dynamic>false</dynamic>
<name>Maximum number of Bins</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Delimiter Strategy</key>
<value>
<allowableValues>
<description>The values of Header, Footer, and Demarcator will be retrieved from the
contents of a file
</description>
<displayName>Filename</displayName>
<value>Filename</value>
</allowableValues>
<allowableValues>
<description>The values of Header, Footer, and Demarcator will be specified as property
values
</description>
<displayName>Text</displayName>
<value>Text</value>
</allowableValues>
<defaultValue>Filename</defaultValue>
<description>Determines if Header, Footer, and Demarcator should point to files containing
the respective content, or if the values of the properties should be used as the
content.
</description>
<displayName>Delimiter Strategy</displayName>
<dynamic>false</dynamic>
<name>Delimiter Strategy</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Header File</key>
<value>
<description>Filename specifying the header to use. If not specified, no header is supplied.
This property is valid only when using the binary-concatenation merge strategy;
otherwise, it is ignored.
</description>
<displayName>Header</displayName>
<dynamic>false</dynamic>
<name>Header File</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>true</supportsEl>
</value>
</entry>
<entry>
<key>Footer File</key>
<value>
<description>Filename specifying the footer to use. If not specified, no footer is supplied.
This property is valid only when using the binary-concatenation merge strategy;
otherwise, it is ignored.
</description>
<displayName>Footer</displayName>
<dynamic>false</dynamic>
<name>Footer File</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>true</supportsEl>
</value>
</entry>
<entry>
<key>Demarcator File</key>
<value>
<description>Filename specifying the demarcator to use. If not specified, no demarcator is
supplied. This property is valid only when using the binary-concatenation merge
strategy; otherwise, it is ignored.
</description>
<displayName>Demarcator</displayName>
<dynamic>false</dynamic>
<name>Demarcator File</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>true</supportsEl>
</value>
</entry>
<entry>
<key>Compression Level</key>
<value>
<allowableValues>
<displayName>0</displayName>
<value>0</value>
</allowableValues>
<allowableValues>
<displayName>1</displayName>
<value>1</value>
</allowableValues>
<allowableValues>
<displayName>2</displayName>
<value>2</value>
</allowableValues>
<allowableValues>
<displayName>3</displayName>
<value>3</value>
</allowableValues>
<allowableValues>
<displayName>4</displayName>
<value>4</value>
</allowableValues>
<allowableValues>
<displayName>5</displayName>
<value>5</value>
</allowableValues>
<allowableValues>
<displayName>6</displayName>
<value>6</value>
</allowableValues>
<allowableValues>
<displayName>7</displayName>
<value>7</value>
</allowableValues>
<allowableValues>
<displayName>8</displayName>
<value>8</value>
</allowableValues>
<allowableValues>
<displayName>9</displayName>
<value>9</value>
</allowableValues>
<defaultValue>1</defaultValue>
<description>Specifies the compression level to use when using the Zip Merge Format; if not
using the Zip Merge Format, this value is ignored
</description>
<displayName>Compression Level</displayName>
<dynamic>false</dynamic>
<name>Compression Level</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Keep Path</key>
<value>
<allowableValues>
<displayName>true</displayName>
<value>true</value>
</allowableValues>
<allowableValues>
<displayName>false</displayName>
<value>false</value>
</allowableValues>
<defaultValue>false</defaultValue>
<description>If using the Zip or Tar Merge Format, specifies whether or not the FlowFiles'
paths should be included in their entry names; if using other merge strategy, this value
is ignored
</description>
<displayName>Keep Path</displayName>
<dynamic>false</dynamic>
<name>Keep Path</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
</descriptors>
<lossTolerant>false</lossTolerant>
<penaltyDuration>30 sec</penaltyDuration>
<properties>
<entry>
<key>Merge Strategy</key>
</entry>
<entry>
<key>Merge Format</key>
</entry>
<entry>
<key>Attribute Strategy</key>
</entry>
<entry>
<key>Correlation Attribute Name</key>
</entry>
<entry>
<key>Minimum Number of Entries</key>
<value>5</value>
</entry>
<entry>
<key>Maximum Number of Entries</key>
<value>10</value>
</entry>
<entry>
<key>Minimum Group Size</key>
</entry>
<entry>
<key>Maximum Group Size</key>
</entry>
<entry>
<key>Max Bin Age</key>
<value>60 seconds</value>
</entry>
<entry>
<key>Maximum number of Bins</key>
</entry>
<entry>
<key>Delimiter Strategy</key>
</entry>
<entry>
<key>Header File</key>
</entry>
<entry>
<key>Footer File</key>
</entry>
<entry>
<key>Demarcator File</key>
</entry>
<entry>
<key>Compression Level</key>
</entry>
<entry>
<key>Keep Path</key>
</entry>
</properties>
<runDurationMillis>0</runDurationMillis>
<schedulingPeriod>0 sec</schedulingPeriod>
<schedulingStrategy>TIMER_DRIVEN</schedulingStrategy>
<yieldDuration>1 sec</yieldDuration>
</config>
<name>MergeContent</name>
<relationships>
<autoTerminate>true</autoTerminate>
<description>If the bundle cannot be created, all FlowFiles that would have been used to created the
bundle will be transferred to failure
</description>
<name>failure</name>
</relationships>
<relationships>
<autoTerminate>false</autoTerminate>
<description>The FlowFile containing the merged content</description>
<name>merged</name>
</relationships>
<relationships>
<autoTerminate>true</autoTerminate>
<description>The FlowFiles that were used to create the bundle</description>
<name>original</name>
</relationships>
<state>RUNNING</state>
<style/>
<supportsEventDriven>false</supportsEventDriven>
<supportsParallelProcessing>true</supportsParallelProcessing>
<type>org.apache.nifi.processors.standard.MergeContent</type>
</processors>
<processors>
<id>f52ffdb6-a583-4dd1-b2ac-4b0864d6d3e4</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<position>
<x>613.0</x>
<y>364.0</y>
</position>
<config>
<bulletinLevel>WARN</bulletinLevel>
<comments></comments>
<concurrentlySchedulableTaskCount>1</concurrentlySchedulableTaskCount>
<defaultConcurrentTasks>
<entry>
<key>TIMER_DRIVEN</key>
<value>1</value>
</entry>
<entry>
<key>EVENT_DRIVEN</key>
<value>0</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>1</value>
</entry>
</defaultConcurrentTasks>
<defaultSchedulingPeriod>
<entry>
<key>TIMER_DRIVEN</key>
<value>0 sec</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>* * * * * ?</value>
</entry>
</defaultSchedulingPeriod>
<descriptors>
<entry>
<key>Match Requirement</key>
<value>
<allowableValues>
<displayName>content must match exactly</displayName>
<value>content must match exactly</value>
</allowableValues>
<allowableValues>
<displayName>content must contain match</displayName>
<value>content must contain match</value>
</allowableValues>
<defaultValue>content must match exactly</defaultValue>
<description>Specifies whether the entire content of the file must match the regular
expression exactly, or if any part of the file (up to Content Buffer Size) can contain
the regular expression in order to be considered a match
</description>
<displayName>Match Requirement</displayName>
<dynamic>false</dynamic>
<name>Match Requirement</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Character Set</key>
<value>
<defaultValue>UTF-8</defaultValue>
<description>The Character Set in which the file is encoded</description>
<displayName>Character Set</displayName>
<dynamic>false</dynamic>
<name>Character Set</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Content Buffer Size</key>
<value>
<defaultValue>1 MB</defaultValue>
<description>Specifies the maximum amount of data to buffer in order to apply the regular
expressions. If the size of the FlowFile exceeds this value, any amount of this value
will be ignored
</description>
<displayName>Content Buffer Size</displayName>
<dynamic>false</dynamic>
<name>Content Buffer Size</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>high priority</key>
<value>
<description></description>
<displayName>high priority</displayName>
<dynamic>true</dynamic>
<name>high priority</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>true</supportsEl>
</value>
</entry>
</descriptors>
<lossTolerant>false</lossTolerant>
<penaltyDuration>30 sec</penaltyDuration>
<properties>
<entry>
<key>Match Requirement</key>
</entry>
<entry>
<key>Character Set</key>
</entry>
<entry>
<key>Content Buffer Size</key>
</entry>
<entry>
<key>high priority</key>
<value>^("R.*)$</value>
</entry>
</properties>
<runDurationMillis>0</runDurationMillis>
<schedulingPeriod>0 sec</schedulingPeriod>
<schedulingStrategy>TIMER_DRIVEN</schedulingStrategy>
<yieldDuration>1 sec</yieldDuration>
</config>
<name>RouteOnContent</name>
<relationships>
<autoTerminate>false</autoTerminate>
<description></description>
<name>high priority</name>
</relationships>
<relationships>
<autoTerminate>false</autoTerminate>
<description>FlowFiles that do not match any of the user-supplied regular expressions will be routed to
this relationship
</description>
<name>unmatched</name>
</relationships>
<state>RUNNING</state>
<style/>
<supportsEventDriven>true</supportsEventDriven>
<supportsParallelProcessing>true</supportsParallelProcessing>
<type>org.apache.nifi.processors.standard.RouteOnContent</type>
</processors>
<processors>
<id>b4509ea5-edde-4595-b6aa-2b4c17dbcd41</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<position>
<x>456.0</x>
<y>775.0</y>
</position>
<config>
<bulletinLevel>WARN</bulletinLevel>
<comments></comments>
<concurrentlySchedulableTaskCount>1</concurrentlySchedulableTaskCount>
<defaultConcurrentTasks>
<entry>
<key>TIMER_DRIVEN</key>
<value>1</value>
</entry>
<entry>
<key>EVENT_DRIVEN</key>
<value>0</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>1</value>
</entry>
</defaultConcurrentTasks>
<defaultSchedulingPeriod>
<entry>
<key>TIMER_DRIVEN</key>
<value>0 sec</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>* * * * * ?</value>
</entry>
</defaultSchedulingPeriod>
<descriptors/>
<lossTolerant>false</lossTolerant>
<penaltyDuration>30 sec</penaltyDuration>
<properties/>
<runDurationMillis>0</runDurationMillis>
<schedulingPeriod>0 sec</schedulingPeriod>
<schedulingStrategy>TIMER_DRIVEN</schedulingStrategy>
<yieldDuration>1 sec</yieldDuration>
</config>
<name>Store For Later</name>
<relationships>
<autoTerminate>true</autoTerminate>
<description>All FlowFiles are routed to this relationship</description>
<name>success</name>
</relationships>
<state>RUNNING</state>
<style/>
<supportsEventDriven>true</supportsEventDriven>
<supportsParallelProcessing>true</supportsParallelProcessing>
<type>org.apache.nifi.processors.attributes.UpdateAttribute</type>
</processors>
<processors>
<id>d2c4439e-c320-4838-b94b-03b8e8b4aa41</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<position>
<x>873.0</x>
<y>581.0</y>
</position>
<config>
<bulletinLevel>WARN</bulletinLevel>
<comments></comments>
<concurrentlySchedulableTaskCount>1</concurrentlySchedulableTaskCount>
<defaultConcurrentTasks>
<entry>
<key>TIMER_DRIVEN</key>
<value>1</value>
</entry>
<entry>
<key>EVENT_DRIVEN</key>
<value>0</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>1</value>
</entry>
</defaultConcurrentTasks>
<defaultSchedulingPeriod>
<entry>
<key>TIMER_DRIVEN</key>
<value>0 sec</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>* * * * * ?</value>
</entry>
</defaultSchedulingPeriod>
<descriptors/>
<lossTolerant>false</lossTolerant>
<penaltyDuration>30 sec</penaltyDuration>
<properties/>
<runDurationMillis>0</runDurationMillis>
<schedulingPeriod>0 sec</schedulingPeriod>
<schedulingStrategy>TIMER_DRIVEN</schedulingStrategy>
<yieldDuration>1 sec</yieldDuration>
</config>
<name>SEND ALERT</name>
<relationships>
<autoTerminate>true</autoTerminate>
<description>All FlowFiles are routed to this relationship</description>
<name>success</name>
</relationships>
<state>RUNNING</state>
<style/>
<supportsEventDriven>true</supportsEventDriven>
<supportsParallelProcessing>true</supportsParallelProcessing>
<type>org.apache.nifi.processors.attributes.UpdateAttribute</type>
</processors>
<processors>
<id>e830ccee-8663-42a8-899d-fac0bf82ae6f</id>
<parentGroupId>7c84501d-d10c-407c-b9f3-1d80e38fe36a</parentGroupId>
<position>
<x>607.0</x>
<y>12.0</y>
</position>
<config>
<bulletinLevel>WARN</bulletinLevel>
<comments></comments>
<concurrentlySchedulableTaskCount>1</concurrentlySchedulableTaskCount>
<defaultConcurrentTasks>
<entry>
<key>TIMER_DRIVEN</key>
<value>1</value>
</entry>
<entry>
<key>EVENT_DRIVEN</key>
<value>0</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>1</value>
</entry>
</defaultConcurrentTasks>
<defaultSchedulingPeriod>
<entry>
<key>TIMER_DRIVEN</key>
<value>0 sec</value>
</entry>
<entry>
<key>CRON_DRIVEN</key>
<value>* * * * * ?</value>
</entry>
</defaultSchedulingPeriod>
<descriptors>
<entry>
<key>Input Directory</key>
<value>
<description>The input directory from which to pull files</description>
<displayName>Input Directory</displayName>
<dynamic>false</dynamic>
<name>Input Directory</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>true</supportsEl>
</value>
</entry>
<entry>
<key>File Filter</key>
<value>
<defaultValue>[^\.].*</defaultValue>
<description>Only files whose names match the given regular expression will be picked up
</description>
<displayName>File Filter</displayName>
<dynamic>false</dynamic>
<name>File Filter</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Path Filter</key>
<value>
<description>When Recurse Subdirectories is true, then only subdirectories whose path
matches the given regular expression will be scanned
</description>
<displayName>Path Filter</displayName>
<dynamic>false</dynamic>
<name>Path Filter</name>
<required>false</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Batch Size</key>
<value>
<defaultValue>10</defaultValue>
<description>The maximum number of files to pull in each iteration</description>
<displayName>Batch Size</displayName>
<dynamic>false</dynamic>
<name>Batch Size</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Keep Source File</key>
<value>
<allowableValues>
<displayName>true</displayName>
<value>true</value>
</allowableValues>
<allowableValues>
<displayName>false</displayName>
<value>false</value>
</allowableValues>
<defaultValue>false</defaultValue>
<description>If true, the file is not deleted after it has been copied to the Content
Repository; this causes the file to be picked up continually and is useful for testing
purposes. If not keeping original NiFi will need write permissions on the directory it
is pulling from otherwise it will ignore the file.
</description>
<displayName>Keep Source File</displayName>
<dynamic>false</dynamic>
<name>Keep Source File</name>
<required>true</required>
<sensitive>false</sensitive>
<supportsEl>false</supportsEl>
</value>
</entry>
<entry>
<key>Recurse Subdirectories</key>
<value>
<allowableValues>
<displayName>true</displayName>
<value>true</value>
</allowableValues>
<allowableValues>
<displayName>false</displayName>
<value>false</value>
</allowableValues>
<defaultValue>true</defaultValue>
<description>Indicates whether or not to pull files from subdirectories</description>
<displayName>Recurse Subdirectories</displayName>