Andrzej Bialecki wrote:
> Espen Amble Kolstad wrote:
>> Hi,
>>
>> There's a bug in LinkDb.install(). It tries to rename an old linkdb from
>> linkdb/current to linkdb/old, and linkdb/current doesn't exist.
>> Just replace:
>> fs.rename(current, old);
>> with:
>> if (fs.exists(current)) {
>>    fs.rename(current, old);
>> }
>>
>> and it will work again :)
>>   
> 
> 
> Indeed, this is related to some changes of delete()'s behavior in HDFS -
> it seems that previously it would just return false on non-existent
> directories, now it throws an Exception.

the needle is here?

http://issues.apache.org/jira/browse/NUTCH-392

--
 Sami Siren

-------------------------------------------------------------------------
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-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/nutch-general

Reply via email to