-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSATD_relation_dataset.csv
We can't make this file beautiful and searchable because it's too large.
8436 lines (7100 loc) · 559 KB
/
SATD_relation_dataset.csv
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
Project,Relation Type,SATD A,SATD B
Drill,SATD Duplication,"[2017-09-12 19:57:04][ilooner][pull:summary][940]
DRILL-5752 Speed Up Unit Tests add Test Categories
","[2017-08-30 17:25:20][Timothy Farkas][issue:summary][DRILL-5752:13098611]
Speed Up Unit Tests"
Brooklyn Server,SATD Repayment,"[2013-01-28 17:27:45][Aled Sage][code-comment][8b66a8930784885a12980d6ed3eb651e79be4319]
In jenkins for things like testRepeatedResizeUpStabilizationDelayTakesMaxSustainedDesired, which runs
a time-sensitive test 100 times, it fails periodically due to things taking too long. This is most
likely caused by a full (slow) GC kicking in during the test.
By GC'ing here, we attempt to avoid a GC in the middle of the time-sensitive test
","[2013-01-28 17:27:45][Aled Sage][commit][8b66a8930784885a12980d6ed3eb651e79be4319]
AutoScalerPolicyTest repeated test: gc in setup
- Try to fix jenkins failure where the ""repeated"" test, which runs a
time-sensitive test 100 consecutive times, fails occasionally due to
scale out/back taking a couple of seconds longer than expected. I
suspect it fails due to a slow GC in the middle of the test.
Therefore GC as part of setup for integration tests."
Incubator Pinot,SATD Repayment,"[2017-07-24 16:27:14][Xiaotian Jiang][code-comment][d6e37665863bdbe10138d730f00200cbcd2e0c1b]
Disabled because with multiple servers, there is no way to check and guarantee that all servers get all segments
reloaded, which cause the flakiness of the tests.
","[2017-07-24 16:27:14][Xiaotian Jiang][commit][d6e37665863bdbe10138d730f00200cbcd2e0c1b]
Fix the flakiness of OfflineClusterIntegrationTest (#1700)
With multiple servers, there is no way to check and guarantee that all servers get all segments reloaded, which cause the flakiness of the tests.
To fix that, in OfflineClusterIntegrationTest, only start one server.
Added a MultiNodesOfflineClusterIntegrationTest to keep the same coverage for multiple brokers and multiple servers."
Carbondata,SATD Duplication,"[2016-11-03 08:10:54][lion-x][pull:summary][288]
[CARBONDATA-369]Remove Useless Files in carbondata.scan.expression
","[2016-11-03 08:13:33][Lionx][issue:summary][CARBONDATA-369:13017547]
Remove Useless Files in carbondata.scan.expression"
Arrow,No Relation,"[2018-08-09 13:31:10][Wes McKinney][code-comment][78a4d651221c399c8e9779efa96e324a9caaa09c]
This is overridden in several subclasses, but if an Unbox implementation
is defined, it will be used here
","[2018-08-08 21:22:42][wesm][pull:comment][2366:208740429]
Yes, I think so. When mixing scalars and collections we can bail out early; I think exiting after 1000 elements if possible is better than visiting all 10,000,000. Maybe such cases are esoteric but preventing this worst case scenario is worth a bit of extra effort IMHO"
Groovy,SATD Repayment,"[2019-08-26 13:50:12][Daniel Sun][code-comment(deleted)][5a7fa7357bf587c317825df0de907e0d512e8b5d]
TODO: Convert to functional interface?
","[2019-08-26 13:50:12][Daniel Sun][commit][5a7fa7357bf587c317825df0de907e0d512e8b5d]
Minor refactoring: Convert `ClassgenCallback` to functional interface"
Hbase,SATD Repayment,"[2017-12-14 15:59:41][zhangduo][commit][7466e64abb2c68c8a0f40f6051e4b5bf550e69bd]
HBASE-19510 TestDistributedLogSplitting is flakey for AsyncFSWAL
","[2017-12-14 02:33:36][Duo Zhang][issue:summary][HBASE-19510:13124863]
TestDistributedLogSplitting is flakey for AsyncFSWAL"
Hawq,SATD Duplication,"[2016-06-08 13:53:30][Paul Guo][code-comment][fe22ef4288fd9f08db67512740004922f7d71f51]
* This is a hack: We added the snappy support for row oriented storage, however
* to make the feature friendly to upgradation in short term, we decide to not
* modify the system table to implement this. Following ugly hack is to
* complete this. Let's remove this piece of code after snappy support is
* added to the related system tables.
","[2016-06-08 05:21:23][Paul Guo][issue:summary][HAWQ-793:12976707]
In HAWQ-774 we added the snappy support for the row oriented storage, however to make the change more friendly to upgradation, we will need to temporarily hack to keep the related metadata unmodified."
Beam,No Relation,"[2018-07-25 15:31:35][Ankur][commit][75e3986171ce68a6fc4c42689698576c407f05b1]
[BEAM-4176] Initial implementation for running portable runner tests (#5935)
* TestPortableRunner for validate runner tests
* Dynamically assign jobServer host and port.
* Documentation formatting
* Disable Metrics for Flink Portable Runner
* Change to gradle files and check for pipeline completion for flink validates runner test
* Review Comments
* Adding javadoc for default option factory
* Update lambda to handle 0 method args.
* Fix simple typo
* Use varargs in array based method declaration.
* Fixing Log message
","[2018-07-23 18:15:07][lukecwik][pull:comment][5935:204504520]
nit: use a lambda and the implicit `it` parameter as it allows you to call the method without any paramemters or with parameters"
Pulsar,SATD Repayment,"[2020-11-10 22:18:45][Renkai][commit][853bcf924ed7aa1ced63e7b985de2167c1820df1]
Gradually make `pulsar-broker` conform the project style check (#8501)
Make `checkstyle-pulsar-broker.xml` gradually the same with `checkstyle.xml` and keep style-check passed
* removed trailing white spaces
* replaced tabs with white spaces
* added `package-info.java`
","[2020-11-10 08:30:37][Renkai][pull:summary][8501]
Make `checkstyle-pulsar-broker.xml` gradually the same with `checkstyle.xml` and keep style-check passed
* removed trailing white spaces
* replaced tabs with white spaces
* added `package-info.java`"
Carbondata,SATD Repayment,"[2017-04-06 10:21:41][ravipesala][commit][4a7adfa97ae62ea946a1111101f5ae9b2148e76f]
[CARBONDATA-870] Folders and files not getting cleaned up created locally during data load operation. This closes #735
","[2017-04-05 13:44:54][Manish Gupta][issue:summary][CARBONDATA-870:13061745]
Folders and files which are created in local temp store location during data load and insert into operations are not getting cleaned up. After some time this will lead to filling up of local disk space and eventually will lead to data load failure if threshold limit is reached.
For this all the folders and files created locally need to be deleted once the operation is completed."
Ozone,SATD Duplication,"[2020-08-06 17:49:25][adoroszlai][pull:summary][1297]
HDDS-4073. Remove leftover robot.robot
","[2020-08-06 16:13:18][Attila Doroszlai][issue:summary][HDDS-4073:13321332]
An unused Robot test ({{robot.robot}}) was accidentally added in HDDS-3612. It was refactored to separate {{string_tests.robot}} and {{fs_tests.robot}}, but the original file was not removed."
Lucene Solr,No Relation,"[2018-04-03 09:37:12][Alan Woodward][code-comment][00eab54f9d6232c68a93f10ff20e3a724ffeca14]
*
* Return an iterator over intervals where the subiterators appear in a given order
","[2018-03-09 17:12:43][Jim Ferenczi][issue:comment][LUCENE-8196:16393188]
{quote}
I'd rather keep the API as it is, with the field being passed to IntervalQuery and then recursing down the IntervalSource tree. Otherwise you end up having to declare the field on all the created sources, which seems redundant. I've removed the cross-field hack entirely for the moment.
{quote}
+1 to remove the cross-field hack, thanks. Regarding the API it's ok since IntervalQuery limits all sources to one field so I am fine with that (I misunderstood how the IntervalQuery can be used)."
Nifi,SATD Repayment,"[2018-10-23 14:46:14][rednikotin][code-comment][c8928ce3509facbf4b6501295273849de2288fab]
replace unnecessary row count with -1 stub value when paging is used
","[2018-10-23 14:46:14][rednikotin][commit][c8928ce3509facbf4b6501295273849de2288fab]
NIFI-5727: Added replace unnecessary row count with -1 stub value when paging is used
Signed-off-by: Matthew Burgess <[email protected]>
This closes #3094"
Incubator Pinot,SATD Repayment,"[2016-07-27 13:16:16][Puneet Jaiswal][commit][dfa4a8f25fa23a4458f5d92376a06a72b8463836]
TE: removing unused DAO classes. (#320)
* thirdeye : removing unused classes
* adding results util function
* restoring code for backward compatibility
* optimizing function update with anomaly-result
","[2016-07-27 17:54:37][puneetjaiswal][pull:summary][320]
TE: removing unused DAO classes"
Incubator Doris,SATD Repayment,"[2020-12-18 21:17:18][Mingyu Chen][code-comment][3d4b2cb1aee6c3c0d4ebc74ca75046ceeeb8c350]
/ Regardless of whether the tablet is submitted for compaction or not,
/ we need to call 'reset_compaction' to clean up the base_compaction or cumulative_compaction objects
/ in the tablet, because these two objects store the tablet's own shared_ptr.
/ If it is not cleaned up, the reference count of the tablet will always be greater than 1,
/ thus cannot be collected by the garbage collector. (TabletManager::start_trash_sweep)
","[2020-12-17 03:36:23][morningman][pull:summary][5100]
## Proposed changes
Regardless of whether the tablet is submitted for compaction or not,
we need to call 'reset_compaction' to clean up the base_compaction or cumulative_compaction objects
in the tablet, because these two objects store the tablet's own shared_ptr.
If it is not cleaned up, the reference count of the tablet will always be greater than 1,
thus cannot be collected by the garbage collector. (TabletManager::start_trash_sweep)
This bug is introduced from #4891
## Types of changes
- [x] Bugfix (non-breaking change which fixes an issue)"
Phoenix,No Relation,"[2014-12-18 12:18:16][Nick Dimiduk][code-comment][8307f6c43fecd397c96414caf606c25b273dbd3a]
* There was a bug in serialization of timestamps which was causing the sub-second millis part
* of time stamp to be present both in the LONG and INT bytes. Having the <100000 check
* makes this serialization fix backward compatible.
","[2014-12-17 20:16:59][Eli Levine][issue:comment][PHOENIX-1514:14250457]
Thanks for the work, Nick! IMHO we might be better off keeping this in main and 5.0 branch. Looking at the pull req a bit... this change is quite pervasive and putting into 4.0 means version 4.3, the next minor Phoenix 4 release will get it. This is feeling like a major version feature. Keeping it in 5.0 and main might make more sense and maybe only backport it if/when people express a need for this in 4.x?"
Camel,SATD Repayment,"[2020-08-28 09:11:55][Claus Ibsen][commit][0b25b36f0a6baf73ac0a9497af4502a0967b1964]
CAMEL-15474: camel-api-component - Source code generator should include parameter documentation
","[2020-08-27 10:15:52][Claus Ibsen][issue:summary][CAMEL-15474:13324809]
camel-api-component - Source code generator should include parameter documentation"
Pulsar,SATD Duplication,"[2020-09-16 04:56:10][gaoran10][pull:summary][8071]
[Test] transaction flaky test
","[2020-09-16 04:47:33][gaoran10][issue:summary][8070]
Transaction flaky test caused by TB client topic lookup failed"
Attic Apex Malhar,SATD Repayment,"[2015-03-06 12:26:22][Chaitanya][code-comment][5baa375c47efc7fdd5f326f8ad4f43d4ab7a0dba]
Ignore the duplicate messages
","[2015-03-06 12:26:22][Chaitanya][commit][5baa375c47efc7fdd5f326f8ad4f43d4ab7a0dba]
Ignore the duplicate messages. Remove the map first, if the thread is done"
Incubator Mxnet,SATD Repayment,"[2018-08-07 05:18:48][Anirudh Subramanian][commit][9dd5edd8e6ec28a97c6ba9bda51b2b9c7a88971b]
Disable flaky cpp test (#12056)
","[2018-08-06 23:10:52][anirudh2290][pull:summary][12056]
## Description ##
Disabling flaky test. Tracking here: https://github.com/apache/incubator-mxnet/issues/11998
## Checklist ##
### Essentials ###
Please feel free to remove inapplicable items for your PR.
- [x] Changes are complete (i.e. I finished coding on this PR)
- [x] All changes have test coverage:
- Unit tests are added for small changes to verify correctness (e.g. adding a new operator)
- Nightly tests are added for complicated/long-running ones (e.g. changing distributed kvstore)
- Build tests will be added for build configuration changes (e.g. adding a new build option with NCCL)
- [x] To the my best knowledge, examples are either not affected by this change, or have been fixed to be compatible with this change
### Changes ###
- [x] Disable test MKLDNNSum"
Beam,SATD Repayment,"[2016-02-01 19:09:45][dhalperi][code-comment][ab733b4557f82589d661d5093a6e0c6d7905bae4]
Cache the old encoder/decoder and let the factories reuse them when possible. To be threadsafe,
these are ThreadLocal. This code does not need to be re-entrant as AvroCoder does not use
an inner coder.
","[2016-02-01 19:09:45][dhalperi][commit][ab733b4557f82589d661d5093a6e0c6d7905bae4]
AvroCoder: more efficient use of Avro APIs
- Make the Encoder/Decoder factories static -- they are thread-safe
and immutable.
- Reuse the DirectBinaryEncoder/DirectBinaryDecoder objects across
invocations to encode/decode. Though reuse is only ""when possible"",
it's always applicable in our invocations. This change reduces the
allocations of these objects from 1/element to 1/coder instance.
- Remove the call to flush from encoder(), because the
DirectBinaryEncoder does not need to be flushed.
- Cache the objects in ThreadLocal variables for thread safety.
----Release Notes----
[]
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=113018546"
Fineract,SATD Repayment,"[2019-11-25 08:58:07][xurror][code-comment(deleted)][b0bfeddc62c09edf01ef193e5da373faab78a0cd]
TODO Auto-generated method stub
","[2019-11-25 08:58:07][xurror][commit][b0bfeddc62c09edf01ef193e5da373faab78a0cd]
remove TODO Auto-generated method stub"
Lucene Solr,No Relation,"[2018-02-20 17:46:47][koji][code-comment][4bfcbc5c605e2823c924dbe287a67b37d2dd0ca8]
Field to use to determine and enforce document uniqueness.
Unless this field is marked with required=""false"", it will be a required field
","[2018-02-24 19:14:09][Uwe Schindler][issue:comment][SOLR-11795:16375749]
Hi Koji,
the snakeyaml people are fixing the bug with Java 9. So it looks like we may get a relaese - it should be enough to update the dependency then. I have no plans about their schedule.
Nevertheless, I am not really happy with another config file format. We should somehow decide for one of them, not add many more."
Hadoop,No Relation,"[2012-03-03 00:42:49][Aaron Myers][code-comment][a1fc055489766876e8d3ee2bd75a5fef25f05b33]
Look up the address of the active NN.
","[2012-03-14 19:28:25][Todd Lipcon][issue:comment][HDFS-1623:13229534]
Hi Avik. The multi-SBN approach is actually very nearly implemented by what's in trunk. The main missing pieces are actually in the more trivial bits -- for example, we have a few bits of the code that look up ""the other node"" for operations like triggering checkpoints. Those would have to be modified a bit to ""look up the active node"" instead. But nothing fundamental or really difficult."
Hbase,SATD Repayment,"[2018-06-14 20:26:49][Sean Busbey][code-comment][cb2dfd117b1764c3719d184a5ffbf77a7c5949ec]
If we change checkstyle configs, run checkstyle
","[2018-06-14 17:38:55][Sean Busbey][issue:summary][HBASE-20733:13166158]
right now we only do checkstyle tests when java files are altered. we should also run if our checkstyle configs in {{hbase-checkstyle}} are altered."
Lucene Solr,No Relation,"[2012-08-09 10:20:53][Uwe Schindler][code-comment][148d99cbbc1201c1812ea0b7d63604355f55ff8b]
Assume all of the docs have a unique term (e.g. a primary key) and we hope to maintain a set with 10% of bits set
","[2012-08-09 14:31:22][Chris Male][issue:comment][LUCENE-3312:13431839]
Yup found it.
The problem is in the branch {{Document#getFields()}} is creating a new List and inside {{DocMaker}} in the benchmark module, it is pulling the Fields and clearing them (using {{clear()}}). Since a new List is being created each time, it is the new List that is getting cleared rather than the actual fields. Hence each iteration just adds more fields without having the previous ones cleared."
Druid,SATD Repayment,"[2018-10-23 07:17:38][Roman Leventov][commit][84ac18dc1bce14afe88ebcccd46da21baefae73d]
Catch some incorrect method parameter or call argument formatting patterns with checkstyle (#6461)
* Catch some incorrect method parameter or call argument formatting patterns with checkstyle
* Fix DiscoveryModule
* Inline parameters_and_arguments.txt
* Fix a bug in PolyBind
* Fix formatting
","[2018-10-12 21:46:46][leventov][pull:summary][6461]
Catch some incorrect method parameter or call argument formatting patterns with checkstyle"
Beam,SATD Repayment,"[2020-04-09 10:44:35][Kamil Wasilewski][commit][79b2d87b59819ee55fb8600e8a845c6ba5b98d64]
[BEAM-9085] Fix performance regression in SyntheticSource on Python 3 (#11092)
","[2020-01-10 12:15:55][Kamil Wasilewski][issue:summary][BEAM-9085:13278704]
Performance regression in np.random.RandomState() skews performance test results across Python 2/3 on Dataflow"
Attic Apex Core,SATD Duplication,"[2013-12-04 15:06:29][David Yan][code-comment][69862c37388b64f992fb31be4d88b5f405edeb1b]
commented out because free memory is misleading because of GC. may want to revisit this.
public int memoryMBFree;
","[2013-12-04 15:06:29][David Yan][commit][69862c37388b64f992fb31be4d88b5f405edeb1b]
SPOI-1456 #resolve took out memoryFree because GC makes it misleading, may want to revisit this"
Hive,No Relation,"[2017-03-21 13:55:27][Sergey Shelukhin][code-comment(deleted)][9f5a3e3d89db7d6f4754eb345ad9abb6997857e1]
TODO: is it valid to give zcr the modified 2nd part?
","[2017-03-21 13:55:27][Sergey Shelukhin][commit][9f5a3e3d89db7d6f4754eb345ad9abb6997857e1]
HIVE-16180 : LLAP: Native memory leak in EncodedReader (Sergey Shelukhin/Prasanth Jayachandran, reviewed by Prasanth Jayachandran/Sergey Shelukhin)"
Echarts,SATD Duplication,"[2017-12-29 17:37:20][sushuang][code-comment][ee5d23b29cc17ae07a63add3644f0826d0e57374]
If a stageHandler should cover all series, `allSeries` should be declared mandatorily,
to avoid some typo or abuse. Otherwise if an extension do not specify a `seriesType`,
it works but it may cause other irrelevant charts blocked.
","[2017-12-29 17:37:20][sushuang][commit][ee5d23b29cc17ae07a63add3644f0826d0e57374]
If a stageHandler should cover all series, `allSeries` should be declared mandatorily, to avoid some typo or abuse. Otherwise if an extension do not specify a `seriesType`, it works but it may cause other irrelevant charts blocked."
Tvm,SATD Repayment,"[2020-03-22 18:15:19][Tianqi Chen][commit][50b5adaac2956712d65e14c163148c1e6279f5e2]
[DOCS] Cleanup docs before rebuild (#5127)
* [DOCS] Cleanup docs before rebuild
* Ask doxygen to generate svg to minimize the file size
","[2020-03-22 20:22:27][tqchen][pull:summary][5127]
[DOCS] Cleanup docs before rebuild"
Hbase,No Relation,"[2014-12-16 11:14:30][Jesse Yates][commit][a411227b0ebf78b4ee8ae7179e162b54734e77de]
HBASE-5162 Basic client pushback mechanism
Instead of just blocking the client for 90 seconds when the region gets too
busy, it now sends along region load stats to the client so the client can
know how busy the server is. Currently, its just the load on the memstore, but
it can be extended for other stats (e.g. cpu, general memory, etc.).
It is then up to the client to decide if it wants to listen to these stats.
By default, the client ignores the stats, but it can easily be toggled to the
built-in exponential back-off or users can plug in their own back-off
implementations
","[2014-11-07 20:01:02][Jesse Yates][issue:comment][HBASE-5162:14202565]
Updated patch on latest master (we were getting behind a little bit) and hopefully fixing the checkstyle and findbugs issues."
Arrow,SATD Repayment,"[2018-03-26 19:38:25][Antoine Pitrou][commit][f9f8320339692d4134d1ef42c32cb7c8d547593e]
ARROW-2354: [C++] Make PyDecimal_Check() faster
This basically keeps an eternal reference to the decimal type.
Before:
```
[100.00%] ··· Running convert_pandas.PandasConversionsToArrow.time_from_series ok
[100.00%] ····
========= ========== ============= ============== ===========
-- dtype
--------- ---------------------------------------------------
size int64 float64 float64_nans str
========= ========== ============= ============== ===========
10 420±1μs 426±1μs 421±0.3μs 450±0.6μs
1000000 6.92±1ms 14.1±0.02ms 15.5±0.04ms 1.66s
========= ========== ============= ============== ===========
```
After:
```
[100.00%] ··· Running convert_pandas.PandasConversionsToArrow.time_from_series ok
[100.00%] ····
========= =========== ============= ============== ===========
-- dtype
--------- ----------------------------------------------------
size int64 float64 float64_nans str
========= =========== ============= ============== ===========
10 425±0.9μs 428±1μs 430±0.8μs 438±0.6μs
1000000 7.49±1ms 14.2±0.04ms 15.4±0.05ms 99.2±1ms
========= =========== ============= ============== ===========
```
Author: Antoine Pitrou <[email protected]>
Closes #1794 from pitrou/ARROW-2354-faster-decimal-check and squashes the following commits:
3e22cfe3 <Antoine Pitrou> ARROW-2354: Make PyDecimal_Check() faster
","[2018-03-26 16:41:42][Antoine Pitrou][issue:summary][ARROW-2354:13147974]
[C++] PyDecimal_Check() is much too slow"
Incubator Brooklyn,SATD Duplication,"[2015-11-02 16:42:45][Alex Heneveld][code-comment][48e4fe3ca0b5a00fbdec10bceec9f21edee25ded]
TODO-type-registry
","[2015-10-30 03:00:38][ahgittin][pull:summary][993]
Introduce a type registry as a simplified catalog"
Flink,No Relation,"[2015-07-21 17:58:14][Stephan Ewen][code-comment][d59cebd8c3f643dc6da88924300e78f65f26c640]
If no document and documentElement is available, return
","[2015-07-21 19:17:05][Stephan Ewen][issue:comment][FLINK-2358:14635654]
Implemented in 44ee1c1b64b18db199a7e77492dc890a1234fcb0 and e86f451705315ea7d1ed4d3821e08dd2225d84c0"
Incubator Mxnet,SATD Repayment,"[2019-08-29 10:37:11][Anirudh Subramanian][commit][649429d055e8ac89b2a45929ff2344959768a6e3]
Disable flaky test in test_amp_conversion (#16031)
","[2019-08-28 18:51:26][anirudh2290][pull:summary][16031]
Disable flaky test in test_amp_conversion"
Ignite,No Relation,"[2019-02-06 13:03:51][ascherbakoff][pull:comment][3501:254261587]
Missing javadoc
","[2018-02-08 09:13:14][Alexey Scherbakov][issue:summary][IGNITE-7648:13137103]
IGNITE_ENABLE_FORCIBLE_NODE_KILL system property was introduced in IGNITE-5718 as a way to prevent unnecessary node drops in case of short network problems.
I suppose it's wrong decision to fix it in such way.
We had faced some issues in our production due to lack of automatic kicking of ill-behaving nodes (on example, hanging due to long GC pauses) until we realised the necessity of changing default behavior via property.
Right solution is to kick nodes only if failure threshold is reached. Such behavior should be always enabled.
UPDATE: During a discussion it was decided what the property will remain disabled by default.
We decided to change timeout logic in case of failure detection enabled. We start performing connect and handshake from 500ms increasing using exponential backoff strategy."
Lucene Solr,No Relation,"[2011-06-30 13:59:59][Mark Robert Miller][code-comment][b5be90974b28e59d6ee59b6cbfd24f68c7fc79f6]
*
* Helper class for tracking autoCommit state.
*
* Note: This is purely an implementation detail of autoCommit and will
* definitely change in the future, so the interface should not be relied-upon
*
* Note: all access must be synchronized.
","[2011-06-01 00:13:57][Jason Rutherglen][issue:comment][SOLR-2193:13041904]
bq. I guess personally, just looking at the big picture, this issue seems like a great win for Solr.
Yes the concept of not stopping the world is great. The concept of Solr continuing to be difficult to customize is not so great.
-1 on the implementation which introduces even more awkward layers into Solr, which should be going in the direction of removing the old cruft."
Trafodion,SATD Repayment,"[2017-10-02 00:13:35][Anoop Sharma][code-comment(deleted)][2eaef5d7a9b3beb1b4f45ab97899c2a4b6b7059e]
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
","[2017-10-02 00:13:35][Anoop Sharma][commit][2eaef5d7a9b3beb1b4f45ab97899c2a4b6b7059e]
PR-1251 [TRAFOFION-2731] CodeCleanup: Phase4: Removed lagacy/obsolete warning elimination pragmas"
Trafodion,SATD Repayment,"[2017-10-02 00:13:35][Anoop Sharma][code-comment(deleted)][2eaef5d7a9b3beb1b4f45ab97899c2a4b6b7059e]
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
warning elimination
","[2017-10-02 00:13:35][Anoop Sharma][commit][2eaef5d7a9b3beb1b4f45ab97899c2a4b6b7059e]
PR-1251 [TRAFOFION-2731] CodeCleanup: Phase4: Removed lagacy/obsolete warning elimination pragmas"
Airflow,SATD Duplication,"[2017-09-11 15:08:00][Fokko][pull:summary][2592]
[AIRFLOW-1582] Improve logging within Airflow
","[2017-09-08 13:37:58][Fokko Driesprong][issue:summary][AIRFLOW-1582:13100812]
Improve logging structure of Airflow"
Incubator Doris,SATD Repayment,"[2019-09-03 10:42:16][EmmyMiao87][commit][9f5e5717d4aaf184518d8da93b11c2137489fe6d]
Unify the msg of 'Memory exceed limit' (#1737)
The new msg of limit exceed: ""Memory exceed limit. %msg, Backend:%ip, fragment:%id Used:% , Limit:%. xxx"".
This commit unifies the msg of 'Memory exceed limit' such as check_query_state, RETURN_IF_LIMIT_EXCEEDED and LIMIT_EXCEEDED.
","[2019-09-02 12:09:41][EmmyMiao87][pull:summary][1737]
The new msg of limit exceed: ""Memory exceed limit. %msg, Backend:%ip, fragment:%id Used:% , Limit:%. xxx"".
This commit unifies the msg of 'Memory exceed limit' such as check_query_state, RETURN_IF_LIMIT_EXCEEDED and LIMIT_EXCEEDED."
Reef,No Relation,"[2014-05-29 17:03:31][Markus Weimer][commit][9ae319a235bd2aaf22e340230edc3236446b9171]
Fixed the first half of #750
The fixes the first half of #750, namely the test for exception propagation from a Task's `call()` method:
* Removed the `FailedTask` handler in the test's Driver. This means that we now forward the errors correctly to the client.
* Fixed a log message in `FailTaskStart`
* Updated `EvaluatorManager` logging
","[2016-01-05 18:25:40][tcNickolas][pull:comment][750:169088890]
Do we need to increase the size of the images? I'm not sure how github resizes them when displaying README.md, they might not scale."
Gobblin,SATD Repayment,"[2016-11-23 11:47:58][htran1][commit][5910b0734d297988b3e0bf4e7f9b29310c958514]
Interleave gc() calls with memory allocations to improve reliability of garbage collection test. (#1421)
","[2016-11-23 18:39:49][htran1][pull:summary][1421]
Interleave gc() calls with memory allocations to improve reliability …"
Camel,SATD Repayment,"[2015-01-20 09:53:59][Claus Ibsen][commit][f7cbecbb43738a94bf37f856868f3685ad65896f]
CAMEL-8195: Add javadoc to model classes so we have EIP documentation out of the box
","[2014-12-30 10:04:09][Claus Ibsen][issue:summary][CAMEL-8195:12764171]
Add javadoc to model classes so we have EIP documentation out of the box"
Hbase,SATD Duplication,"[2016-06-14 18:51:54][anoopsjohn][code-comment][17bcf14fea2637fe0e5ca23bb0008c1cca208c98]
TODO better config names?
hbase.ipc.server.reservoir.initial.max -> hbase.ipc.server.reservoir.max.buffer.count
hbase.ipc.server.reservoir.initial.buffer.size -> hbase.ipc.server.reservoir.buffer.size
","[2016-06-14 13:37:53][Anoop Sam John][issue:comment][HBASE-15525:15329506]
{quote}
// TODO better config names?
+ // hbase.ipc.server.reservoir.initial.max -> hbase.ipc.server.reservoir.max.buffer.count
+ // hbase.ipc.server.reservoir.initial.buffer.size -> hbase.ipc.server.reservoir.buffer.size
{quote}
I added this TODO. Kept the old config names from BoundedBBPool for BC. May be we should add the new config and deprecate old for 2.0? We can not just rename by deprecating in 1.3+ versions."
Incubator Mxnet,SATD Repayment,"[2017-07-11 10:56:24][Soonhwan-Kwon][commit][22f9a0dc96a0ad3741c1f8db7b66f27d9de9971a]
add bucketing/batchnorm and improved performance for speech_recognition example (#6971)
","[2017-07-10 04:20:29][Soonhwan-Kwon][pull:summary][6971]
add bucketing and batch norm scheme for speech_recognition example to improve training performance
add flexibility to support various optimizer
fix bug in generating bi-graphemes dictionray
add option not to save csv file to improve performane and reduce disk space requirement
and it solves performance issue(speed) related to #6418
and may related to issues #3076, #6115, #2663
when using both bucketing(variable length) and batch norm
although it is not a solution for time-step wise but layer wise approach for batch normalization"
Accumulo,No Relation,"[2018-08-28 15:44:40][Christopher McTague][code-comment][aaa1c0c82f58b5047b9146d1a0adf007cdb75c0c]
TODO use constants
","[2018-08-28 15:44:40][Christopher McTague][commit][aaa1c0c82f58b5047b9146d1a0adf007cdb75c0c]
Spelling corrections in comments/javadocs (#620)"
Druid,SATD Duplication,"[2017-05-23 10:33:03][Gian Merlino][code-comment][22e5f52d00425d3e70a10c2c49db39055864d51e]
Workaround for non-thread-safe use of HyperLogLogCollector.
OnheapIncrementalIndex has a penchant for calling ""aggregate"" and ""get"" simultaneously.
","[2017-05-23 10:33:03][Gian Merlino][commit][22e5f52d00425d3e70a10c2c49db39055864d51e]
Workaround for non-thread-safe use of CardinalityAggregator. (#4304)"
Ignite,SATD Duplication,"[2017-09-27 12:20:24][Pavel Tupitsyn][code-comment][7f82340189bebac7bfd5f935eb3531035a6f9acb]
/ <summary>
/ A trick to clean up ignite.jni.dll when Ignite is started in non-default AppDomain.
/ We rely on finalizer order here, which is technically undefined:
/ everything that uses UnmanagedUtils must be cleaned up when this class is finalized.
/ </summary>
","[2017-07-12 15:44:25][Pavel Tupitsyn][issue:comment][IGNITE-5730:16084187]
* {{DomainUnload}} is not called in default domain. {{ProcessExit}} should be used instead.
* When Ignite is started in a non-default AppDomain, we should use {{DomainUnload}}. But we rely on {{UnmanagedTarget}} and {{UnmanagedContext}} finalizers to clean up unmanaged objects, so we can't unload ignite.jni.dll before everything is finalized. And finalizer order is undefined. Seems like there is no reliable way to handle this.
Maybe we should not waste time on this and implement IGNITE-5343 instead, which gets rid of {{ignite.jni.dll}} altogether."
Drill,SATD Duplication,"[2016-01-29 18:12:27][laurentgo][pull:summary][347]
Drill code base references lots of rawtypes, which generates lots of warning from the compiler.
As Drill is now compiled with Java 1.7, most of them can be replaced by generic types.
","[2016-01-29 17:52:56][Laurent Goujon][issue:summary][DRILL-4327:12935193]
The Drill codebase references lots of rawtypes, which generates lots of warning from the compiler.
Since Drill is now compiled with Java 1.7, it should use generic types as much as possible."
Lucene Solr,No Relation,"[2017-11-03 10:40:14][Alan Woodward][code-comment][a886a001a4c08e37cc975fd4965bbbaa4ddf938a]
BooleanQuery wrapping an uncacheable query should also not be cached
","[2017-11-01 14:01:33][Alan Woodward][issue:comment][LUCENE-8017:16234100]
Here's a patch adding getCacheHelper() as a method on Weight. I've made this abstract and implemented it on all Weights - it could theoretically default to returning null or the Reader-level cache helper, but I think it's better to be explicit about it.
Some things to explore in follow-up issues:
* re-instate getCoreAndDeletesCacheHelper (or CoreAndDocValues, or whatever we want to call it) so that doc-values based queries can be re-used between searchers if the DV gen is the same
* add getCacheHelper to Double/LongValuesSource so that, eg constant DVS queries can be cached properly"
Beam,No Relation,"[2017-01-23 16:03:47][Kenneth Knowles][code-comment][9248befbbba6b2d18cde3b7ee562b13af33681fc]
*
* Tests for ApiSurface. These both test the functionality and also that our
* public API is conformant to a hard-coded policy.
","[2017-01-23 16:03:47][Kenneth Knowles][commit][9248befbbba6b2d18cde3b7ee562b13af33681fc]
Revert ""Simplified API surface verifications""
This reverts commit 29ffaf3859ba9b4d8ba8529efc96fd5e105e21a3.
The change to require all whitelisted packages to actually expose something
failed in the Dataflow runner postcommit. To be rolled forward after
fixing."
Hbase,SATD Repayment,"[2017-12-14 15:59:41][zhangduo][commit][7466e64abb2c68c8a0f40f6051e4b5bf550e69bd]
HBASE-19510 TestDistributedLogSplitting is flakey for AsyncFSWAL
","[2017-12-14 02:33:36][Duo Zhang][issue:summary][HBASE-19510:13124863]
TestDistributedLogSplitting is flakey for AsyncFSWAL"
Geode,SATD Repayment,"[2018-08-07 13:51:17][Dan Smith][commit][fcd6940600bc0ad3593a492c9a3a30bef4a9bf76]
GEODE-5470: Deleting flaky DlockAndTxLockRegressionTest
This test was introduced as part of the fix for GEODE-4928. However,
we've determined that GEODE-4928 is not actually fixed, which is why
this test is sporadically failing.
Since GEODE-4928 actually appears to be trying to introduce new behavior
for dlocks that is a rather involved feature to implement. Leaving that
feature for another time and deleting this test.
","[2018-07-24 16:35:42][Jinmei Liao][issue:comment][GEODE-5470:16554497]
The test has a comment that says: ""sometimes fail if the background cleanup takes too long."""
Helix,SATD Repayment,"[2014-05-21 18:52:05][zzhang][code-comment][f3b2c4f66acc700467cf99c7b28be1e494d724d7]
all other participants should have cleaned up empty current state
","[2014-05-21 18:52:05][zzhang][commit][f3b2c4f66acc700467cf99c7b28be1e494d724d7]
[HELIX-132] current-state and external-view are not cleaned up when a resource has been removed, rb=21666"
Beam,SATD Repayment,"[2018-04-24 15:59:53][Thomas Groh][commit][6bb6425dec9ba764d8ba70135e47dc71ecfa22dd]
Merge pull request #5148: Cleanups in GroupByKeyOnlyEvaluatorFactory
","[2018-04-16 23:23:01][tgroh][pull:summary][5148]
Cleanups in GroupByKeyOnlyEvaluatorFactory"
Tinkerpop,SATD Duplication,"[2014-05-28 10:48:49][Stephen Mallette][code-comment][ce936da5d046d426d69eae7c887a45d109a1295b]
a dead connection signifies a likely dead host - given that assumption close the pool. we could likely
have a smarter and more configurable choice here, but for now this is ok.
","[2014-05-28 10:48:49][Stephen Mallette][commit][ce936da5d046d426d69eae7c887a45d109a1295b]
Handle dead connections in a pool by closing the pool.
We likely could have more configurable and flexible approaches to dealing with dead connections, but for now the assumption that a dead connection means a dead host is likely good enough."
Lucene Solr,SATD Repayment,"[2018-07-05 14:53:44][Steve Rowe][code-comment][039dae76cb27d6dbc4273f3033ed167a87e3e5f2]
Remove old stuff
","[2018-07-05 14:53:44][Steve Rowe][commit][039dae76cb27d6dbc4273f3033ed167a87e3e5f2]
Run 'rvm cleanup all' to remove old stuff"
Shardingsphere Elasticjob,SATD Duplication,"[2020-10-19 19:29:09][Liang Zhang][code-comment][dc25797275052f4519e7c59331be295bb3ee9d44]
TODO default value is 5000
","[2020-10-19 11:29:04][terrymanu][pull:summary][1600]
Add todo to default value"
Flink,SATD Repayment,"[2020-11-10 10:57:26][fangliang][commit][ea88795c96585e1ae5a195b9e633d8565c1a7f5d]
[FLINK-18938][table-api] Throw better exception message for querying sink only or source only connector
This closes #13214
","[2020-08-13 08:10:18][Jark Wu][issue:summary][FLINK-18938:13322489]
Throw better exception message for quering sink-only connector"
Drill,No Relation,"[2016-11-02 18:00:55][Parth Chandra][commit][7f5acf8f06f4ab2a2efc9801d322b81436794004]
DRILL-4800: Parallelize column reading. Read/Decode fixed width fields in parallel Decoding var length columns in parallel Use simplified decompress method for Gzip and Snappy decompression. Avoids concurrency issue with Parquet decompression. (It's also faster). Stress test Parquet read write Parallel column reader is disabled by default (may perform less well under higher concurrency)
","[2016-07-22 18:48:48][Parth Chandra][issue:summary][DRILL-4800:12991922]
Improve parquet reader performance"
Incubator Doris,SATD Repayment,"[2020-02-05 11:48:54][LingBin][commit][ee5323a6a04ac668a86bff255d8e1e4e88e38a2f]
[Code Refactor]Improve initialization flow of Schema (#2833)
When constructing `Schema` objects, two similar `init` functions
need to be called, and the call order is implicitly required, which
is easy to be misused. At the same time, some of the existing comments
are missing or out of date, which will cause some misleading.
This patch unifies the initialization logic of `Schema`.
No functional changes in this patch.
","[2020-02-04 08:51:00][lingbin][pull:summary][2833]
When constructing `Schema` objects, two similar `init()` functions
need to be called, and the call order is implicitly required, which
is easy to be misused. At the same time, some of the existing comments
are missing or out of date, which will cause some misleading.
This patch unifies the initialization logic of `Schema`.
No functional changes in this patch."
Carbondata,SATD Repayment,"[2018-04-23 16:28:35][ravipesala][commit][8b33ab240126e999e9196369025917370172eee4]
[CARBONDATA-2376] Improve Lucene datamap performance by eliminating blockid while writing and reading index
Problem:
Currently DataMap interface implementations use blockid and blockletid while writing index files, Actually blockid is not needed to store in index files as it only requires blockletid. So it adds more memory and disk size to write index files.
Solution:
Use taskname as index name to identify the indexname. And filter the blocklets directly by avoiding blockids.And pass the taskName as indexname to identify the blockid from blocletdatamap.
Corrected the implementations of LuceneDatamap, BloomFilterDataMap, CGDataMap, FGDataMap and MinMaxDataMap
This closes #2206
","[2018-04-22 05:03:56][ravipesala][pull:summary][2206]
[CARBONDATA-2376] Improve Lucene datamap performance by eliminating blockid while writing and reading index."
Incubator Pinot,SATD Repayment,"[2018-09-27 18:39:45][Xiaotian Jiang][commit][e5ec0f9cdf60b341fd2373da12420c89367e19a2]
Simplify the parameter for forward index creators (#3208)
Also move method getNumBitsPerValue() into PinotDataBitSet and re-implement it without using double
","[2018-09-21 00:50:00][Jackie-Jiang][pull:summary][3208]
Simplify the parameter for forward index creators"
Flink,SATD Duplication,"[2020-06-03 14:46:50][Aljoscha Krettek][code-comment][dc6181667ac012afc0c68cfef825ec7bb30a7589]
We are using JavaSerializer from the flink-runtime module here. This is very naughty and
we shouldn't be doing it because ideally nothing in the API modules/connector depends
directly on flink-runtime. We are doing it here because we need to maintain backwards
compatibility with old state and because we will have to rework/remove this code soon.
","[2020-06-03 14:46:50][Aljoscha Krettek][commit][dc6181667ac012afc0c68cfef825ec7bb30a7589]
[FLINK-17376] Use JavaSerializer instead of getSerializableListState()
We do this because we want to deprecate that method. We will have to get
rid of using JavaSerialization completely soon, though."
Incubator Brooklyn,No Relation,"[2015-11-17 22:50:49][Alex Heneveld][code-comment][3e40b2bfd609e6313c9f48d42be722f708043da1]
TODO depending how useful this is, it might be better to replace by a static WeakHashMap in RegisteredTypes
","[2015-11-12 13:09:18][neykov][pull:comment][1017:44654399]
Doesn't look right, aren't application specs always top level?
On another note, I haven't removed this method just for backwards compatibility. It belongs to an utils class with the `createServiceSpecs` doing the heavy lifting."
Incubator Pinot,SATD Repayment,"[2020-08-05 21:23:37][Xiaotian (Jackie) Jiang][commit][ffa954194e61e330c625a795cae94c15a54a2694]
Pre-generate aggregation functions in QueryContext (#5805)
`AggregationFunction` itself is stateless, so we can share it among all the segments to prevent the overhead of creating it per segment. This can significantly improve the performance of high selectivity queries that hit lots of segments.
- Remove the `accept(visitor)` from the `AggregationFunction` interface which may make it stateful
- Make `DistinctCount` and `DistinctCountBitmap` stateless by caching the dictionary within the result holder
","[2020-08-04 19:59:16][Jackie-Jiang][pull:summary][5805]
## Description
`AggregationFunction` itself is stateless, so we can share it among all the segments to prevent the overhead of creating it per segment. This can significantly improve the performance of high selectivity queries that hit lots of segments.
- Remove the `accept(visitor)` from the `AggregationFunction` interface which may make it stateful
- Make `DistinctCount` and `DistinctCountBitmap` stateless by caching the dictionary within the result holder
## Release Notes
Interface change: `accept(visitor)` is removed from `AggregationFunction`
All the implementation of the `AggregationFunction` should be stateless so that it can be shared among all the segments."
Ozone,No Relation,"[2019-01-09 11:20:57][Hanisha Koneru][code-comment][a8426d990f79e4cf826136dd8960cbcfb091d14a]
Since the state machine is not implemented yet, we should get the
configured dummy message from Ratis.
","[2019-01-09 09:15:34][Shashikant Banerjee][issue:comment][HDDS-947:16737994]
Thanks [~hanishakoneru] for updating the patch. The patch looks good to me. I am +1 on this.
Please take care of the checkStyle issues and ASF licensing issue while committing."
Kafka,No Relation,"[2016-04-07 21:42:24][granders][pull:comment][1173:58950231]
@ewencp Isn't this true of any check of ""aliveness"" here since the process can be gone by the time you check?
In principle you'd need to detect
""is alive OR was alive and finished successfully""
One option is to simply keep as-is, but document that there a known (but probably unlikely) way to get a spurious failure here
","[2016-04-01 16:59:28][Ismael Juma][issue:summary][KAFKA-3490:12955353]
To verify the performance impact of changes, it is very handy to be able to run ducktape performance tests across multiple Kafka versions. Luckily [~geoffra] has done most of the work for this."
Hive,SATD Duplication,"[2017-03-21 13:55:27][Sergey Shelukhin][code-comment][9f5a3e3d89db7d6f4754eb345ad9abb6997857e1]
TODO: the memory release could be optimized - we could release original buffers after we
are fully done with each original buffer from disk. For now release all at the end;
it doesn't increase the total amount of memory we hold, just the duration a bit.
This is much simpler - we can just remember original ranges after reading them, and
release them at the end. In a few cases where it's easy to determine that a buffer
can be freed in advance, we remove it from the map.
","[2017-03-21 01:52:55][Sergey Shelukhin][issue:comment][HIVE-16180:15933968]
Simplifying the release logic - we can just remember the buffers in the beginning. Could be simplified even more by removing all the early release."
Flink,No Relation,"[2019-11-07 08:50:51][Dawid Wysakowicz][code-comment][0b28e830d7366126a91ca9faa38cb19a8f66a9b6]
*
* Must be public as it is used during code generation.
","[2019-10-31 13:12:22][Dawid Wysakowicz][issue:comment][FLINK-13702:16963982]
I don't know exactly how the {{JoinedRow}} is used and therefore if the {{equals/hashCode}} is needed. Correct me if I am wrong but if we remove the {{equals/hashCode}} from {{BinaryGeneric}}, doesn't it mean that we can no longer use generic objects in a {{GroupBy}} clause, no? Isn't that a regression?
Edit: Ok I think the answer is that the key selector always uses {{BinaryRow}}, where the {{BinaryGeneric}} is written as bytes. You never compare the objects.
I would be in favor of removing the {{serializer}} from the {{BinaryGeneric}} then."
Lucene Solr,SATD Repayment,"[2020-04-14 16:48:01][David Smiley][code-comment][9b303b934e05a8af6880c66f1cb5c91c7c6e9e45]
check for *:* is simple and avoids needless BooleanQuery wrapper even though BQ.rewrite optimizes this away
","[2020-04-06 21:00:44][dsmiley][pull:comment][1407:404385251]
I'll add a comment:
`// check for *:* is simple and avoids needless BooleanQuery wrapper even though BQ.rewrite optimizes this away`"
Attic Apex Malhar,No Relation,"[2014-08-03 00:12:58][Milinda Sreenath][code-comment][bec35e3c24b2b7486b9ca4d4f0ecddd3835f227d]
TODO Auto-generated method stub
","[2014-08-03 00:12:58][Milinda Sreenath][commit][bec35e3c24b2b7486b9ca4d4f0ecddd3835f227d]
performance improved and benchmark added"
Servicecomb Java Chassis,SATD Repayment,"[2018-07-19 17:33:08][heyile][code-comment(deleted)][767d4a0c8ec1a0b41b2283df76abaf39dad1c089]
do not duplicate copy cse config to serviceComb config
","[2018-07-19 17:33:08][heyile][commit][767d4a0c8ec1a0b41b2283df76abaf39dad1c089]
do not duplicate copy cse config to serviceComb config when create local config"
Phoenix,SATD Duplication,"[2015-06-30 18:11:28][James Taylor][code-comment][84a17ce9f5513c04c8c75a50575896a8a0a74a56]
Only tables may have views, so prevent the running of this potentially
expensive full table scan over the SYSTEM.CATALOG table unless it's needed.
In the case of a view, we allow a column to be dropped without checking for
child views, but in the future we'll allow it and propagate it as necessary.
","[2015-06-18 03:19:46][Arun Kumaran Sabtharishi][issue:summary][PHOENIX-2050:12838664]
Whenever a view is dropped, MetaDataEndPointImpl.findChildViews() checks whether it has child views or not. This is doing a full scan in all the rows in SYSTEM.CATALOG which reduces performance. When the number of rows is very high, it causes timeout. The check has to be done only for the tables."
Qpid Dispatch,No Relation,"[2016-09-15 16:49:45][Ted Ross][commit][566a1a19e2c662b40aa4477421bddb51e4e7310c]
DISPATCH-511 - Cache-line align mutexes and conditions. Remove extra assertions in mutexes.
","[2016-09-15 21:03:08][Ted Ross][issue:comment][DISPATCH-511:15494517]
Memory pool statistics are enabled by default. If you wish to disable them for improved performance, use the following cmake definition:
cmake -DQD_MEMORY_STATS=OFF .."
Flink,No Relation,"[2018-08-03 19:40:24][Andrey Zagrebin][code-comment][ce96c409148d1a9bc40f581e13900818b5f11f6a]
* Return expired user value if it is not cleaned up yet.
","[2018-08-01 12:15:31][StefanRRichter][pull:comment][6460:206855467]
What I don't like about this line in particular is that it is a bit invasive and adds branching to an otherwise very tight loop, and I am not sure that this will simply be removed by the JIT. Can we do this in a way that does not involve filtering-calls if it is clear that no filtering is done, similar to the `NestedMapsStateTable`?
Overall, maybe we can keep in mind that there will be a unified format for the different state backends, and that probably will not start by writing a count. After that is introduced, we can also push the filtering right before the writing to the stream for a nice separation."
Lucene Solr,No Relation,"[2015-02-23 06:30:07][Erick Erickson][code-comment][230d24b43f6f57503ac3c26677290f0b607aad77]
We expose the powerful $event object on the scope that provides access to the Window,
etc. that isn't protected by the fast paths in $parse. We explicitly request better
checks at the cost of speed since event handler expressions are not executed as
frequently as regular change detection.
","[2013-12-31 11:18:54][Upayavira][issue:comment][SOLR-5507:13859445]
I have a prototype of a complete rewrite, that shows the technology can create clean code even on something as complex as the analysis pane.
However, I'm stalled on the topic of how to manage a transition between the two technologies, without requiring a hard-switch between them, as that would likely be way too tough to manage.
So, we need to work out a way for the two technologies to play nicely together as an intermediate step - that's what I'm grappling with right now."
Flink,No Relation,"[2014-08-14 22:43:26][Stephan Ewen][commit][d0cead7e19ab4c580705799adb5ca460dd228809]
[FLINK-1053] Cleanup implementation of mapPartition function
This closes #42
","[2014-06-25 14:13:29][uce][pull:comment][42:47105893]
I think this will be a nice addition to the API.
Would it make sense to rename the operator to flatMapPartition? It might be confusing in relation to the existing map and flatMap functions. Map is a 1:1 mapping wheras a flatMap is the 1:n mapping. The new operator is called `mapParititons`, but is able to collect multiple elements."
Bookkeeper,No Relation,"[2016-12-13 08:16:38][sijie][pull:comment][89:92116194]
This flush here will do unnecessary flushes here.
A better algorithm here is:
- you should track the last piggyback lac update time.
- when the scheduled task is running, it should compare the last piggyback lac update time to see if piggyback lac update already elapsed more than the interval. if it is more than the interval, add the lac explicitly again.
","[2015-10-24 16:55:26][JV Jujjuri][issue:comment][BOOKKEEPER-874:14972708]
Sijie, I would like to request you to give another consideration
I just modeled it around ReadLastAddConfirmedOp() operation. This doesn't read anything other than getting LAC.
I looked around and following this model to add a new flag appears to be natural fit with minimum amount of code
instead of adding completely new request."
Spark,SATD Repayment,"[2015-02-06 14:48:30][lianhuiwang][commit][61073f832128845a76469fc37376483b784c927b]
[SPARK-4994][network]Cleanup removed executors' ShuffleInfo in yarn shuffle service
when the application is completed, yarn's nodemanager can remove application's local-dirs.but all executors' metadata of completed application havenot be removed. now it lets yarn ShuffleService to have much more memory to store Executors' ShuffleInfo. so these metadata need to be removed.
Author: lianhuiwang <[email protected]>
Closes #3828 from lianhuiwang/SPARK-4994 and squashes the following commits:
f3ba1d2 [lianhuiwang] Cleanup removed executors' ShuffleInfo
","[2014-12-29 12:43:22][lianhuiwang][pull:summary][3828]
[SPARK-4994][network]Cleanup removed executors' ShuffleInfo in yarn shuffle service"
Netbeans,No Relation,"[2020-07-20 21:33:58][Jan Lahoda][code-comment][7c9326139ffcd06e4e65130153e4a8a233eb6398]
// if x11forwarding is set, but we consider it is unavailable,
// we should at least allow switching it off => || serverRecord.getX11Forwarding()
cbX11.setEnabled(serverRecord.isX11forwardingPossible() || serverRecord.getX11Forwarding());
","[2017-09-03 17:38:17][Daniel Gruno][issue:comment][INFRA-15006:16151875]
I believe this to be unnecessary, and I can't recall any project that has ever done or had to do this."
Incubator Pinot,No Relation,"[2020-09-29 21:16:34][Xiaotian (Jackie) Jiang][code-comment][009ab53d1943829803fe308205dd951be2caffcb]
TODO: Remove the legacy delimiter after releasing 0.6.0
","[2020-09-29 00:41:07][siddharthteotia][pull:comment][6056:496310465]
Same as before. We should try to enhance the same code."
Ignite,SATD Repayment,"[2018-08-07 13:53:37][Ilya Kasnacheev][commit][de9227d7c5d69d9dcc5987e060937412bb8c22c9]
IGNITE-7615: Find orphaned tests without test suites, create separate test suite for them; IGNITE-8344: Remove duplicate tests and suites; IGNITE-8345: Streamline tests' class names: mark Abstract and Load tests obviously so; - Fixes #3464.
Signed-off-by: Dmitriy Pavlov <[email protected]>
","[2018-02-02 12:47:47][Ilya Kasnacheev][issue:summary][IGNITE-7615:13135764]
Find orphaned tests without test suites, create separate test suite for them"
Cassandra,No Relation,"[2013-11-21 15:20:28][Jason Brown][commit][fdbddc13272bed6dfa3019e77acfb5f9107d6dce]
Batch read from OTC's queue and cleanup
patch by jasorown and belliotsmith for CASSANDRA-1632
","[2013-11-21 19:33:07][Jason Brown][issue:comment][CASSANDRA-1632:13829258]
v3 is based on [~jbellis]'s v2 patch, but removes the changes to PCLES and switches OTC's use of active.peek() to active.isEmpty()"
Arrow,SATD Repayment,"[2020-01-02 07:24:58][Kazuaki Ishizaki][commit][cec93999fdef8fe9c83e78ec9f9cc53f9341d71c]
ARROW-7482: [C++] Fix typos
This PR fixes typos in files under `cpp/src/arrow` directory
Closes #6110 from kiszk/ARROW-7482 and squashes the following commits:
b5dc3f012 <Kazuaki Ishizaki> fix lint errors
bb39903f4 <Kazuaki Ishizaki> address review comment
b291f2e01 <Kazuaki Ishizaki> fix lint errors
224796723 <Kazuaki Ishizaki> fix typo
Authored-by: Kazuaki Ishizaki <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
","[2019-12-31 17:49:14][Kazuaki Ishizaki][issue:summary][ARROW-7482:13277039]
[C++] Fix typos"
Tinkerpop,SATD Duplication,"[2014-03-07 18:47:08][Stephen Mallette][code-comment][1afb4eb87c41e1f4e294de55656a60b058e39e11]
todo: centralize kryo instance creation
todo: need way to register custom types.
","[2014-03-07 18:47:08][Stephen Mallette][commit][1afb4eb87c41e1f4e294de55656a60b058e39e11]
Add todo reminders."
Flink,SATD Repayment,"[2012-04-11 13:18:52][Tommy Neubert][code-comment(deleted)][580254fee9c21ed450d494ec853b7312df5e2263]
TODO find a way to reuse Primitives
","[2012-04-11 13:18:52][Tommy Neubert][commit][580254fee9c21ed450d494ec853b7312df5e2263]
naive way to reuse primitives in GeneralSchema; further commenting"
Incubator Mxnet,No Relation,"[2017-06-17 10:53:37][Yuwen Xiong][commit][ce2bca6e6847f54fc37a9c295e96f14f681ae2b9]
Add operators for Deformable ConvNets/DFF (#6298)
* Add operators for Deformable ConvNets/FCIS/DFF
* fix programming rule to meet pr rule
* fix programming rule to meet pr rule
* fix programming rule to meet pr rule
* minor fix channel operator
* minor fix deformable conv
* fix a stupid error
* add test code
* add test code
* remove channel operator and add gradient check
* remove redundant print
* fix unittest code
* dummy commit to trigger building check
* dummy commit to trigger building check
* Update deformable_convolution-inl.h
* Update deformable_im2col.h
* Update deformable_convolution.cc
* Update deformable_psroi_pooling.cc
","[2017-06-16 17:51:34][piiswrong][pull:comment][6298:122497881]
These docs seems to be copied from standard conv. Could you updated it to describe DeformableConvolution or remove inaccurate doc and insert a link to the original paper?"
Ignite,SATD Duplication,"[2017-10-24 11:41:07][dspavlov][pull:summary][2914]
IGNITE-6713: Ignite Cache 5 flaky test CacheRebalancingSelfTest.testD…
","[2017-10-23 14:02:28][Dmitry Pavlov][issue:summary][IGNITE-6713:13111423]
Ignite Cache 5 flaky test CacheRebalancingSelfTest.testDisableRebalancing()"
Airflow,SATD Repayment,"[2017-06-07 09:16:51][Bolke de Bruin][commit][4764646b18f56c34a35c19bd20a1931eb3a844fe]
[AIRFLOW-1166] Speed up _change_state_for_tis_without_dagrun
_change_state_for_tis_without_dagrun was locking a
significant
amount of tasks uncessarily. This could end up in
a deadlock
in the database due to the time the lock stood.
Closes #2267 from bolkedebruin/fix_deadlock
","[2017-05-02 20:26:20][bolkedebruin][pull:summary][2267]
[AIRFLOW-1166] Speed up _change_state_for_tis_without_dagrun"
Trafodion,No Relation,"[2016-11-10 13:07:14][Zalo Correa][code-comment][5175653088a34225f48843ac147dd60ee65efb19]
third round, populate the ranges that this ESP needs to read
","[2017-05-30 19:02:47][Dave Birdsall][issue:comment][TRAFODION-2001:16029947]
I'm wondering how this change will affect development practices on workstations where we have used ""install_local_hadoop"".
For example, sometimes an instance will get messed up, and we want to throw it away and start clean. Today, I often use the script ilh_cleanhb 2 to throw away all the instance HBase files, and then ilh_traf_restart. The latter script does an sqgen. But it looks like sqgen can only be run once now? Has ilh_traf_restart been changed to take this into account?"
Flink,No Relation,"[2015-01-12 09:15:12][Ufuk Celebi][code-comment][d908ca19741bf2561cb6a7663541f642e60c0e6d]
TODO We can just keep the serialized data in the Netty buffer and release it later at the reader
","[2014-12-09 18:55:22][StephanEwen][pull:comment][254:21552080]
I think that the `stringifyException` call is unnecessary and even hindering proper logging. I would remove it, construct a proper error message for the log and pass the exception as the second parameter."
Helix,No Relation,"[2020-06-09 12:30:36][Hunter Lee][commit][39bf0ad429660797d70a0a1b53a2105e4ec1cd50]
Deprecate Raw ZkClient in helix-core (#1070)
We have moved the raw ZkClient to zookeeper-api. As such, we need to deprecate the old one in helix-core. We are leaving the class for backward-compatibility purposes.
","[2020-06-07 05:21:36][narendly][pull:comment][1070:436326127]
On this point, I thought about it, but I decided to keep them separate because 1) It is less confusing - TestHelper solely provides methods around testing and TestNG, and ZkTestHelper provides methods related to ZK operations. 2) From the dev perspective, we get less confused (why are there 2 helpers in helix-core vs 1 helper in zookeeper-api?) and 3) it helps us keep the classes small."
Usergrid,No Relation,"[2014-01-27 15:21:53][Todd Nine][code-comment][80c4dddba900d647d7133d324b889ead759f76da]
TODO(vojta): change params to: method, url, data, headers, callback
","[2014-07-25 19:22:26][rodsimpson][pull:summary][35]
Usergrid-100 added missing license headers to ios SDK"
Hudi,SATD Duplication,"[2020-06-30 04:51:24][hddong][pull:summary][1774]
[HUDI-703]Add unit test for HoodieSyncCommand
","[2020-03-12 14:28:39][hong dongdong][issue:summary][HUDI-703:13291338]
Add unit test for HoodieSyncCommand"
Tvm,No Relation,"[2020-09-18 11:37:13][Leandro Nunes][code-comment][292b640f1338317af6d90cc3f4e96f0bacde4ca4]
TODO (@leandron) a new PR will introduce the 'tune' subcommand
the is used to generate the tuning records file
","[2020-08-20 14:54:10][leandron][pull:comment][6302:474045263]
This is the output file (the log) from the tuning process, so that transfer learning can be used. I'll make that simpler to understand in the `help` description."
Flink,SATD Repayment,"[2019-02-19 14:05:11][azagrebin][code-comment][735b5141f14bc56a0c88d792b8413bcad42f0ce3]
* This determines if compaction filter to cleanup state with TTL is enabled.
","[2019-02-19 14:05:11][azagrebin][commit][735b5141f14bc56a0c88d792b8413bcad42f0ce3]
[FLINK-10471][State TTL] State TTL cleanup using RocksDb compaction filter
This closes #7163."
Hive,SATD Repayment,"[2017-06-09 14:46:11][Daniel Dai][commit][302360f51c2f6d93db244b6e67fc05517a654b2b]
HIVE-16323: HS2 JDOPersistenceManagerFactory.pmCache leaks after HIVE-14204 (Daniel Dai, reviewed by Thejas Nair)
","[2017-05-30 05:25:02][Thejas Nair][issue:comment][HIVE-16323:16028750]
This leak and also usage of syncMetaStoreClient seems to be from HIVE-14204 . Thats why I suggested it here.
We could track the syncMetaStoreClient.close() change in a separate jira as well, if you prefer that."
Helix,SATD Repayment,"[2020-07-15 12:11:23][Hunter Lee][commit][90840f48eb1ede6ace06a6b30cb0fe2dfd02a210]
Remove legacy duplicate metric classes in helix-core (#1147)
As part of ZooKeeper API separation initiative, most metric-related classes were moved to metrics-common module. However, there were some that were left in helix-core for backward-compatibility purposes, but these were causing class conflicts at runtime. This change removes such classes.
","[2020-07-14 04:18:13][narendly][pull:summary][1147]
Remove legacy duplicate metric classes in helix-core"
Cloudstack,No Relation,"[2015-11-29 01:44:22][pdube][pull:comment][1134:46086641]
It is actually unused in the api call. I will remove it.
","[2015-08-03 15:18:40][Ingo Jochim][issue:comment][CLOUDSTACK-6276:14651975]
Sehr geehrte Damen und Herren,
vielen Dank für Ihre E-Mail.
Ich bin zur Zeit außer Haus und habe limitierten Zugang zu meinen E-Mails. Am 10.08.2015
werde ich wieder im Haus sein und Ihre Nachricht bearbeiten.
In dringenden Fällen kontaktieren Sie bitte [email protected].
Mit freundlichen Grüßen,
Ingo Jochim"
Lucene Solr,SATD Repayment,"[2020-12-23 12:41:23][Dawid Weiss][commit][2d6ad2fee6dfd96388594f4de9b37c037efe8017]
LUCENE-9570: code reformatting [partial].
","[2021-01-05 11:50:29][Bruno Roustant][issue:comment][LUCENE-9570:17258851]
[~dweiss] Yes finally it's done. I pushed the commit directly to your branch.
I have been working on spatial3d since yesterday. 123 classes, with some giant ones. Ouch, it took me more time than anticipated.
Lots of (inconsistently) missing braces in a single-line if. I added them. I hope I didn't miss too many of them.
Many multi-line comments where the lines were truncated with a newline inserted. I had to reformat manually the comment.
Badly formatted commented code. Either line-truncated, or with original commented code had no space between concatenated strings (and I tried to add them as often as I could)
Lots of duplicated code to reformat again and again."
Hive,SATD Repayment,"[2018-12-06 10:51:05][Zoltan Haindrich][commit][8b968c7e46929c3af86da46e316faeb8d17f03df]
HIVE-20985: If select operator inputs are temporary columns vectorization may reuse some of them as output (Zoltan Haindrich reviewed by Teddy Choi)
Signed-off-by: Zoltan Haindrich <[email protected]>
","[2018-11-29 16:35:02][Zoltan Haindrich][issue:summary][HIVE-20985:13201391]
If select operator inputs are temporary columns vectorization may reuse some of them as output"
Incubator Mxnet,No Relation,"[2018-02-15 14:44:34][Da Zheng][code-comment][c3e3a832bfeceff070ba263aa8a4489ca27f452e]
MKLDNN ops may not support the case that the input and the output uses
the same memory. Let's use an extra copy to make sure it always works.
","[2018-02-15 19:25:36][cjolivier01][pull:comment][9677:366034644]
There's only two out of 10-or-15-or-so tests that are disabled.
I am fine with the merge from the point of the cpp tests. Although it's possible there is something wrong, it's not clear if it's the test or the main code, so I agree with @piiswrong that if it's really broken, we will find out soon enough after it is merged.
Both tests are disabled for the same behavior."
Beam,SATD Duplication,"[2016-11-23 10:42:17][Davor Bonaci][code-comment][9b9d016c80b9a7e73a7485d3e579ead3ada18ac6]
TODO(vikasrk): Figure out what other errors should be retried.
","[2016-11-22 07:36:00][chamikaramj][pull:comment][1398:89056210]
TODO: Figure out what other errors should be retried."
Hbase,No Relation,"[2011-10-13 23:12:30][Michael Stack][code-comment][8d8dc87d0dd1e6039866543b4dd75fdb273ac2d7]
This is hacky. Need to get the configuration into admin instance
","[2011-02-06 06:10:21][Michael Stack][issue:comment][HBASE-3446:12991106]
Moving out of 0.90.1. I won't have time to spend testing this patch more before tomorrow evening, the cut-off point. The patch looks to be working properly but I keep tripping over other issues that I have to follow to make sure this patch is not the cause."
Beam,SATD Repayment,"[2018-03-09 17:47:04][Robert Bradshaw][commit][2dcff0e7f47fe8bfb37346c78ebb9e19020f532a]
Merge pull request #4845 from robertwb/runner-cleanup
Remove obsolete MapTaskRunner.
","[2018-03-10 00:01:34][robertwb][pull:summary][4845]
Remove obsolete MapTaskRunner."
Arrow,SATD Duplication,"[2019-07-29 18:06:00][wesm][pull:summary][4963]
ARROW-6065: [C++][Parquet] Clean up parquet/arrow/reader.cc, reduce code duplication, improve readability
","[2019-07-29 18:03:35][Wes McKinney][issue:summary][ARROW-6065:13247718]
The code in parquet/arrow/reader.cc has quite a bit of code duplication and is difficult to follow. In the course of making some other improvements to this code I am going to reorganize and clean things up. PR coming shortly"
Hive,SATD Duplication,"[2017-10-03 16:35:14][Jesus Camacho Rodriguez][code-comment][073e8473ea61da995c42847ea53909e77f7e76f2]
TODO: We have a cache for Table objects in SemanticAnalyzer::getTableObjectByName()
We need to move that cache elsewhere and use it from places like this.
","[2017-09-13 21:46:56][ashutoshc][pull:comment][245:138748546]
We have a cache for Table objects in SemanticAnalyzer::getTableObjectByName() We need to move that cache elsewhere and use it from places like this.
Could be a follow-up: Leave a TODO"
Spark,SATD Duplication,"[2017-07-17 10:07:32][Ajay Saini][code-comment][7047f49f45406be3b4a9b0aa209b3021621392ca]
TODO: need to set metadata
","[2017-07-02 07:24:42][jkbradley][pull:comment][18428:125176253]
Leave a TODO indicating that we need to set metadata."
Incubator Mxnet,SATD Repayment,"[2019-08-29 10:37:11][Anirudh Subramanian][commit][649429d055e8ac89b2a45929ff2344959768a6e3]
Disable flaky test in test_amp_conversion (#16031)
","[2019-08-28 18:51:26][anirudh2290][pull:summary][16031]
Disable flaky test in test_amp_conversion"
Beam,SATD Repayment,"[2017-09-19 13:52:54][Eugene Kirpichov][code-comment(deleted)][e7eefddea925e9b5359468a74a5dffe75b4b55e7]
[BEAM-407] Inconsistent synchronization
","[2017-09-19 13:52:54][Eugene Kirpichov][commit][e7eefddea925e9b5359468a74a5dffe75b4b55e7]
This closes #3827: [BEAM-407] fixes inconsistent synchronization in OffsetRangeTracker.copy"
Kafka,SATD Repayment,"[2016-03-02 18:50:59][Gwen Shapira][commit][00a58f8e1e0c82c2948a8fdfacf812ec4865b339]
KAFKA-2944: Replaced the NPE with a nicer error and clean exit and added debug message to assist with figuring this out.
…ssage to assist with figuring this out.
Author: Gwen Shapira <[email protected]>
Reviewers: Ewen Cheslack-Postava <[email protected]>
Closes #993 from gwenshap/KAFKA-2944
","[2016-03-02 03:46:46][gwenshap][pull:summary][993]
KAFKA-2944: Replaced the NPE with a nicer error and clean exit and added debug me…"
Nifi,No Relation,"[2015-11-18 23:23:10][Joseph Percivall][commit][1e5cc070a3d29736beea9af0b2d684a9bdcfff8e]
NIFI-1081 Adding option to ExecuteStreamCommand to put output value to an attribute
Reviewed and amended (comments,whitespace,and some code readability (discussed in ticket)) by Tony Kurc ([email protected])
","[2015-11-13 16:03:22][Bryan Bende][issue:comment][NIFI-1081:15004175]
Just adding my two cents here, I think it will be much easier if we define a standard, probably similar to what Yetus has in the link Tony provided. Right now some of our tickets have a series of patches 1, 2, and 3 that need to be applied in that order, and others will have the same naming convention, but are full patches where only the third one is needed."
Geode,SATD Repayment,"[2016-02-05 16:39:57][Sai Boorlagadda][commit][57b8229d1905142d53d65d9eec8bde671262080c]
GEODE-891: improve DataType unit test coverage
* Added tests for missing cases
* Removed SQLF case