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 "Owen O'Malley (JIRA)" <ji...@apache.org> on 2007/04/18 18:29:15 UTC

[jira] Created: (HADOOP-1267) change default config to be single node rather than "local" for both map/reduce and hdfs

change default config to be single node rather than "local" for both map/reduce and hdfs
----------------------------------------------------------------------------------------

                 Key: HADOOP-1267
                 URL: https://issues.apache.org/jira/browse/HADOOP-1267
             Project: Hadoop
          Issue Type: Task
          Components: conf
            Reporter: Owen O'Malley
         Assigned To: Owen O'Malley
             Fix For: 0.13.0


I propose that we change the default config to be set up for a single node rather than the current "local", which uses direct file access and the local job runner.

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


[jira] Updated: (HADOOP-1267) change default config to be single node rather than "local" for both map/reduce and hdfs

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

Owen O'Malley updated HADOOP-1267:
----------------------------------

    Fix Version/s:     (was: 0.13.0)
                   0.14.0

> change default config to be single node rather than "local" for both map/reduce and hdfs
> ----------------------------------------------------------------------------------------
>
>                 Key: HADOOP-1267
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1267
>             Project: Hadoop
>          Issue Type: Task
>          Components: conf
>            Reporter: Owen O'Malley
>         Assigned To: Owen O'Malley
>             Fix For: 0.14.0
>
>
> I propose that we change the default config to be set up for a single node rather than the current "local", which uses direct file access and the local job runner.

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


[jira] Commented: (HADOOP-1267) change default config to be single node rather than "local" for both map/reduce and hdfs

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

Doug Cutting commented on HADOOP-1267:
--------------------------------------

Why?  Right now, things work out of the box w/o starting daemons, worrying about firewalls, etc.  For applications like Nutch, many (most?) users never bother running a cluster, but they get the comfort that their code is future-proofed for scalability.

> change default config to be single node rather than "local" for both map/reduce and hdfs
> ----------------------------------------------------------------------------------------
>
>                 Key: HADOOP-1267
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1267
>             Project: Hadoop
>          Issue Type: Task
>          Components: conf
>            Reporter: Owen O'Malley
>         Assigned To: Owen O'Malley
>             Fix For: 0.13.0
>
>
> I propose that we change the default config to be set up for a single node rather than the current "local", which uses direct file access and the local job runner.

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


[jira] Commented: (HADOOP-1267) change default config to be single node rather than "local" for both map/reduce and hdfs

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

Nigel Daley commented on HADOOP-1267:
-------------------------------------

>From Doug: We could include a confg/pseudo-cluster.xml file, that folks could use with 'bin/hadoop -conf conf/pseudo-cluster.xml ...'.

>From Nige: I suggest something like hadoop-site-localhost.xml or localhost-cluster.xml.  It would define, at a minimum, these properties:

  <property>
    <name>fs.default.name</name>
    <value>localhost:9000</value>
  </property>

  <property>
    <name>mapred.job.tracker</name>
    <value>localhost:9001</value>
  </property>

  <property>
    <name>dfs.replication</name>
    <value>1</value>
  </property>


> change default config to be single node rather than "local" for both map/reduce and hdfs
> ----------------------------------------------------------------------------------------
>
>                 Key: HADOOP-1267
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1267
>             Project: Hadoop
>          Issue Type: Task
>          Components: conf
>            Reporter: Owen O'Malley
>         Assigned To: Owen O'Malley
>             Fix For: 0.13.0
>
>
> I propose that we change the default config to be set up for a single node rather than the current "local", which uses direct file access and the local job runner.

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