forked from apache/falcon
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGES.txt
executable file
·1826 lines (1080 loc) · 71.3 KB
/
CHANGES.txt
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
Apache Falcon Change log
Future Releases:
For changes in releases after 0.10, please refer to "release-docs" or
https://github.com/apache/falcon/tree/master/release-docs/
Release Version: 0.11
For changes in release 0.11, please refer to "release-docs" or
https://github.com/apache/falcon/blob/0.11/release-docs/0.11/CHANGES.0.11.md
Release Version: 0.10
For changes in release 0.10, please refer to "release-docs" or
https://github.com/apache/falcon/blob/0.10/release-docs/0.10/CHANGES.0.10.md
Release Version: 0.9
TASKS:
FALCON-1778 Check licenses and copyright information (Pallavi Rao)
FALCON-1718 Change versions in pom.xml of master and 0.9 branch(Pallavi Rao via Ajay Yadava)
FALCON-1594 Update changes.txt to reflect 0.8 as released version(Sowmya Ramesh via Ajay Yadava)
FALCON-1523 Update CHANGES.txt to change 0.8 branch to release(Sowmya Ramesh)
FALCON-1453 Upgrade falcon POM for 0.8 release(Sowmya Ramesh)
INCOMPATIBLE CHANGES
NEW FEATURES
FALCON-1742 Implement instance summary api for native scheduler (Pallavi Rao)
FALCON-1677 Support re-tries for timed-out instances (Narayan Periwal via Pallavi Rao)
FALCON-1643 Add CLI option to display captured replication metrics(Peeyush Bishnoi via Ajay Yadava)
FALCON-1679 API to get type of scheduler(native/oozie) (Pallavi Rao)
FALCON-1645 Ability to export to database(Venkat Ramachandran via Balu Vellanki)
FALCON-1639 Implement update feature for native scheduler (Pallavi Rao)
FALCON-1636 Add Rerun API In Falcon Native Scheduler(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1652 Documentation for enabling native scheduler in falcon (Pallavi Rao)
FALCON-1512 Implement touch feature for native scheduler (Pallavi Rao)
FALCON-1233 Support co-existence of Oozie scheduler (coord) and Falcon native scheduler (Pallavi Rao)
FALCON-1596 Spring shell based CLI for Falcon
FALCON-1608 Base framework for Spring Shell based shell for Falcon (Rajat Khandelwal via Ajay Yadava)
FALCON-1234 State Store for instances scheduled by Falcon (Pavan Kolamuri via Pallavi Rao)
FALCON-1480 Gather data transfer details of Hive DR(Peeyush Bishnoi via Ajay Yadava)
FALCON-1588 Add ability to provide the path for recipe files in command line(Peeyush Bishnoi via Ajay Yadava)
FALCON-1573 Supply user-defined properties to Oozie workflows during schedule(Daniel Del Castillo via Ajay Yadava)
FALCON-1559 Config changes required for native scheduler (Pallavi Rao)
FALCON-1459 Ability to import from database(Venkat Ramachandran via Sowmya Ramesh)
FALCON-1213 Base framework of the native scheduler(Pallavi Rao)
IMPROVEMENTS
FALCON-1707 Code Refactoring for Falcon Client(Ajay Yadava)
FALCON-1733 Support for building falcon with JDK 1.8 also(Narayan Periwal via Ajay Yadava)
FALCON-1662 Ensure entity can be scheduled on multiple clusters on same colo (Pallavi Rao)
FALCON-1545 Add documentation for Hive replication job counters(Peeyush Bishnoi via Ajay Yadava)
FALCON-1601 Make Falcon StateStore more secure by not disclosing imp params in startup.props(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1705 Standardization of error handling in falcon Server(Praveen Adlakha via Ajay Yadava)
FALCON-1640 Cascading Delete for instances in Native Scheduler(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1683 Inconsistent behavior when user tries to switch schedulers(Pallavi Rao via Ajay Yadava)
FALCON-1669 Falcon should show more helpful message when it is unable to initialize Falcon Client object(Baishuo via Ajay Yadava)
FALCON-1635 Migration of EntityManagerJerseySmokeIT to use falcon unit(Narayan Periwal via Ajay Yadava)
FALCON-1447 Integration Tests for native scheduler(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1617 Enable SLA monitoring for instances in past(Narayan Periwal via Ajay Yadava)
FALCON-1577 Migration of EntityManagerJerseyIT to use falcon unit (Narayan Periwal via Pallavi Rao)
FALCON-1658 MySql Support for Native Scheduler(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1656 Improve FeedHelper:getRetentionFrequency method(Ajay Yadava)
FALCON-1616 Consume Workflow job end notifications for SLA monitoring(Sandeep Samudrala via Ajay Yadava)
FALCON-1634 Add .reviewboardrc file so that review requests can be created using just command line(Rajat Khandelwal via Ajay Yadava)
FALCON-1557 Supporting some Entity Management Api's and admin api in Falcon Unit (Narayan Periwal via Pallavi Rao)
FALCON-1622 On starting falcon server JPS shows Main and not Falcon(Sandeep Samudrala via Ajay Yadava)
FALCON-1607 Native Scheduler - Code refactoring: Refactor ID into more specific sub classes(Ajay Yadava)
FALCON-1587 Divide FalconCLI.twiki into sub sections for different modules on the lines of REST Api(Praveen Adlakha via Ajay Yadava)
FALCON-1552 Migration of ProcessInstanceManagerIT to use falcon unit (Narayan Periwal via Pallavi Rao)
FALCON-1486 Add Unit Test cases for HiveDR(Peeyush Bishnoi via Ajay Yadava)
FALCON-1592 Code Refactoring: Introduce Event type for scheduler events (Ajay Yadava via Pallavi Rao)
FALCON-1593 Oozie setup failing in setup phase (Praveen Adlakha via Ajay Yadava)
FALCON-1582 Documentation for globally disabling retries (Pallavi Rao)
FALCON-1517 Instance Management Api in Falcon Unit (Narayan Periwal via Pallavi Rao)
FALCON-1520 Delete, update, Validate entity operations support in Falcon Unit (Pavan Kolamuri via Pallavi Rao)
OPTIMIZATIONS
BUG FIXES
FALCON-1793 feed element action="archive" is submittable via command line tool falcon (Deepak Barr)
FALCON-1782 Client returns FalconWebException instead of the expected error message(Praveed Adlakha via Ajay Yadava)
FALCON-1747 Falcon instance status listing is throwing error message (Peeyush Bishnoi)
FALCON-1758 APIs fail when oozie workflow entries are deleted (Pavan Kolamuri via Pallavi Rao)
FALCON-1754 JobCompletionService throws FalconException (Pallavi Rao)
FALCON-1716 API fails with CommunicationsException when mysql interaction time is longer than 53,434,939 milliseconds (Pavan Kolamuri via Pallavi Rao)
FALCON-1757 EntityNotRegisteredException when entity is deleted from falcon (Pavan Kolamuri via Pallavi Rao)
FALCON-1748 Client throws FalconWebException irrespective of type of error(Praveen Adlakha via Ajay Yadava)
FALCON-1727 Suspend fails with InvalidStateTransitionException if entity has 'KILLED' instances (Pallavi Rao)
FALCON-1723 Rerun with skip fail actions won't work in few cases (Pavan Kolamuri via Pallavi Rao)
FALCON-1538 Prism status gives wrong info(Praveen Adlakha via Ajay Yadava)
FALCON-1715 IllegalStateException in MetadataMappingService when entity is scheduled via native scheduler (Pallavi Rao)
FALCON-1732 Folders not getting deleted after testing (Praveen Adlakha via Pallavi Rao)
FALCON-1675 Lifecycle stage is not honoured when only cluster level lifecycle is implemented (Ajay Yadava via Pallavi Rao)
FALCON-1730 Upgrade enunciate for JDK 8 compatibility(Deepak Barr via Ajay Yadava)
FALCON-1741 Rerun API behaviour different in case of succeeded instances(Pallavi Rao via Ajay Yadava)
FALCON-1735 FalconException shouldn't be caught in AbstractRerunHandler in case of obtaining Workflow engine from entity(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1678 SLA Monitoring does not honour entity end date(Ajay Yadava)
FALCON-1708 params API does not take start as a mandatory option(Praveen Adlakha via Ajay Yadava)
FALCON-1725 Falcon API shows results in ascending order in native scheduler (Pallavi Rao)
FALCON-1720 Rerun API does not rerun succeeded instances (Pavan Kolamuri via Pallavi Rao)
FALCON-1719 Retry does not update the state of the instance in the database (Pavan Kolamuri via Pallavi Rao)
FALCON-1710 dependency API sets totalResults as 0 by default(Praveen Adlakha via Ajay Yadava)
FALCON-1714 EntityNotRegisteredException when process with no input/output feed is scheduled(Ajay Yadava)
FALCON-1674 Fix the mapping of InstanceState status to workflow Status in InstancesResult (Pallavi Rao via Ajay Yadava)
FALCON-1709 FIFO order is not followed when scheduled using native scheduler (Pallavi Rao)
FALCON-1711 DependencyInstance twiki does not contain correct documentation (Praveen Adlakha via Pallavi Rao)
FALCON-1702 Exception thrown by workflow status listeners on success notification(Pallavi Rao via Ajay Yadava)
FALCON-1703 Falcon docs module not generating html files(Pallavi Rao via Ajay Yadava)
FALCON-1565 Listing API non-intuitive response if time > endTime (Praveen Adlakha via Ajay Yadava)
FALCON-1696 Falcon build failing in checkstyle module (Praveen Adlakha via Pallavi Rao)
FALCON-1694 Status API shows params along with instance status(Pallavi Rao via Ajay Yadava)
FALCON-1681 Improve logging for idempotent behaviour while scheduling entities(Pallavi Rao via Ajay Yadava)
FALCON-1680 Error message is not intuitive when entity schedule fails(Pallavi Rao via Ajay Yadava)
FALCON-1644 Retention : Some feed instances are never deleted by retention jobs(Balu Vellanki via Ajay Yadava)
FALCON-1641 Triage on an invalid feed instance throws IndexOutOfBoundException(Karishma Gulati via Ajay Yadava)
FALCON-1572 Only one instance is running in a process when run using Native Scheduler(Pallavi Rao via Ajay Yadava)
FALCON-1660 Examples directory missing in distributed mode(Praveen Adlakha via Ajay Yadava)
FALCON-1647 Unable to create feed : FilePermission error under cluster staging directory(Balu Vellanki via Ajay Yadava)
FALCON-1651 Falcon doesn't start (Ajay Yadava)
FALCON-1598 Flaky test : EntityManagerJerseyIT.testDuplicateDeleteCommands (Narayan Periwal via Pallavi Rao)
FALCON-1568 Process Instances are not getting scheduled in Falcon Native Scheduler (Pallavi Rao)
FALCON-1595 In secure cluster, Falcon server loses ability to communicate with HDFS over time (Balu Vellanki)
FALCON-1490 Fixing inconsistencies in filterBy behavior (Narayan Periwal via Balu Vellanki)
FALCON-1604 Status API Not working in case of Falcon Native Scheduler(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1589 Package sample recipe properties file(Peeyush Bishnoi via Ajay Yadava)
FALCON-1597 Falcon should not retry in case of an instance being manual kill from user (Sandeep Samudrala via Pallavi Rao)
FALCON-1606 Process schedule fails in some cases in case of NativeScheduler(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1605 Instance API is not working as expected in case of Native Scheduler(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1603 FeedHelperTest::testGetDateFromPath fails in some environments(Balu Vellanki via Ajay Yadava)
FALCON-1372 Retention does not work in corner cases(Balu Vellanki via Ajay Yadava)
FALCON-1569 Bug in setting the frequency of Feed retention coordinator(Sowmya Ramesh)
FALCON-1578 post-processing action fails with javax.servlet.jsp.el.ELException(Venkat Ramachandran via Ajay Yadava)
FALCON-1579 post-processing action fails with javax.servlet.jsp.el.ELException (Sowmya Ramesh via Pallavi Rao)
FALCON-1553 Flaky test in SchedulerUtilTest (Balu Vellanki via Pallavi Rao)
FALCON-1554 Fix Changes.txt after 0.8 branch cut(Sowmya Ramesh)
Release version: 0.8
FALCON-1349 Upgrade falcon POM for 0.7 release(Ajay Yadava)
INCOMPATIBLE CHANGES
FALCON-1401 MetadataMappingService fails to add an edge for a process instance(Pallavi Rao)
NEW FEATURES
FALCON-570 Falcon needs to publish maven artifacts (Shwethags GS)
FALCON-1485 Add documentation for data transfer details of filesystem replication(Peeyush Bishnoi via Sowmya Ramesh)
FALCON-1315 Update falcon ui for HiveDR, secure clusters and bug fixes(Armando Reyna/Venkat Ranganathan via Sowmya Ramesh)
FALCON-1102 Gather data transfer details of filesystem replication(Peeyush Bishnoi via Sowmya Ramesh)
FALCON-1316 Add supporting REST API calls for new UI(Balu Vellanki via Sowmya Ramesh)
FALCON-1473 Feed SLA Miss Alerts through REST API(Ajay Yadava)
FALCON-965 Open up life cycle stage implementation within Falcon for extension(Ajay Yadava)
FALCON-1437 Change DR recipes notification with Falcon notification(Peeyush Bishnoi via Sowmya Ramesh)
FALCON-1027 Falcon proxy user support(Sowmya Ramesh)
IMPROVEMENTS
FALCON-1585 Documentation for HDFS and Hive DR(Peeyush Bishnoi via Sowmya Ramesh)
FALCON-1574 Document behavior of lifecycle retention stage frequency behavior(Sowmya Ramesh via Ajay Yadava).
FALCON-1564 Provide an option for users to disable system post-processing JMS notification (Pallavi Rao)
FALCON-1519 Suspend And Resume API's in Falcon Unit(Narayan Periwal via Pallavi Rao)
FALCON-1524 Improve Lifecycle Retention validation checks(Ajay Yadava)
FALCON-1516 Feed Retention support in Falcon Unit(Pavan Kolamuri via Pallavi Rao)
FALCON-1527 Release Falcon Unit test jar(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1231 Improve JobCompletionNotification Service(Pallavi Rao)
FALCON-1157 Build error when using maven 3.3.x(Venkat Ramachandran via Pallavi Rao)
FALCON-1477 Adding "-debug" option to Falcon CLI for debug statements to stdout(Narayan Periwal via Pallavi Rao)
FALCON-1476 Maintaining threshold on monitoring entities for SLA service(Ajay Yadava)
FALCON-592 Refactor FalconCLI to make it more manageable(Balu Vellanki via Ajay Yadava)
FALCON-1472 Improvements in SLA service(Ajay Yadava)
FALCON-438 Auto generate documentation for REST API(Narayan Periwal via Ajay Yadava)
FALCON-1483 Add Utils to common to support native scheduler(Pallavi Rao via Ajay Yadava)
FALCON-1417 Make validity end date optional for feed / process(Pragya Mittal via Ajay Yadava)
FALCON-1434 Enhance schedule API to accept key-value properties(Pallavi Rao)
FALCON-1426 Add documentation for Falcon Email notification (Peeyush Bishnoi via Pallavi Rao)
FALCON-1425 Provide Email based plugin to send Notification once instance completed(Peeyush Bishnoi via Ajay Yadava)
FALCON-1205 SLAService to keep track of missing SLAs for feeds(Ajay Yadava)
FALCON-1449 Move getEntityProperties method to EntityUtil.(Ajay Yadava)
FALCON-1357 Update CHANGES.txt to change 0.7 branch to release.(Ajay Yadava)
FALCON-1414 Add all fields in filterBy to the entity list output.(Narayan Periwal via Ajay Yadava)
FALCON-1430 Exclude designer from source tarball(Ajay Yadava)
FALCON-348 Add shutdown hook for Falcon (Sandeep Samudrala via Pallavi Rao)
OPTIMIZATIONS
FALCON-1403 Revisit IT cleanup and teardown(Narayan Periwal via Pallavi Rao)
BUG FIXES
FALCON-1579 post-processing action fails with javax.servlet.jsp.el.ELException (Sowmya Ramesh via Pallavi Rao)
FALCON-1563 Old feed instances get deleted from SLA monitoring on feed update (Ajay Yadava).
FALCON-1560 Lifecycle does not allow feed with frequency greater than days(1) (Ajay Yadava).
FALCON-1556 Falcon build fails when building with hivedr profile(Sowmya Ramesh)
FALCON-1558 Sla API shows pending instance although _SUCCESS directory is present(Pragya Mittal via Ajay Yadava).
FALCON-1555 succeeded-post-processing action fails in Oozie uber mode (Pragya Mittal via Pallavi Rao)
FALCON-1551 Implement setWorkingDir Method in JailedFileSystem(Pavan Kolamuri via Pallavi Rao)
FALCON-1541 Bundle deploy.properties while packaging falcon (Pragya Mittal via Pallavi Rao)
FALCON-1530 SLAMonitoring API is not honouring delete feature(Ajay Yadava).
FALCON-1532 Incorrect documentation in SLA monitoring(Pragya Mittal via Ajay Yadava)
FALCON-1466 Flaky unit tests in Proxy user feature(Sowmya Ramesh)
FALCON-1518 Temporarily comment getTotalEnqueueCount in JMSMessageConsumerTest(Peeyush Bishnoi via Sowmya Ramesh)
FALCON-1514 Incorrect logging while submitting cluster(Sandeep Samudrala via Pallavi Rao)
FALCON-1509 Auto generation of REST API does not work in distributed mode(Narayan Periwal via Sowmya Ramesh)
FALCON-1491 Update ActiveMQ version to 5.12(Peeyush Bishnoi via Sowmya Ramesh)
FALCON-1487 In secure cluster setup Hcat process/feed scheduling or replication fails(Sowmya Ramesh)
FALCON-1339 List feed entities shows scheduled Feed entities as submitted(Balu Vellanki via Sowmya Ramesh)
FALCON-1499 Lifecycle Retention Issues(Ajay Yadava)
FALCON-1469 Flaky EntityManagerJerseyIT#testDuplicateSubmitCommands(Sandeep Samudrala via Ajay Yadava)
FALCON-1470 HiveDRStatusStoreTest should fail when using fakeGroup to create StatusStore(Balu Vellanki via Sowmya Ramesh)
FALCON-1462 Modify use of "testuser" in UTs and ITs(Narayan Periwal via Sowmya Ramesh)
FALCON-1484 Find Bundles fails in case of hadoop namenode moving to HA(Sandeep Samudrala via Pallavi Rao)
FALCON-1343 Fix validation of read/write endpoints in ClusterEntityParser(Balu Vellanki via Ajay Yadava)
FALCON-1373 HiveDR does not work when job is run on destination cluster(Balu Vellanki via Ajay Yadava)
FALCON-1401 MetadataMappingService fails to add an edge for a process instance(Pallavi Rao)
FALCON-1465 Cluster submission fails with java.lang.IllegalArgumentException in distributed mode(Ajay Yadava via Sowmya Ramesh)
FALCON-1331 Update Failed for an entity and further updates are not possible as lock is not released(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1408 Add more logging information for failing ClusterEntityValidationIT(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1442 Contract of WorkflowEngine API broken(Balu Vellanki via Ajay Yadava)
FALCON-1460 Move getHiveCredentials method to ClusterHelper(Ajay Yadava via Sowmya Ramesh)
FALCON-1342 Do not allow duplicate properties in entities(Balu Vellanki via Sowmya Ramesh)
FALCON-1461 NPE in DateValidator validate(Raghav Kumar Gautam via Sowmya Ramesh)
FALCON-1446 Flaky TaskLogRetrieverYarnTest(Narayan Periwal via Pallavi Rao)
FALCON-1443 NPE in shutdown hook(Pallavi Rao via Ajay Yadava)
FALCON-1445 Docfix for api/instance/dependencies endpoint(Raghav Kumar Gautam via Ajay Yadava)
FALCON-1381 The webservice response of Falcon includes a stack trace in case of errors(Narayan Periwal via Ajay Yadava)
FALCON-1438 Falcon RestAPI - In case of error falcon responds with FalconWebException::null(Balu Vellanki via Ajay Yadava).
FALCON-1415 Hive DR process fail if there are no events available from source table(Peeyush Bishnoi via Ajay Yadava)
FALCON-1371 Status of scheduled Process entity is shown as submitted in corner case(Balu Vellanki via Sowmya Ramesh)
FALCON-1402 Validate cmd throws NPE when source cluster and any one of target cluster doesn't have overlapping dates(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1365 HCatReplication job fails with AccessControlException(Sowmya Ramesh via Ajay Yadava)
FALCON-298 Feed update with replication delay creates holes(Sandeep Samudrala via Ajay Yadava)
FALCON-1410 Entity submit fails when multiple threads try submitting same definition(Sandeep Samudrala via Ajay Yadava)
FALCON-1429 Fix Falcon monitoring, alert, audit and monitoring plugins by fixing aspectj handling(Venkat Ranganathan via Ajay Yadava)
FALCON-1416 Add ACL (if missing) during touch(Narayan Periwal via Ajay Yadava)
FALCON-1413 Filter By throws wrong error in case of wrong argument being passed(Narayan Periwal via Ajay Yadava)
FALCON-1421 checkColos should be a no-op for embedded mode(Venkat Ranganathan via Ajay Yadava)
Release version: 0.7
FALCON-1424 Update changes.txt for 0.7 branch(Ajay Yadava)
INCOMPATIBLE CHANGES
NEW FEATURES
FALCON-1188 Falcon support for Hive Replication(Venkat Ranganathan via Ajay Yadava)
FALCON-1297 Falcon Unit which supports Submit and Schedule of jobs(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1039 Add instance dependency API in falcon (Ajay Yadava)
FALCON-796 Enable users to triage data processing issues through falcon (Ajay Yadava)
IMPROVEMENTS
FALCON-1432 Fix licenses in LICENSES.txt(Ajay Yadava)
FALCON-1378 Falcon documentation lacks information on how to run Falcon on standalone Oozie/Hadoop setup(Pallavi Rao via Ajay Yadava)
FALCON-1419 Document ability to disable oozie dryRun during entity schedule actions(Balu Vellanki via Ajay Yadava)
FALCON-1174 Ability to disable oozie dryrun while scheduling or updating the falcon entity(Balu Vellanki via Ajay Yadava)
FALCON-1374 Remove the cap on numResults(Pragya Mittal via Ajay Yadava)
FALCON-1379 Doc describes retention incorrectly(Ajay Yadava)
FALCON-1359 Improve output format for Feed Instance Listing(Ajay Yadava)
FALCON-1368 Improve Falcon server restart time(Sandeep Samudrala via Ajay Yadava)
FALCON-1361 Default end date should be now(Pragya Mittal via Ajay Yadava)
FALCON-1362 Colo option shouldn't be mandatory(Sandeep Samudrala via Ajay Yadava)
FALCON-1360 Size of feed should be humanized in feed instance listing(Sndeep Samudrala via Ajay Yadava)
FALCON-1301 Improve documentation for Installation(Pragya Mittal via Ajay Yadava)
FALCON-1322 Add prefix in runtime.properties(Sandeep Samudrala via Ajay Yadava)
FALCON-1317 Inconsistent JSON serialization(Ajay Yadava)
FALCON-1324 Pagination API breaks backward compatibility(Ajay Yadava).
FALCON-668 FeedReplicator improvement to include more DistCP options(Sowmya Ramesh via Ajay Yadava)
FALCON-1320 Adding equals() and hashCode() method in LineageGraphResult.Edge(Pragya Mittal via Ajay Yadava)
FALCON-1139 Validation issues in Falcon UI(Pallavi Rao via Ajay Yadava)
FALCON-1204 Expose default configs for feed late data handling in runtime.properties(Balu Vellanki via Ajay Yadava)
FALCON-1170 Falcon Native Scheduler - Refactor existing workflow/coord/bundle builder(Pallavi Rao via Ajay Yadava)
FALCON-1031 Make post processing notifications to user topics optional (Pallavi Rao via Ajay Yadava)
FALCON-1186 Add filtering capability to result of instance summary (Suhas Vasu)
FALCON-1293 Update CHANGES.txt to change 0.6.1 branch to release (Shaik Idris Ali via Ajay Yadava)
FALCON-1116 Rule for Oozie 4+ doesn't match 5+ versions (Ruslan Ostafiychuk)
FALCON-1114 Oozie findBundles lists a directory and tries to match with the bundle's appPath
(Pallavi Rao via Ajay Yadava)
FALCON-1207 Falcon checkstyle allows wildcard imports(Pallavi Rao via Ajay Yadava)
FALCON-1147 Allow _ in the names for name value pair(Sowmya Ramesh via Ajay Yadava)
FALCON-676 Enable metrics for Titan(Ajay Yadava)
FALCON-1060 Handle transaction failures in Lineage(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1212 Remove dependency on Gremlin (Ajay Yadava via Suhas Vasu)
FALCON-1211 Source tarball are not generated in mvn assembly when profile is distributed
(Shaik Idris Ali)
FALCON-1219 Minor doc fix(Raghav Kumar Gautam via Ajay Yadava)
FALCON-1059 Lineage should support bootstrapping(Ajay Yadava)
FALCON-75 Falcon CLI for deleting entities should inform user if entity does not exist(Ajay Yadava)
FALCON-1127 Falcon entity status is submitted when corresponding Bundle
is runningwitherror(Pallavi Rao via Suhas Vasu)
FALCON-1142 ClusterEntityParserTest.testClusterWithOnlyStaging
fails when run alone(Pallavi Rao via Suhas Vasu)
FALCON-1152 Names of Xml attributes and Class member variables
are inconsistent(Ajay Yadava)
OPTIMIZATIONS
FALCON-1228 testSubscriber test of JMSMessageConsumerTest fails at a particular scenario
(Suhas Vasu)
BUG FIXES
FALCON-1203 2 validateACL UTs broken(Narayan Periwal via Ajay Yadava)
FALCON-1423 HDFS recipe broken: Unrecognized option: -counterLogDir(Sowmya Ramesh via Ajay Yadava)
FALCON-1312 Falcon post processing action should use Oozie prepared configuration(Venkat Ranganathan via Ajay Yadava)
FALCON-1038 Log mover fails for map-reduce action(Peeyush Bishnoi via Ajay Yadava)
FALCON-1412 Process waits indefinitely and finally timedout even though missing dependencies are met(Pallavi Rao via Ajay Yadava)
FALCON-1409 Update API throws NullPointerException(Sandeep Samudrala via Ajay Yadava)
FALCON-1407 Temporarily disable failing tests in ClusterEntityValidationIT(Ajay Yadava)
FALCON-1392 FalconUnit tests fail(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1344 EntityGraph returns null in list of dependent entities(Ajay Yadava)
FALCON-1330 When multiple cluster definitions exist for the same colo, triage produces unexpected results(Ajay Yadava)
FALCON-1399 Property for default number of results is not loaded dynamically(Ajay Yadava)
FALCON-1398 CrossEntityValidations contains incorrect validations(Pragya Mittal via Ajay Yadava)
FALCON-1396 Disable the faulty test(Ajay Yadava via Sowmya Ramesh)
FALCON-1251 FeedEvictor UT fails intermittently(Sandeep Samudrala via Ajay Yadava)
FALCON-1383 MetadataMappingServiceTest#testLineageForTransactionFailure fails randomly(Sandeep Samudrala via Ajay Yadava)
FALCON-1380 Triage Result throws incorrect error message on prism for an invalid process instance(Ajay Yadava)
FALCON-1310 Falcon build fails with Oozie-4.2.0(Peeyush Bishnoi via Sowmya Ramesh)
FALCON-1369 Trunk build is broken(Ajay Yadava via Sowmya Ramesh)
FALCON-1363 Fix retry policy example in documentation(Peeyush Bishnoi via Ajay Yadava)
FALCON-1327 When using triage on a server for a process which does not exist on that server,
a NullPointerException is encountered(Ajay Yadava)
FALCON-1325 Triage API on prism, for an instance at which a process does not exist sends incorrect message(Ajay Yadava)
FALCON-1328 Error in Triage documentation(Karishma Gulati via Ajay Yadava)
FALCON-1323 Reverse lookup of feeds causes NPE(Ajay Yadava)
FALCON-1329 Falcon's idempotent behaviour breaks in some cases(Ajay Yadava)
FALCON-1282 Incorrect hdfs servers property for feed replication in secured environment(Venkat Ranganathan via Ajay Yadava)
FALCON-1311 Instance dependency API produces inconsistent results in some scenarios(Pragya Mittal via Ajay Yadava)
FALCON-1268 Instance Dependency API failure message is not intuitive in distributed mode (Ajay Yadava)
FALCON-1260 Instance dependency API produces incorrect results (Ajay Yadava)
FALCON-99 Adding late data to process doesn't create new coord (Pallavi Rao via Suhas Vasu)
FALCON-1101 Cluster submission in falcon does not create an owned-by edge(Sowmya Ramesh via Ajay Yadava)
FALCON-1104 Exception while adding process instance to graphdb when feed has partition expression
(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1252 The parameter "tagkey" should be "tagkeys" in EntityList and FalconCLI twiki
(Ying Zheng via Sowmya Ramesh)
FALCON-1244 numResults query param in listInstances is ignored when start and end params are not specified
(Balu Vellanki via Sowmya Ramesh)
FALCON-1121 Backend support for free-text entity search
(Ying Zheng via Sowmya Ramesh)
FALCON-1051 Lineage apis broken for falcon setup in distributed mode
(Pavan Kumar Kolamuri via Ajay Yadava)
FALCON-1165 Falcon restart failed, if defined service in cluster entity is unreachable
(Peeyush Bishnoi via Ajay Yadava)
FALCON-1195 ClusterEntityParserTest fails intermittently
(Balu Vellanki via Sowmya Ramesh)
FALCON-1162 Cluster submit succeeds when staging HDFS dir does not have
777 (ALL) permission (Venkat Ramachandran via Sowmya Ramesh)
FALCON-1153 Instance kill fails intermittently
(Balu Vellanki via Sowmya Ramesh)
FALCON-954 Secure Kerberos setup : Falcon should periodically revalidate
auth token (Balu Vellanki via Ajay Yadava)
FALCON-1146 feed retention policy deleted everything all the way up
to the root (Peeyush Bishnoi via Suhas Vasu)
FALCON-1129 In a secure cluster, feed replication fails because of
Authentication issues (Venkat Ranganathan via Suhas Vasu)
FALCON-1141 Reverse Lookup for feed in prism fails with BadRequest
(Ajay Yadava via Suhas Vasu)
FALCON-1143 Correcting order of entities on reload
(Ajay Yadava via Suhas Vasu)
FALCON-1144 Dynamic partitions not getting registered in Hcat
(Suhas Vasu)
Release Version: 0.6.1
INCOMPATIBLE CHANGES
NEW FEATURES
FALCON-1091 Monitoring plugin that registers catalog partition - code
(Suhas Vasu / PallaviRao / Shwetha GS via Suhas Vasu)
FALCON-790 Falcon UI to enable entity/process/feed edits and
management. (Armando Reyna/Kenneth Ho via Srikanth Sundarrajan)
FALCON-949 Force update feature (pavan kumar kolamuri via Suhas Vasu)
FALCON-822 Add reverse look up API (Ajay Yadava via Suhas Vasu)
IMPROVEMENTS
FALCON-1280 Update docs/license licenses with right copyright
information (Shaik Idris Ali)
FALCON-1276 Verify licensing in html5-ui module.
(Shaik Idris Ali)
FALCON-1245 Verify licensing and update license.txt in falcon-ui module
(Shaik Idris Ali)
FALCON-1220 Exclude downloaded directories from falcon-ui modules
(Shaik Idris Ali)
FALCON-1182 Remove reference to com.google.code.findbugs:annotations(Shaik Idris Ali)
FALCON-1158 Rename the parameter "pattern" in LIST API to "nameseq"
(Ying Zheng via Suhas Vasu)
FALCON-1142 ClusterEntityParserTest.testClusterWithOnlyStaging
fails when run alone(Pallavi Rao via Suhas Vasu)
FALCON-1128 Adding getter methods to FeedLookupResult
(Karishma Gulati via Samarth)
FALCON-1086 Support execution-order of a feed to be overridden
for replication coord (Shaik Idris Ali via Suhas Vasu)
FALCON-915 Failed to load data. Error: 400 Param user.name
can't be empty - Web UI/0.6 (Balu Vellanki via Suhas Vasu)
FALCON-933 misleading error msg on cluster submit failure
(Sowmya Ramesh via Suhas Vasu)
FALCON-910 Better error messages when creating cluster's directories
(karan kumar via Suhas Vasu)
FALCON-1042 Misleading mesage received while performing touch operation
on scheduled entity (Suhas Vasu)
FALCON-1074 EntityUtil getInstanceSequence is buggy (Ajay Yadava via Suhas vasu)
FALCON-1024 Updating tags and pipeline elements of the feed/process definition
resubmits a new Oozie bundle (Pallavi Rao via Suhas Vasu)
FALCON-555 API response from instance "params" having multiple "entry" key
(Pallavi Rao via Suhas Vasu)
FALCON-1003 Update checkstyle to remove DoubleCheckedLocking
(Pallavi Rao via Suhas Vasu)
FALCON-1012 Add support for MapR-FS (Roman Slysh via Suhas Vasu)
FALCON-774 Discontinue support for JDK 1.6 and move to 1.7. (Peeyush
Bishnoi via Srikanth Sundarrajan)
FALCON-263 Adding documentation for params api (Ajay Yadav via Srikanth
Sundarrajan)
FALCON-237 falcon feed replication should honour availability flag (Peeyush
Bishnoi via Srikanth Sundarrajan)
FALCON-417 Upgrade Hive and HCatalog to latest stable version. (Peeyush Bishnoi
via Srikanth Sundarrajan)
FALCON-896 Upgrade oozie to 4.1.0 and make it the default for falcon. (Peeyush
Bishnoi via Srikanth Sundarrajan)
FALCON-749 Improve error printed in falcon CLI. (Suresh Srinivas via Shwetha GS)
FALCON-977 Drop incubator/incubating from falcon codebase. (Shwetha GS
via Srikanth Sundarrajan)
FALCON-952 If hadoop home is set, use $HADOOP_HOME to set falcon classpath
(Balu Vellanki via Suhas Vasu)
FALCON-935 Feed and process late rerun failed in falcon trunk
(Shaik Idris Ali via Suhas Vasu)
FALCON-914 Add option to search for Entities. (Ajay Yadav via Srikanth
Sundarrajan)
FALCON-256 Create new API for Process dependency graph DAG which captures
process connected via feeds. (Ajay Yadav via Srikanth Sundarrajan)
FALCON-823 Add path matching ability to the radix tree (Ajay Yadav
via Srikanth Sundarrajan)
FALCON-329 Falcon client methods should return objects. (Samar via Shwetha GS)
FALCON-593 Preserve data type for properties in a vertex. (Ajay
Yadav via Srikanth Sundarrajan)
FALCON-785 Document upgrade path from 0.5 to 0.6. (Balu Vellanki
via Srikanth Sundarrajan)
FALCON-877 Pagination API should have a cap on number of results
returned (Ajay Yadav via Srikanth Sundarrajan)
FALCON-734 Document when to use Distributed Mode vs. Embedded Mode
(Ajay Yadav via Srikanth Sundarrajan)
FALCON-805 Create store to store feed properties like name against
it's path (Ajay Yadav via Srikanth Sundarrajan)
FALCON-807 Fix order of actual and expected expression in assert
statements in webapp module (Ajay Yadav via Srikanth Sundarrajan)
FALCON-784 Update release notes in CHANGES.txt in branch and trunk
(Venkatesh Seetharam)
FALCON-782 Update trunk version to 0.7-incubating-SNAPSHOT (Venkatesh
Seetharam)
OPTIMIZATIONS
FALCON-1071 Feed Listing API default behaviour for start and end
not handled properly. (Suhas Vasu)
FALCON-1063 Falcon CLI list entities operation throws NullPointerException
(Pallavi Rao via Suhas Vasu)
FALCON-987 params command inconsistent behavior
(pavan kumar kolamuri via Suhas Vasu)
FALCON-944 Parallel update APIs create 2 coords (Suhas Vasu)
FALCON-943 process update copying user lib is very slow. (Shwetha G S)
FALCON-419 Update deprecated HCatalog API to use Hive Metastore API.
(Shwetha GS)
FALCON-423 Updating falcon server endpoint in distributed setup doesn't
work. (Srikanth Sundarrajan)
FALCON-913 Change the default values of log clean up services
(Suhas vasu)
BUG FIXES
FALCON-1238 Add apache license header to .less css in falcon-ui/app
(Shaik Idris Ali)
FALCON-1224 cannot build falcon - codehaus close service and repo -
fail error 503 (Suhas Vasu)
FALCON-1161 Test case feedFeedBasePathExists fails intermittently
(Suhas Vasu)
FALCON-1154 Replication is broken (Sowmya Ramesh via Suhas Vasu)
FALCON-1159 Falcon build is broken (Suhas Vasu)
FALCON-1146 feed retention policy deleted everything all the way up
to the root (Peeyush Bishnoi via Suhas Vasu)
FALCON-1129 In a secure cluster, feed replication fails because of
Authentication issues (Venkat Ranganathan via Suhas Vasu)
FALCON-1141 Reverse Lookup for feed in prism fails with BadRequest
(Ajay Yadava via Suhas Vasu)
FALCON-1143 Correcting order of entities on reload
(Ajay Yadava via Suhas Vasu)
FALCON-1144 Dynamic partitions not getting registered in Hcat
(Suhas Vasu)
FALCON-1132 Falcon trunk is broken due to failure in IT test
(Ajay Yadava via Suhas Vasu)
FALCON-1097 UT failure for ExpressionHelperTest
(Ajay Yadava via Shaik Idris)
FALCON-1125 Feed Lookup API doesnt work via prism
(Ajay Yadava via Suhas Vasu)
FALCON-1119 Instance logs option is not returning the log location
(Suhas Vasu)
FALCON-1100 UI : Failed to load data. 404 not found
(Sowmya Ramesh via Suhas Vasu)
FALCON-1123 Stacktrace printed by Falcon CLI is not useful to user
(Pallavi Rao via Suhas Vasu)
FALCON-1117 Falcon Client throws NPE on no emtpy result in
reverse lookup (Ajay Yadava via Suhas Vasu)
FALCON-1099 FeedReplicator: throws NPE (Sowmya Ramesh via Suhas Vasu)
FALCON-1064 Build hangs at the following test: JMSMessageProducerTest
(Sowmya Ramesh via Suhas Vasu)
FALCON-1070 numResults and offset doesnot work for instance operations
(Suhas Vasu)
FALCON-1025 lastWeek and CurrentWeek functions are getting
evaluated incorrect (pavan kumar kolamuri via Suhas Vasu)
FALCON-1020 validate command produces different results when run
via prism and server (pavan kumar kolamuri via Suhas Vasu)
FALCON-950 Rerun does not work on succeeded instances (Suhas Vasu)
FALCON-1048 Incorrect documentation for feed instacnce listing api. (Suhas
Vasu via Srikanth Sundarrajan)
FALCON-1057 recipes.twiki should be renamed Recipes.twiki for consistency
and to fix a dead link (Aaron Dossett via Srikanth Sundarrajan)
FALCON-1052 pipeline feature is not able to group by through CLI
(Pallavi Rao via Suhas Vasu)
FALCON-1047 Feed Instance Listing doesn't return any output or error
(Pallavi Rao via Suhas Vasu)
FALCON-1050 Falcon rerun is broken for timed out instances
(Suhas Vasu)
FALCON-1045 Falcon rerun is broken in trunk (Suhas Vasu)
FALCON-973 Add LogMover Service for yarn
(pavan kumar kolamuri via Suhas Vasu)
FALCON-993 Falcon Oozie adaptor test case failed with umask issue
(Peeyush Bishnoi via Srikanth Sundarrajan)
FALCON-1000 ITs fail with NoSuchFieldError: INSTANCE. (Shwetha GS)
FALCON-109 submission of clusters for non registered colos
(Pallavi Rao via Suhas Vasu)
FALCON-995 Sharelib directory does not exist in webapp
(Peeyush Bishnoi via Suhas Vasu)
FALCON-984 Falcon build is broken. (Peeyush Bishnoi via Srikanth
Sundarrajan)
FALCON-945 Fix broken lineage feature in Web-UI. (Adam Kawa via Srikanth
Sundarrajan)
FALCON-921 Validate command is exposed only through prism. (Ajay Yadav
via Shwetha GS)
FALCON-916 Falcon idempotency is being voilated during delete. (Balu
Vellanki via Srikanth Sundarrajan)
FALCON-917 Fix corner cases while getting job id during instance status
(Suhas Vasu)
Release Version: 0.6-incubating
FALCON-785 Document upgrade path from 0.5 to 0.6 (Venkatesh Seetharam)
INCOMPATIBLE CHANGES
FALCON-753 Change the ownership for staging dir to user submitting the feed
(Venkatesh Seetharam)
NEW FEATURES
FALCON-722 Add SLA for processes (Ajay Yadav via Srikanth Sundarrajan)
FALCON-721 Add SLA for Feeds (Ajay Yadav via Suhas Vasu)
FALCON-687 Add hooks for extensions in Audit (Venkatesh Seetharam)
FALCON-636 Add a sample recipe for disaster recovery of hdfs dirs/files
(Sowmya Ramesh via Venkatesh Seetharam)
FALCON-635 Add recipe option in falcon client (Sowmya Ramesh via
Venkatesh Seetharam)
FALCON-615 Add pipleline element to lineage graph
(Sowmya Ramesh via Venkatesh Seetharam)
FALCON-614 Add pipeline element to process entity
(Balu Vellanki via Venkatesh Seetharam)
FALCON-588 Baselining designer code. (samar via Shwetha GS)
FALCON-400 Add Authorization for Entities (Venkatesh Seetharam)
FALCON-279 Add ACL for Cluster Entity
FALCON-462 Add ACL for process entity
FALCON-463 Validate Feed ACL only if authorization is enabled
FALCON-464 Enforce Authorization for REST API
FALCON-468 Add User Documentation for authorization feature
FALCON-557 Add super-user who is authorized for all
FALCON-466 REST APIs must add the entity owner as an implicit filter (Balu Vellanki
via Venkatesh Seetharam)
FALCON-263 API to get workflow parameters. (pavan kumar kolamuri via Shwetha GS)
IMPROVEMENTS
FALCON-320 Whitespace has not been taken into consideration in runtime.properties
FALCON-766 Falcon workflow rerun by default should rerun only Failed nodes
and remove continue option (Shaik Idris Ali via Venkatesh Seetharam)
FALCON-744 Document existing falcon data archival to cloud store
(Venkatesh Seetharam)
FALCON-869 Clean up required in the instance API calls. (Suhas Vasu)
FALCON-878 Move falcon html files to HTML5. (Ajay Yadav via Srikanth Sundarrajan)
FALCON-145 Feed eviction be implemented in appropriate Storage
implementation. (Ajay Yadav via Srikanth Sundarrajan)
FALCON-813 Expose job id for running jobs in Falcon (Suhas Vasu)
FALCON-834 Propagate request id in the response to help trace and debug
failures in merlin (Venkatesh Seetharam)
FALCON-828 Add hadoop version info as part of falcon admin version API
(Venkatesh Seetharam)
FALCON-762 Support feed listing for file system storage (Srikanth Sundarrajan)
FALCON-20 Remove dependency on custom InMobi DistCp (Sowmya Ramesh via
Venkatesh Seetharam)
FALCON-758 Discontinue support for Oozie-3.x (Peeyush Bishnoi via
Venkatesh Seetharam)
FALCON-757 Discontinue support for Hadoop-1.x (Sowmya Ramesh via
Venkatesh Seetharam)
FALCON-748 Falcon throws '413 Full Head' error message when kerberos is
enabled with AD (Balu Vellanki via Venkatesh Seetharam)
FALCON-767 Upgrade Hadoop from 2.4 to 2.5 (Sowmya Ramesh via Venkatesh Seetharam)
FALCON-651 Typos in Falcon Documentation (Ajay Yadav via Venkatesh Seetharam)
FALCON-576 Update Installation notes for Mac OS (Ajay Yadav via
Venkatesh Seetharam)
FALCON-666 Add Alerts for unrecoverable failures (Venkatesh Seetharam)
FALCON-665 Handle message consumption failures in JMSMessageConsumer
(Venkatesh Seetharam)
FALCON-662 Fetch relationships for a given type API (Balu Vellanki via
Venkatesh Seetharam)
FALCON-661 Add list types to Lineage API (Balu Vellanki via
Venkatesh Seetharam)
FALCON-654 Exclude junit dependency in pom (Ruslan Ostafiychuk)
FALCON-640 Add ability to specify sort order for orderBy param in RestAPI
(Balu Vellanki via Venkatesh Seetharam)
FALCON-594 Process lineage information for Retention policies
(Sowmya Ramesh via Venkatesh Seetharam)
FALCON-325 Process lineage information for Replication policies
(Sowmya Ramesh via Venkatesh Seetharam)
FALCON-474 Add Bulk APIs to drive the dashboard needs (Balu Vellanki via
Venkatesh Seetharam)
FALCON-166 Instance status start and end dates are rigid and inconvenient
(Balu Vellanki via Venkatesh Seetharam)
FALCON-612 Create CHANGES.txt for falcon-regression(Arpit Gupta via SamarthG)
FALCON-470 Add support for pagination, filter by, etc. to Entity and
Instance List API (Balu Vellanki via Venkatesh Seetharam)