You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mahout.apache.org by "Isabel Drost (JIRA)" <ji...@apache.org> on 2008/04/07 12:36:24 UTC

[jira] Closed: (MAHOUT-27) Canopy/KMeans unit tests failing

     [ https://issues.apache.org/jira/browse/MAHOUT-27?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Isabel Drost closed MAHOUT-27.
------------------------------

    Resolution: Fixed

Looks like some hadoop files from earlier runs were still lying in my /tmp directory. After removing them manually, the tests all ran fine. Not sure why they were not tidied up.

> Canopy/KMeans unit tests failing
> --------------------------------
>
>                 Key: MAHOUT-27
>                 URL: https://issues.apache.org/jira/browse/MAHOUT-27
>             Project: Mahout
>          Issue Type: Bug
>          Components: Clustering
>    Affects Versions: 0.1
>            Reporter: Isabel Drost
>
> After checking out the project from svn and running "ant compile test" I noticed that three unit tests are failing:
>     [junit] Test org.apache.mahout.clustering.canopy.TestCanopyCreation FAILED
>     [junit] Testcase: testKMeansMRJob(org.apache.mahout.clustering.kmeans.TestKmeansClustering):	FAILED
>     [junit] Test org.apache.mahout.clustering.kmeans.TestKmeansClustering FAILED
> Isabel

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


Re: [jira] Closed: (MAHOUT-27) Canopy/KMeans unit tests failing

Posted by Isabel Drost <ap...@isabel-drost.de>.
On Monday 07 April 2008, Jeff Eastman wrote:
> Hadoop does not clean up the /tmp files unless the process terminates
> normally. If you were debugging and terminated a debugger then /tmp will 
> have some garbage in it that must be removed manually.

I see. Thanks for the clarification. 


Isabel


-- 
No one can have a higher opinion of him than I have, and I think he's adirty 
little beast.		-- W. S. Gilbert
  |\      _,,,---,,_       Web:   <http://www.isabel-drost.de>
  /,`.-'`'    -.  ;-;;,_
 |,4-  ) )-,_..;\ (  `'-'
'---''(_/--'  `-'\_) (fL)  IM:  <xm...@spaceboyz.net>

Re: [jira] Closed: (MAHOUT-27) Canopy/KMeans unit tests failing

Posted by Jeff Eastman <je...@windwardsolutions.com>.
Isabel Drost (JIRA) wrote:
>      [ https://issues.apache.org/jira/browse/MAHOUT-27?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>
> Isabel Drost closed MAHOUT-27.
> ------------------------------
>
>     Resolution: Fixed
>
> Looks like some hadoop files from earlier runs were still lying in my /tmp directory. After removing them manually, the tests all ran fine. Not sure why they were not tidied up.
>
>   
>> Canopy/KMeans unit tests failing
>> --------------------------------
>>
>>                 Key: MAHOUT-27
>>                 URL: https://issues.apache.org/jira/browse/MAHOUT-27
>>             Project: Mahout
>>          Issue Type: Bug
>>          Components: Clustering
>>    Affects Versions: 0.1
>>            Reporter: Isabel Drost
>>
>> After checking out the project from svn and running "ant compile test" I noticed that three unit tests are failing:
>>     [junit] Test org.apache.mahout.clustering.canopy.TestCanopyCreation FAILED
>>     [junit] Testcase: testKMeansMRJob(org.apache.mahout.clustering.kmeans.TestKmeansClustering):	FAILED
>>     [junit] Test org.apache.mahout.clustering.kmeans.TestKmeansClustering FAILED
>> Isabel
>>     
>
>   
Hadoop does not clean up the /tmp files unless the process terminates 
normally. If you were debugging and terminated a debugger then /tmp will 
have some garbage in it that must be removed manually. As a result of 
this, I always allow unit tests to run to completion rather than 
aborting them in the middle. It may be some exception handlers in 
Hadoop's simulated cluster implementation are missing.

Jeff