You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Doug Cutting (JIRA)" <ji...@apache.org> on 2007/07/17 00:23:04 UTC

[jira] Created: (HADOOP-1620) FileSystem should have fewer abstract methods

FileSystem should have fewer abstract methods
---------------------------------------------

                 Key: HADOOP-1620
                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
             Project: Hadoop
          Issue Type: Improvement
            Reporter: Doug Cutting
             Fix For: 0.14.0


The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Updated: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting updated HADOOP-1620:
---------------------------------

    Status: Open  (was: Patch Available)

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>            Assignee: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Commented: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12513114 ] 

Hadoop QA commented on HADOOP-1620:
-----------------------------------

-1, build or testing failed

2 attempts failed to build and test the latest attachment http://issues.apache.org/jira/secure/attachment/12361925/1620.patch against trunk revision r556754.

Test results:   http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/422/testReport/
Console output: http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/422/console

Please note that this message is automatically generated and may represent a problem with the automation system and not the patch.

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>            Assignee: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Updated: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting updated HADOOP-1620:
---------------------------------

    Attachment: 1620.patch

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Updated: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting updated HADOOP-1620:
---------------------------------

    Status: Patch Available  (was: Open)

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>            Assignee: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620-2.patch, 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Updated: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting updated HADOOP-1620:
---------------------------------

    Attachment: 1620-2.patch

New improved version of patch.

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>            Assignee: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620-2.patch, 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Updated: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting updated HADOOP-1620:
---------------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

I just committed this.

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>            Assignee: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620-2.patch, 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Updated: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting updated HADOOP-1620:
---------------------------------

    Assignee: Doug Cutting
      Status: Patch Available  (was: Open)

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>            Assignee: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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


[jira] Commented: (HADOOP-1620) FileSystem should have fewer abstract methods

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1620?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12513354 ] 

Hadoop QA commented on HADOOP-1620:
-----------------------------------

-1, build or testing failed

2 attempts failed to build and test the latest attachment http://issues.apache.org/jira/secure/attachment/12361999/1620-2.patch against trunk revision r556754.

Test results:   http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/427/testReport/
Console output: http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/427/console

Please note that this message is automatically generated and may represent a problem with the automation system and not the patch.

> FileSystem should have fewer abstract methods
> ---------------------------------------------
>
>                 Key: HADOOP-1620
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1620
>             Project: Hadoop
>          Issue Type: Improvement
>            Reporter: Doug Cutting
>            Assignee: Doug Cutting
>             Fix For: 0.14.0
>
>         Attachments: 1620-2.patch, 1620.patch
>
>
> The FileSystem API has a number of abstract methods that are implemented identically on all but one FileSystem implementation.  These should instead have a default implementation, with one subclass overridding that implementation.  Fewer abstract methods makes it easier to write new FileSystem implementations.

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