forked from YahooArchive/anthelion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES_nutch.txt
executable file
·1835 lines (1114 loc) · 67.1 KB
/
CHANGES_nutch.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
Nutch Change Log
Release 1.6 - 23/11/2012
* NUTCH-1370 Expose exact number of urls injected @runtime (snagel via lewismc)
* NUTCH-1117 JUnit test for index-anchor (lewismc)
* NUTCH-1451 Upgrade automaton jar to 1.11-8 (lewismc)
* NUTCH-1488 bin/nutch to run junit from any directory (snagel via lewismc)
* NUTCH-1493 Error adding field 'contentLength'='' during solrindex using index-more (Nathan Gass via lewismc)
* NUTCH-1491 Strip UTF-8 non-character codepoints in title (Nathan Gass via markus)
* NUTCH-1421 RegexURLNormalizer to only skip rules with invalid patterns (snagel)
* NUTCH-1341 NotModified time set to now but page not modified (markus)
* NUTCH-1215 UpdateDB should not require segment as input (markus)
* NUTCH-1383 IndexingFiltersChecker to show error message instead of null pointer exception (snagel)
* NUTCH-1476 SegmentReader getStats should set parsed = -1 if no parsing took place (snagel)
* NUTCH-1252 SegmentReader -get shows wrong data (snagel)
* NUTCH-1344 BasicURLNormalizer to normalize https same as http (snagel)
* NUTCH-706 Url regex normalizer: pattern for session id removal not to match "newsId" (Meghna Kukreja via snagel)
* NUTCH-1415 release packages to contain top level folder apache-nutch-x.x (snagel)
* NUTCH-1441 AnchorIndexingFilter should use plain HashSet (ferdy via lewismc)
* NUTCH-1470 Ensure test files are included for runtime testing (lewismc)
* NUTCH-1434 Indexer to delete robots noindex (markus)
* NUTCH-1443 Solr schema version is invalid (markus)
* NUTCH-1417 Remove o.a.n.metadata.Office (lewismc)
* NUTCH-1376 Add description parameter to every ant task (lewismc)
* NUTCH-1440 reconfigure non-existent stopwords_en.txt in schema-solr4.xml (shekhar sharma via lewismc)
* NUTCH-1439 Define boost field as type float in schema-solr4.xml (shekhar sharma via lewismc)
* NUTCH-1433 Upgrade to Tika 1.2 (jnioche)
* NUTCH-1388 Optionally maintain custom fetch interval despite AdaptiveFetchSchedule (markus)
* NUTCH-1430 Freegenerator records overwrite CrawlDB records with AdaptiveFetchSchedule (markus)
* NUTCH-1087 Deprecate crawl command and replace with example script (jnioche)
* NUTCH-1306 Add option to not commit and clarify existing solr.commit.size (ferdy)
* NUTCH-1405 Allow to overwrite CrawlDatum's with injected entries (markus)
* NUTCH-1412 Upgrade commons lang (markus)
* NUTCH-1251 SolrDedup to use proper Lucene catch-all query (Arkadi Kosmynin via markus)
* NUTCH-1407 BasicIndexingFilter to optionally add domain field (markus)
* NUTCH-1408 RobotRulesParser main doesn't take URL's (markus)
* NUTCH-1300 Indexer to filter normalize URL's (markus)
* NUTCH-1330 WebGraph OutlinkDB to preserve back up (markus)
* NUTCH-1319 HostNormalizer plugin (markus)
* NUTCH-1386 Headings filter not to add empty values (markus)
* NUTCH-1356 ParseUtil use ExecutorService instead of manually thread handling (ferdy via markus)
* NUTCH-1352 Improve regex urlfilters/normalizers synchronization (ferdy via markus)
* NUTCH-1024 Dynamically set fetchInterval by MIME-type (markus)
* NUTCH-1364 Add a counter in Generator for malformed urls (lewismc)
* NUTCH-1262 Map `duplicating` content-types to a single type (markus)
* NUTCH-1385 More robust plug-in order properties in nutch-site.xml (Andy Xue via markus)
* NUTCH-1336 Optionally not index db_notmodified pages (markus)
* NUTCH-1346 Follow outlinks to ignore external (markus)
* NUTCH-1320 IndexChecker and ParseChecker choke on IDN's (markus)
* NUTCH-1351 DomainStatistics to aggregate by TLD (markus)
* NUTCH-1381 Allow to override default subcollection field name (markus)
* NUTCH-XX Commit to add configuration for separation of ant distribution targets (lewismc + jnioche)
Release 1.5.1 - 07/10/2012
* NUTCH-1404 Nutch script fails to find job file in deploy mode (sidabatra, jnioche)
* NUTCH-1415 release packages to contain top level folder apache-nutch-x.x (snagel via lewismc)
* NUTCH-1400 Remove developer -core option for bin/nutch (jnioche)
* NUTCH-1384 Typo in ParseSegment's run-method (Matthias Agethle via markus)
* NUTCH-1398 Upgrade to Hadoop 1.0.3 (jnioche)
Release 1.5 - 04/15/2012
* NUTCH-1208 Don't include KEYS file in bin distribution (jnioche)
* NUTCH-1234 Upgrade to Tika 1.1 (jnioche, markus)
* NUTCH-809 Parse-metatags plugin (jnioche)
* NUTCH-1310 Nutch to send HTTP-accept header (markus)
* NUTCH-1305 Domain(blacklist)URLFilter to trim entries (markus)
* NUTCH-1307 Improve formatting of ant targets for clearer project help (lewismc)
* NUTCH-1299 LinkRank inverter to ignore records without Node (markus)
* NUTCH-1258 MoreIndexingFilter should be able to read Content-Type from both parse metadata and content metadata (jnioche, markus)
* NUTCH-1293 IndexingFiltersChecker to store detected content type in crawldatum metadata (markus)
* NUTCH-1291 Fetcher to stringify exception on // unexpected exception (markus)
* NUTCH-965 Skip parsing for truncated documents (alexis, lewismc, ferdy)
* NUTCH-1210 DomainBlacklistFilter (markus)
* NUTCH-1193 Incorrect url transform to lowercase: parameter solr (Eduardo dos Santos Leggiero via lewismc)
* NUTCH-1272 Wrong property name for index-static in nutch-default.xml (Daniel Baur via jnioche)
* NUTCH-1259 Store detected content-type in crawldatum metadata (jnioche, markus)
* NUTCH-1266 Subcollection to optionally write to configured fields (markus)
* NUTCH-1005 Parse headings plugin (markus)
* NUTCH-1264 Configurable indexing plugin index-metadata (jnioche)
* NUTCH-1242 Allow disabling of URL Filters in ParseSegment (Edward Drapkin via markus)
* NUTCH-1256 WebGraph to dump host + score (markus)
* NUTCH-1260 Fetcher should log fetching of redirects (Sebastian Nagel via markus)
* NUTCH-1255 Change ivy.xml of all plugins to remove "nutch.root" property (ferdy)
* NUTCH-1248 Generator to select on status (markus)
* NUTCH-1177 Generator to select on retry interval (markus)
* NUTCH-1246 Upgrade to Hadoop 1.0.0 (jnioche)
* NUTCH-1139 Indexer to delete gone documents (markus)
* NUTCH-1244 CrawlDBDumper to filter by regex (markus)
* NUTCH-1237 Improve javac arguements for more verbose ouput (lewismc)
* NUTCH-1236 Add link to site documentation to download older versions of Nutch (lewismc)
* NUTCH-1146 Prevent generation of _SUCCESS files in output (jnioche)
* NUTCH-1232 Remove site field from index-basic (markus)
* NUTCH-1239 Webgraph should remove deleted pages from segment input (markus)
* NUTCH-1238 Fetcher throughput threshold must start before feeder finished (markus)
* NUTCH-1138 remove LogUtil from trunk and nutch gora (lewismc)
* NUTCH-1231 Upgrade to Tika 1.0 (markus)
* NUTCH-1230 MimeType API deprecated and breaks with Tika 1.0 (markus)
* NUTCH-1235 Upgrade to new Hadoop 0.20.205.0 (markus)
* NUTCH-1217 Update NOTICE.txt to drop some copyrights (lewismc)
* NUTCH-1129 Add freegenerator, domainstats and crawldbscanner to log4j (markus)
* NUTCH-1184 Fetcher to parse and follow Nth degree outlinks (markus)
* NUTCH-1221 Migrate DomainStatistics to MapReduce API (markus)
* NUTCH-1216 Add trivial comment to lib/native/README.txt (lewismc)
* NUTCH-1214 DomainStats tool should be named for what it's doing (markus)
* NUTCH-1213 Pass additional SolrParams when indexing to Solr (ab)
* NUTCH-1211 URLFilterChecker command line help doesn't inform user of
STDIN requirements (mattmann)
* NUTCH-1209 Output from ParserChecker Url missing a newline (mattmann)
* NUTCH-1207 ParserChecker to output signature (markus)
* NUTCH-1090 InvertLinks should inform when ignoring internal links (Marek Backmann via markus)
* NUTCH-1174 Outlinks are not properly normalized (markus)
* NUTCH-1203 ParseSegment to show number of milliseconds per parse (markus)
* NUTCH-1185 Decrease solr.commit.size to 250 (markus)
* NUTCH-1180 UpdateDB to backup previous CrawlDB (markus)
* NUTCH-1173 DomainStats doesn't count db_not_modified (markus)
* NUTCH-1155 Host/domain limit in generator is generate.max.count+1 (markus)
* NUTCH-1061 Migrate MoreIndexingFilter from Apache ORO to java.util.regex (markus)
* NUTCH-1178 Incorrect CSV header CrawlDatumCsvOutputFormat (markus)
* NUTCH-1142 Normalization and filtering in WebGraph (markus)
* NUTCH-1153 LinkRank not to log all keys and not to write Hadoop _SUCCESS file (markus)
Release 1.4 - 11/4/2011
* NUTCH-1195 Add Solr 4x (trunk) example schema (ab)
* NUTCH-1192 Add '/runtime' to svn ignore (ferdy)
* NUTCH-1097 application/xhtml+xml should be enabled in plugin.xml of parse-html; allow multiple mimetypes for plugin.xml (Ferdy via lewismc)
* NUTCH-797 Fix parse-tika and parse-html to use relative URL resolution per RFC-3986
(Robert Hohman, ab)
* NUTCH-1154 Upgrade to Tika 0.10. NOTE: Tika's new RTF parser may ignore more
text in malformed documents than previously - see TIKA-748 for details. (ab)
* NUTCH-1109 Add Sonar targets to Ant build.xml (lewismc)
* NUTCH-1152 Upgrade SolrJ to version 3.4.0 (ab)
* NUTCH-1136 Ant pmd target is broken (lewismc)
* NUTCH-1058 Upgrade Solr schema to version 1.4 (markus)
* NUTCH-1137 LinkDB invertlinks other options ignored when using -dir option (Sebastian Nagel, markus)
* NUTCH-1141 Configurable Fetcher queue depth (jnioche)
* NUTCH-1091 Remove commons logging dependency from Nutch branch and trunk (lewismc)
* NUTCH-672 allow unit tests to be run from bin/nutch (Todd Lipton via lewismc)
* NUTCH-937 Put plugins in classes/plugins in job file (Claudio Martella, Ferdy Galema, jnioche)
* NUTCH-623 Change plugin source directory "languageidentifier" to "language-identifier" (lewismc)
* NUTCH-1074 topN is ignored with maxNumSegments and generate.max.count (Robert Thomson via markus)
* NUTCH-1078 Upgrade all instances of commons logging to slf4j (with log4j backend) (lewismc)
* NUTCH-1115 Option to disable fixing embedded URL parameters in DomContentUtils (markus)
* NUTCH-1114 Attr file missing in domain filter (markus)
* NUTCH-1067 Configure minimum throughput for fetcher (markus)
* NUTCH-1102 Fetcher to rely on fetcher.parse directive (markus)
* NUTCH-1110 UpdateDB must not write _success file (markus)
* NUTCH-1105 Max content length option for index-basic (markus)
* NUTCH-940 static field plugin (Claudio Martella via lewismc)
* NUTCH-914 Implement Apache Project Branding Requirements (lewismc)
* NUTCH-1095 remove i18n from Nutch site to archive and legacy secton of wiki (lewismc)
* NUTCH-1101 Option to purge db_gone records with updatedb (markus)
* NUTCH-1096 Empty (not null) ContentLength results in failure of fetch (Ferdy Galema via jnioche)
* NUTCH-1073 Rename parameters 'fetcher.threads.per.host.by.ip' and 'fetcher.threads.per.host' (jnioche)
* NUTCH-1089 Short compressed pages caused exception in protocol-httpclient (Simone Frenzel via jnioche)
* NUTCH-1085 Nutch script does not require HADOOP_HOME (jnioche)
* NUTCH-1075 Delegate language identification to Tika (jnioche)
* NUTCH-1049 Add classes to bin/nutch script (markus)
* NUTCH-1051 Export WebGraph node scores for Solr.ExternalFileField (markus)
* NUTCH-1083 ParserChecker implements Tools (jnioche)
* NUTCH-1082 IndexingFiltersChecker utility does not list multi valued fields (markus)
* NUTCH-1004 Do not index empty values for title field (markus)
* NUTCH-914 Implement Apache Project Branding Requirements (lewismc via jnioche)
* NUTCH-1069 Readlinkdb broken on Hadoop > 0.20 (markus)
* NUTCH-1044 Redirected URLs and possibly all of their outlinked URLs have invalid scores (jnioche)
* NUTCH-1028 Log urls when parsing (markus)
* NUTCH-1065 New mvn.template (lewismc)
* NUTCH-1072 Display number and size of queues in Fetcher status (jnioche)
* NUTCH-1071 Crawldb update displays total number of URLs per status (jnioche)
* NUTCH-1045 MimeUtil to rely on default config provided by Tika (jnioche)
* NUTCH-1057 Fetcher thread time out configurable (markus)
* NUTCH-1037 Option to deduplicate anchors prior to indexing (markus)
* NUTCH-1050 Add segmentDir option to WebGraph (markus)
* NUTCH-1055 upgrade package.html file in language identifier plugin (lewismc)
* NUTCH-1059 Remove convdb command from /bin/nutch (lewismc)
* NUTCH-1019 Edit comment in org.apache.nutch.crawl.Crawl to reflect removal of legacy (lewismc)
* NUTCH-1023 Trivial error in error message for org.apache.nutch.crawl.LinkDbReader (lewismc)
* NUTCH-1043 Add pattern for filtering .js in default url filters (jnioche)
* NUTCH-1054 LinkDB optional during indexing (jnioche)
* NUTCH-1029 Readdb throws EOFException (markus)
* NUTCH-1036 Solr jobs should increment counters in Reporter (markus)
* NUTCH-987 Support HTTP auth for Solr communication (markus)
* NUTCH-1027 Degrade log level of `can't find rules for scope` (markus)
* NUTCH-783 IndexingFiltersChecker utility (jnioche via markus)
* NUTCH-1030 WebgraphDB program requires manually added directories (markus)
* NUTCH-1011 Normalize duplicate slashes in URL's (markus)
* NUTCH-993 NullPointerException at FetcherOutputFormat.checkOutputSpecs (Christian Guegi via jnioche)
* NUTCH-1013 Migrate RegexURLNormalizer from Apache ORO to java.util.regex (markus)
* NUTCH-1016 Strip UTF-8 non-character codepoints and add logging for SolrWriter (markus)
* NUTCH-1012 Cannot handle illegal charset $charset (markus)
* NUTCH-1022 Upgrade version number of Nutch agent in conf (markus)
* NUTCH-295 Description for fetcher.threads.fetch property (kubes via markus)
* NUTCH-1000 Add option not to commit to Solr (markus)
* NUTCH-1006 MetaEquiv with single quotes not accepted (markus)
* NUTCH-1010 ContentLength not trimmed (markus)
Release 1.3 - 6/4/2011
* NUTCH-995 Generate POM file using the Ivy makepom task (mattmann, jnioche, Gabriele Kahlout)
* NUTCH-1003 task 'package' does not reflect the new organisation of the code (jnioche)
* NUTCH-994 Fine tune Solr schema (markus)
* NUTCH-997 IndexingFitlers to store Date objects instead of Strings (jnioche)
* NUTCH-996 Indexer adds solr.commit.size+1 docs (markus)
* NUTCH-983 Upgrade SolrJ to 3.1 (markus, jnioche)
* NUTCH-989 Index-basic plugin and Solr schema now use date fieldType for tstamp field (markus)
* NUTCH-888 Remove parse-rss and add tests for rss to parse-tika (jnioche)
* NUTCH-991 SolrDedup must issue a commit (markus)
* NUTCH 986 SolrDedup fails due to date incorrect format (markus)
* NUTCH-977 SolrMappingReader uses hardcoded configuration parameter name for mapping file (markus)
* NUTCH-976 Rename properties solrindex.* to solr.* (markus)
* NUTCH-890 Fix IllegalAccessError with slf4j used in Solrj (markus)
* NUTCH-891 Subcollection plugin won't require blacklist any more (markus)
* NUTCH-972 CrawlDbMerger doesn't break on non-existent input (Gabriele Kahlout via jnioche)
* NUTCH-967 Upgrade to Tika 0.9 (jnioche)
* NUTCH-975 Fix missing/wrong headers in source files (markus)
* NUTCH-963 Add support for deleting Solr documents with STATUS_DB_GONE in CrawlDB (Claudio Martella, markus)
* NUTCH-825 Publish nutch artifacts to central maven repository (mattmann, jnioche)
* NUTCH-962 max. redirects not handled correctly: fetcher stops at max-1 redirects (Sebastian Nagel via ab)
* NUTCH-921 Reduce dependency of Nutch on config files (ab)
* NUTCH-876 Remove remaining robots/IP blocking code in lib-http (ab)
* NUTCH-872 Change the default fetcher.parse to FALSE (ab)
* NUTCH-564 External parser supports encoding attribute (Antony Bowesman, mattmann)
* NUTCH-964 Upgraded Xerces to 2.91, ERROR conf.Configuration - Failed to set setXIncludeAware (markus)
* NUTCH-927 Fetcher.timelimit.mins is invalid when depth is greater than 1 (Wade Lau via jnioche)
* NUTCH-824 Crawling - File Error 404 when fetching file with an hexadecimal character in the file name (Michela Becchi via jnioche)
* NUTCH-954 Strict application of Content-Length limit for http protocols (Alexis Detreglode via jnioche)
* NUTCH-950 DomainURLFilter throws NPE on bogus urls (Alexis Detreglode via jnioche)
* NUTCH-935 basicurlnormalizer removes unnecessary /./ in URLs (Stondet via markus)
* NUTCH-912 MoreIndexingFilter does not parse docx and xlsx date formats (Markus Jelsma, jnioche)
* NUTCH-886 A .gitignore file for Nutch (dogacan)
* NUTCH-930 Remove remaining dependencies on Lucene API (ab)
* NUTCH-883 Remove unused parameters from nutch-default.xml (jnioche)
* NUTCH-936 LanguageIdentifier should not set empty lang field on NutchDocument (Markus Jelsma via jnioche)
* NUTCH-787 ScoringFilters should not override the injected score (jnioche)
* NUTCH-949 Conflicting ANT jars in classpath (jnioche)
* NUTCH-863 Benchmark and a testbed proxy server (ab)
* NUTCH-844 Improve NutchConfiguration (ab)
* NUTCH-845 Native hadoop libs not available through maven (ab)
* NUTCH-843 Separate the build and runtime environments (ab)
* NUTCH-821 Use ivy in nutch builds (Enis Soztutar, jnioche)
* NUTCH-837 Remove search servers and Lucene dependencies (ab)
* NUTCH-836 Remove deprecated parse plugins (jnioche)
* NUTCH-939 Added -dir command line option to SolrIndexer (Claudio Martella via ab)
* NUTCH-948 Remove Lucene dependencies (ab)
Release 1.2 - 09/18/2010
* NUTCH-901 Make index-more plug-in configurable (Markus Jelsma via mattmann)
* NUTCH-908 Infinite Loop and Null Pointer Bugs in Searching (kubes via mattmann)
* NUTCH-906 Nutch OpenSearch sometimes raises DOMExceptions (Asheesh Laroia via ab)
* NUTCH-862 HttpClient null pointer exception (Sebastian Nagel via ab)
* NUTCH-905 Configurable file protocol parent directory crawling (Thorsten Scherler, mattmann, ab)
* NUTCH-877 Allow setting of slop values for non-quote phrase queries on query-basic plugin (kubes via jnioche)
* NUTCH-716 Make subcollection index filed multivalued (Dmitry Lihachev via jnioche)
* NUTCH-878 ScoringFilters should not override the injected score
* NUTCH-870 Injector should add the metadata before calling injectedScore (jnioche via mattmann)
* NUTCH-858 No longer able to set per-field boosts on lucene documents (ab)
* NUTCH-869 Add parse-html back (jnioche)
* NUTCH-871 MoreIndexingFilter missing date format (Max Lynch via mattmann)
* NUTCH-696 Timeout for Parser (ab, jnioche)
* NUTCH-857 DistributedBeans should not close their RPC counterparts (kubes)
* NUTCH-855 ScoringFilter and IndexingFilter: To allow for the propagation of URL Metatags
and their subsequent indexing (Scott Gonyea via mattmann)
* NUTCH-677 Segment merge filering based on segment content (Marcin Okraszewski via mattmann)
* NUTCH-774 Retry interval in crawl date is set to 0 (Reinhard Schwab via mattmann)
* NUTCH-697 Generate log output for solr indexer and dedup (Dmitry Lihachev, Jeroen van Vianen via mattmann)
* NUTCH-850 SolrDeleteDuplicates needs to clone the SolrRecord objects (jnioche)
* NUTCH-838 Add timing information to all Tool classes (Jeroen van Vianen, mattmann)
* NUTCH-835 Document deduplication failed using MD5Signature (Sebastian Nagel via ab)
* NUTCH-831 Allow configuration of how fields crawled by Nutch are stored / indexed /
tokenized (Jeroen van Vianen via mattmann)
* NUTCH-278 Fetcher-status might need clarification: kbit/s instead of kb/s shown (Alex McLintock via mattmann)
* NUTCH-833 Website is still Lucene branded (mattmann, Alex McLintock)
* NUTCH-832 Website menu has lots of broken links - in particular the API docs (Alex McLintock via mattmann)
Release 1.1 - 2010-06-06
* NUTCH-819 Included Solr schema.xml and solrindex-mapping.xml don't play together (ab)
* NUTCH-818 Bugfix : Parse-tika uses minorCodes instead of majorCodes in ParseStatus (jnioche)
* NUTCH-816 Add zip target to build.xml (mattmann)
* NUTCH-732 Subcollection plugin not working (Filipe Antunes, ab)
* NUTCH-815 Invalid blank line before If-Modified-Since header (Pascal Dimassimo via ab)
* NUTCH-814 SegmentMerger bug (Rob Bradshaw, ab)
* NUTCH-812 Crawl.java incorrectly uses the Generator API resulting in NPE (Phil Barnett via mattmann and ab)
* NUTCH-810 Upgrade to Tika 0.7 (jnioche)
* NUTCH-785 Copy metadata from origin URL when redirecting in Fetcher + call scfilters.initialScore on newly created URL (jnioche)
* NUTCH-779 Mechanism for passing metadata from parse to crawldb (jnioche)
* NUTCH-784 CrawlDBScanner (jnioche)
* NUTCH-762 Generator can generate several segments in one parse of the crawlDB (jnioche)
* NUTCH-740 Configuration option to override default language for fetched pages (Marcin Okraszewski via jnioche)
* NUTCH-803 Upgrade to Hadoop 0.20.2 (ab)
* NUTCH-787 Upgrade Lucene to 3.0.1. (Dawid Weiss via ab)
* NUTCH-796 Zero results problems difficult to troubleshoot due to lack of logging (ab)
* NUTCH-801 Remove RTF and MP3 parse plugins (jnioche)
* NUTCH-798 Upgrade to SOLR1.4 and its dependencies (jnioche)
* NUTCH-799 SOLRIndexer to commit once all reducers have finished (jnioche)
* NUTCH-782 Ability to order htmlparsefilters (jnioche)
* NUTCH-719 fetchQueues.totalSize incorrect in Fetcher (Steven Denny via jnioche)
* NUTCH-790 Some external javadoc links are broken (siren)
* NUTCH-766 Tika parser (jnioche via mattmann)
* NUTCH-786 Improvement to the list of suffix domains (jnioche)
* NUTCH-775 Enhance searcher interface (siren)
* NUTCH-781 Update Tika to v0.6 (jnioche)
* NUTCH-269 CrawlDbReducer: OOME because no upper-bound on inlinks count (stack + jnioche)
* NUTCH-655 Injecting Crawl metadata (jnioche)
* NUTCH-658 Use counters to report fetching and parsing status (jnioche)
* NUTCH-777 Upgrading to jetty6 broke unit tests (mattmann)
* NUTCH-767 Update Tika to v0.5 for the MimeType detection (Julien Nioche via ab)
* NUTCH-769 Fetcher to skip queues for URLS getting repeated exceptions
(Julien Nioche via ab)
* NUTCH-768 - Upgrade Nutch 1.0 to use Hadoop 0.20.1, also upgrades Xerces to
version 2.9.1. (kubes)
* NUTCH-712 ParseOutputFormat should catch java.net.MalformedURLException
coming from normalizers (Julien Nioche via ab)
* NUTCH-741 Job file includes multiple copies of nutch config files
(Kirby Bohling via ab)
* NUTCH-739 SolrDeleteDuplications too slow when using hadoop (Dmitry Lihachev via ab)
* NUTCH-738 Close SegmentUpdater when FetchedSegments is closed
(Martina Koch, Kirby Bohling via ab)
* NUTCH-746 NutchBeanConstructor does not close NutchBean upon contextDestroyed,
causing resource leak in the container. (Kirby Bohling via ab)
* NUTCH-772 Upgrade Nutch to use Lucene 2.9.1 (ab)
* NUTCH-760 Allow field mapping from Nutch to Solr index (David Stuart, ab)
* NUTCH-761 Avoid cloning CrawlDatum in CrawlDbReducer (Julien Nioche, ab)
* NUTCH-753 Prevent new Fetcher from retrieving the robots twice (Julien Nioche via ab)
* NUTCH-773 - Some minor bugs in AbstractFetchSchedule (Reinhard Schwab via ab)
* NUTCH-765 - Allow Crawl class to call Either Solr or Lucene Indexer (kubes)
* NUTCH-735 - crawl-tool.xml must be read before nutch-site.xml when
invoked using crawl command (Susam Pal via dogacan)
* NUTCH-721 - Fetcher2 Slow (Julien Nioche via dogacan)
* NUTCH-702 - Lazy Instanciation of Metadata in CrawlDatum (Julien Nioche via dogacan)
* NUTCH-707 - Generation of multiple segments in multiple runs returns only 1 segment
(Michael Chen, ab)
* NUTCH-730 - NPE in LinkRank if no nodes with which to create the WebGraph
(Dennis Kubes via ab)
* NUTCH-731 - Redirection of robots.txt in RobotRulesParser (Julien Nioche via ab)
* NUTCH-757 - RequestUtils getBooleanParameter() always returns false
(Niall Pemberton via ab)
* NUTCH-754 - Use GenericOptionsParser instead of FileSystem.parseArgs() (Julien
Nioche via ab)
* NUTCH-756 - CrawlDatum.set() does not reset Metadata if it is null (Julien Nioche
via ab)
* NUTCH-679 - Fetcher2 implementing Tool (Julien Nioche via ab)
* NUTCH-758 - Set subversion eol-style to "native" (Niall Pemberton via ab)
Release 1.0 - 2009-03-23
1. NUTCH-474 - Fetcher2 crawlDelay and blocking fix (Dogacan Guney via ab)
2. NUTCH-443 - Allow parsers to return multiple Parse objects.
(Dogacan Guney et al, via ab)
3. NUTCH-393 - Indexer should handle null documents returned by filters.
(Eelco Lempsink via ab)
4. NUTCH-456 - Parse msexcel plugin speedup (Heiko Dietze via siren)
5. NUTCH-446 - RobotRulesParser should ignore Crawl-delay values of other
bots in robots.txt (Dogacan Guney via siren)
6. NUTCH-482 - Remove redundant plugin lib-log4j (siren)
7. NUTCH-483 - Remove redundant commons-logging jar from ontology plugin
(siren)
8. NUTCH-161 - Change Plain text parser to
use parser.character.encoding.default property for fall back encoding
(KuroSaka TeruHiko, siren)
9. NUTCH-61 - Support for adaptive re-fetch interval and detection of
unmodified content. (ab)
10. NUTCH-392 - OutputFormat implementations should pass on Progressable.
(cutting via ab)
11. NUTCH-495 - Unnecessary delays in Fetcher2 (dogacan)
12. NUTCH-443 - allow parsers to return multiple Parse object, this will speed
up the rss parser (dogacan via mattmann). This update is a fix and semantics
change from the original patch for NUTCH-443. The original patch did not tell
the Indexer to read crawl_parse too so that it can pickup sub-urls' fetch
datums. This patch addresses that issue. Now, if Fetcher gets a null content,
instead of pushing an empty content, it filters the null content.
13. NUTCH-485 - Change HtmlParseFilter 's to return ParseResult object instead of
Parse object. (Gal Nitzan via dogacan)
14. NUTCH-489 - URLFilter-suffix management of the url path when the url contains
some query parameters. (Emmanuel Joke via dogacan)
15. NUTCH-502 - Bug in SegmentReader causes infinite loop.
(Ilya Vishnevsky via dogacan)
16. NUTCH-444 Possibly use a different library to parse RSS feed for improved
performance and compatibility. This patch introduced a new plugin, feed,
that includes an index filter and a parse plugin for feeds that uses ROME.
There was discussion to remove parse-rss, in light of the feed plugin,
however, this patch does not explicitly remove parse-rss. (dogacan, mattmann)
17. NUTCH-471 - Fix synchronization in NutchBean creation.
(Enis Soztutar via dogacan)
18. Upgrade to Lucene 2.2.0 and Hadoop 0.12.3. (ab)
19. NUTCH-468 - Scoring filter should distribute score to all outlinks at
once. (dogacan)
20. NUTCH-504 - NUTCH-443 broke parsing during fetching. (dogacan)
21. NUTCH-497 - Extreme Nested Tags causes StackOverflowException in
DomContentUtils...Spider Trap. (kubes)
22. NUTCH-434 - Replace usage of ObjectWritable with something based on
GenericWritable. (dogacan)
23. NUTCH-499 - Refactor LinkDb and LinkDbMerger to reuse code. (dogacan)
24. NUTCH-498 - Use Combiner in LinkDb to increase speed of linkdb generation.
(Espen Amble Kolstad via dogacan)
25. NUTCH-507 - lib-lucene-analyzers jar defintion is wrong in plugin.xml.
(Emmanuel Joke via dogacan)
26. NUTCH-503 - Generator exits incorrectly for small fetchlists.
(Vishal Shah via dogacan)
27. NUTCH-505 - Outlink urls should be validated. (dogacan)
28. NUTCH-510 - IndexMerger delete working dir. (Enis Soztutar via dogacan)
29. NUTCH-513 - suffix-urlfilter.txt does not have a template. (dogacan)
30. NUTCH-515 - Next fetch time is set incorrectly. (dogacan)
30. NUTCH-506 - Nutch should delegate compression to Hadoop. (dogacan)
31. NUTCH-517 - build encoding should be UTF-8. (Enis Soztutar via dogacan).
32. NUTCH-518 - Fix OpicScoringFilter to respect scoring filter chaining.
(Enis Soztutar via dogacan)
33. NUTCH-516 - Next fetch time is not set when it is a
CrawlDatum.STATUS_FETCH_GONE. (Emmanuel Joke via dogacan)
34. NUTCH-525 - DeleteDuplicates generates ArrayIndexOutOfBoundsException
when trying to rerun dedup on a segment. (Vishal Shah via dogacan)
35. NUTCH-514 - Indexer should only index pages with fetch status SUCCESS.
(dogacan) Note: There is a bigger problem, i.e how to deal
with redirected pages, and this issue can be considered as a band-aid
for the time being. See NUTCH-273 and NUTCH-353 for more details.
36. NUTCH-533 - LinkDbMerger: url normalized is not updated in the key and
inlinks list. (Emmanuel Joke via dogacan)
37. NUTCH-535 -ParseData's contentMeta accumulates unnecessary values during
parse. (dogacan)
38. NUTCH-522 - Use URLValidator in the Injector. (Emmanuel Joke, dogacan)
39. NUTCH-536 - Reduce number of warnings in nutch core. (dogacan)
40. NUTCH-439 - Top Level Domains Indexing / Scoring. Also adds
domain-related utilities. (Enis Soztutar via dogacan)
41. NUTCH-544 - Upgrade Carrot2 clustering plugin to the newest stable
release (2.1). (Dawid Weiss via dogacan)
42. NUTCH-545 - Configuration and OnlineClusterer get initialized in every
request. (Dawid Weiss via dogacan)
43. NUTCH-532 - CrawlDbMerger: wrong computation of last fetch time.
(Emmanuel Joke via dogacan)
44. NUTCH-550 - Parse fails if db.max.outlinks.per.page is -1. (dogacan)
45. NUTCH-546 - file URL are filtered out by the crawler. (dogacan)
46. NUTCH-554 - Generator throws IOException on invalid urls.
(Brian Whitman via ab)
47. NUTCH-529 - NodeWalker.skipChildren doesn't work for more than 1 child.
(Emmanuel Joke via dogacan)
48. NUTCH-25 - needs 'character encoding' detector.
(Doug Cook, dogacan, Marcin Okraszewski, Renaud Richardet via dogacan)
49. NUTCH-508 - ${hadoop.log.dir} and ${hadoop.log.file} are not propagated
to the tasktracker. (Mathijs Homminga, Emmanuel Joke via dogacan)
50. NUTCH-562 - Port mime type framework to use Tika mime detection framework.
(mattmann)
51. NUTCH-488 - Avoid parsing uneccessary links and get a more relevant outlink
list. (Emmanuel Joke, Marcin Okraszewski via kubes)
52. NUTCH-501 - Implement a different caching mechanism for objects cached in
configuration. (dogacan)
53. NUTCH-552 - Upgrade Nutch to Hadoop 0.15.x. (kubes)
54. NUTCH-565 - Arc File to Nutch Segments Converter. (kubes)
55. NUTCH-547 - Redirection handling: YahooSlurp's algorithm.
(dogacan, kubes via dogacan)
56. NUTCH-548 - Move URLNormalizer from Outlink to ParseOutputFormat.
(Emmanuel Joke via dogacan)
57. NUTCH-538 - Delete unused classes under o.a.n.util. (dogacan)
58. NUTCH-494 - FindBugs: CrawlDbReader and DeleteDuplicates. (dogacan)
59. NUTCH-574 - Including inlink anchor text in index can create irrelevant
search results. Created index-anchor plugin, removed functionality from
index-basic plugin. For backwards compatibility, add index-anchor plugin to
nutch-site.xml plugin.includes. (kubes)
60. NUTCH-581 - DistributedSearch does not update search servers added to
search-servers.txt on the fly. (Rohan Mehta via kubes)
61. NUTCH-586 - Add option to run compiled classes without job file
(enis via ab)
62. NUTCH-559 - NTLM, Basic and Digest Authentication schemes for web/proxy
server. (Susam Pal via dogacan)
63. NUTCH-534 - SegmentMerger: add -normalize option (Emmanuel Joke via ab)
64. NUTCH-528 - CrawlDbReader: add some new stats + dump into a CSV format
(Emmanuel Joke via ab)
65. NUTCH-597 - NPE in Fetcher2 (Remco Verhoef via ab)
66. NUTCH-584 - urls missing from fetchlist (Ruslan Ermilov, ab)
67. NUTCH-580 - Remove deprecated hadoop api calls (FS) (siren)
68. NUTCH-587 - Upgrade to Hadoop 0.15.3 (kubes)
69. NUTCH-604 - Upgrade to Lucene 2.3.0 (ab)
70. NUTCH-602 - Allow configurable number of handlers for search servers
(hartbecke via kubes)
71. NUTCH-607 - Update build.xml to include tika jar when building war (kubes)
72. NUTCH-608 - Upgrade nutch to use released apache-tika-0.1-incubating (mattmann)
73. NUTCH-606 - Refactoring of Generator, run all urls through checks (kubes)
74. NUTCH-605 - Change deprecated configuration methods for Hadoop (kubes)
75. NUTCH-603 - Add more default url normalizations (kubes)
76. NUTCH-611 - Upgrade Nutch to use Hadoop 0.16 (kubes)
77. NUTCH-44 - Too many search results, limits max results returned from a
single search. (Emilijan Mirceski and Susam Pal via kubes)
78. NUTCH-567 - Proper (?) handling of URIs in TagSoup. TagSoup library is
updated to 1.2 version. (dogacan)
79. NUTCH-613 - Empty summaries and cached pages (kubes via ab)
80. NUTCH-612 - URL filtering was disabled in Generator when invoked
from Crawl (Susam Pal via ab)
81. NUTCH-601 - Recrawling on existing crawl directory (Susam Pal via ab)
82. NUTCH-575 - NPE in OpenSearchServlet (John H. Lee via ab)
83. NUTCH-126 - Fetching https does not work with a proxy (Fritz Elfert via ab)
84. NUTCH-615 - Redirected URL-s fetched without setting fetchInterval.
Guard against reprUrl being null. (Emmanuel Joke, ab)
85. NUTCH-616 - Reset Fetch Retry counter when fetch is successful (Emmanuel
Joke, ab)
86. NUTCH-220 - Upgrade to PDFBox 0.7.3 (ab)
87. NUTCH-223 - Crawl.java uses Integer.MAX_VALUE (Jeff Ritchie via ab)
88. NUTCH-598 - Remove deprecated use of ToolBase. Use generics in Hadoop API.
(Emmanuel Joke, dogacan, ab)
89. NUTCH-620 - BasicURLNormalizer should collapse runs of slashes with a
single slash. (Mark DeSpain via ab)
90. NUTCH-500 - Add hadoop masters configuration file into conf folder.
(Emmanuel Joke via kubes)
91. NUTCH-596 - ParseSegments parse content even if its not
CrawlDatum.STATUS_FETCH_SUCCESS (dogacan)
92. NUTCH-618 - Tika error "Media type alias already exists" (mattmann,kubes)
93. NUTCH-634 - Upgrade Nutch to Hadoop 0.17.1 (Michael Gottesman, Lincoln
Ritter, ab)
94. NUTCH-641 - IndexSorter inorrectly copies stored fields (ab)
95. NUTCH-645 - Parse-swf unit test failing (ab)
96. NUTCH-642 - Unit tests fail when run in non-local mode (ab)
97. NUTCH-639 - Change LuceneDocumentWrapper visibility from
private to _public_ (Guillaume Smet via dogacan)
98. NUTCH-651 - Remove bin/{start|stop}-balancer.sh from svn
tracking. (dogacan)
99. NUTCH-375 - Add support for Content-Encoding: deflated
(Pascal Beis, ab)
100. NUTCH-633 - ParseSegment no longer allow reparsing.
(dogacan)
101. NUTCH-653 - Upgrade to hadoop 0.18. (dogacan)
102. NUTCH-621 - Nutch needs to declare it's crypto usage (mattmann)
103. NUTCH-654 - urlfilter-regex's main does not work.
(dogacan)
104. NUTCH-640 - confusing description "set it to Integer.MAX_VALUE".
(dogacan)
105. NUTCH-662 - Upgrade Nutch to use Lucene 2.4. (kubes)
106. NUTCH-663 - Upgrade Nutch to use Hadoop 0.19 (kubes)
107. NUTCH-647 - Resolve URLs tool (kubes)
108. NUTCH-665 - Search Load Testing Tool (kubes)
109. NUTCH-667 - Input Format for working with Content in Hadoop Streaming
(kubes)
110. NUTCH-635 - LinkAnalysis Tool for Nutch. (kubes)
111. NUTCH-646 - New Indexing Framework for Nutch. (kubes)
112. NUTCH-668 - Domain URL Filter. (kubes)
113. NUTCH-594 - Serve Nutch search results in multiple formats including
XML and JSON. (kubes)
114. NUTCH-442 - Integrate Solr/Nutch. (dogacan, original version by siren)
115. NUTCH-652 - AdaptiveFetchSchedule#setFetchSchedule doesn't calculate
fetch interval correctly. (dogacan)
116. NUTCH-627 - Minimize host address lookup (Otis Gospodnetic)
117. NUTCH-678 - Hadoop 0.19 requires an update of jets3t.
(julien nioche via dogacan)
118. NUTCH-681 - parse-mp3 compilation problem.
(Wildan Maulana via dogacan)
119. NUTCH-676 - MapWritable is written inefficiently and confusingly.
(dogacan)
120. NUTCH-579 - Feed plugin only indexes one post per feed due to identical
digest. (dogacan)
121. NUTCH-571 - parse-mp3 plugin doesn't always index album of mp3.
(Joseph Chen, dogacan)
122. NUTCH-682 - SOLR indexer does not set boost on the document.
(julien nioche via dogacan)
123. NUTCH-279 - Additions to urlnormalizer-regex (Stefan Neufeind, ab)
124. NUTCH-671 - JSP errors in Nutch searcher webapp (Edwin Chu via ab)
125. NUTCH-643 - ClassCastException in PDF parser (Guillaume Smet, ab)
126. NUTCH-636 - Httpclient plugin https doesn't work on IBM JRE
(Curtis d'Entremont, ab)
127. NUTCH-683 - NUTCH-676 broke CrawlDbMerger. (dogacan)
128. NUTCH-631 - MoreIndexingFilter fails with NoSuchElementException
(Stefan Will, siren)
129. NUTCH-691 - Update jakarta poi jars to the most relevant version
(Dmitry Lihachev via siren)
130. NUTCH-563 - Include custom fields in BasicQueryFilter
(Julien Nioche via siren)
131. NUTCH-695 - Incorrect mime type detection by MoreIndexingFilter plugin
(Dmitry Lihachev via siren)