Author: ab Date: Fri Mar 23 15:59:01 2007 New Revision: 521933 URL: http://svn.apache.org/viewvc?view=rev&rev=521933 Log: Upgrade to Hadoop 0.12.2 release.
Fix whitespace issues in platform name in bin/hadoop under Cygwin. Replace deprecated method call. Added: lucene/nutch/trunk/lib/hadoop-0.12.2-core.jar (with props) Removed: lucene/nutch/trunk/lib/hadoop-0.12.1-core.jar Modified: lucene/nutch/trunk/CHANGES.txt lucene/nutch/trunk/build.xml lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.a lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so.1 lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so.1.0.0 lucene/nutch/trunk/src/test/org/apache/nutch/indexer/TestDeleteDuplicates.java Modified: lucene/nutch/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/CHANGES.txt?view=diff&rev=521933&r1=521932&r2=521933 ============================================================================== --- lucene/nutch/trunk/CHANGES.txt (original) +++ lucene/nutch/trunk/CHANGES.txt Fri Mar 23 15:59:01 2007 @@ -169,6 +169,8 @@ 57. NUTCH-246 - Incorrect segment size being generated due to time synchronization issue (Stefan Groschupf via ab) +58. Upgrade to Hadoop 0.12.2 release. (ab) + Release 0.8 - 2006-07-25 Modified: lucene/nutch/trunk/build.xml URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/build.xml?view=diff&rev=521933&r1=521932&r2=521933 ============================================================================== --- lucene/nutch/trunk/build.xml (original) +++ lucene/nutch/trunk/build.xml Fri Mar 23 15:59:01 2007 @@ -75,6 +75,8 @@ </unjar> <untar src="${build.dir}/hadoop/bin.tgz" dest="bin" compression="gzip"/> + <!-- fix broken library paths with spaces --> + <replace file="bin/hadoop" token="PlatformName" value="PlatformName | sed -e 's/ /_/g'"/> <chmod dir="bin" perm="ugo+rx" includes="*.sh,hadoop"/> <!-- unpack hadoop webapp from hadoop jar into build directory --> Added: lucene/nutch/trunk/lib/hadoop-0.12.2-core.jar URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/hadoop-0.12.2-core.jar?view=auto&rev=521933 ============================================================================== Binary file - no diff available. Propchange: lucene/nutch/trunk/lib/hadoop-0.12.2-core.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Modified: lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.a URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.a?view=diff&rev=521933&r1=521932&r2=521933 ============================================================================== Binary files - no diff available. Modified: lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so?view=diff&rev=521933&r1=521932&r2=521933 ============================================================================== Binary files - no diff available. Modified: lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so.1 URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so.1?view=diff&rev=521933&r1=521932&r2=521933 ============================================================================== Binary files - no diff available. Modified: lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so.1.0.0 URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.so.1.0.0?view=diff&rev=521933&r1=521932&r2=521933 ============================================================================== Binary files - no diff available. Modified: lucene/nutch/trunk/src/test/org/apache/nutch/indexer/TestDeleteDuplicates.java URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/src/test/org/apache/nutch/indexer/TestDeleteDuplicates.java?view=diff&rev=521933&r1=521932&r2=521933 ============================================================================== --- lucene/nutch/trunk/src/test/org/apache/nutch/indexer/TestDeleteDuplicates.java (original) +++ lucene/nutch/trunk/src/test/org/apache/nutch/indexer/TestDeleteDuplicates.java Fri Mar 23 15:59:01 2007 @@ -57,7 +57,7 @@ private Path createIndex(String name, boolean hashDup, float inc, long time, boolean incFirst) throws Exception { Path idx = new Path(root, name); Path sub = new Path(idx, "part-0000"); - Directory dir = FSDirectory.getDirectory(sub.toString(), true); + Directory dir = FSDirectory.getDirectory(sub.toString()); IndexWriter writer = new IndexWriter(dir, new NutchDocumentAnalyzer(conf), true); Document doc = makeDoc(name, MD5Hash.digest("1").toString(), ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Nutch-cvs mailing list Nutch-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nutch-cvs