Created
July 13, 2011 18:19
-
-
Save whiter4bbit/1080935 to your computer and use it in GitHub Desktop.
hadoop config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
whiter4bbit@katrin conf % cat mapred-site.xml | |
<?xml version="1.0"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<!-- Put site-specific property overrides in this file. --> | |
<configuration> | |
<property> | |
<name>mapred.job.tracker</name> | |
<value>localhost:9001</value> | |
<description>The host and port that the MapReduce job tracker runs | |
at.</description> | |
</property> | |
</configuration> | |
whiter4bbit@katrin conf % cat core-site.xml | |
<?xml version="1.0"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<!-- Put site-specific property overrides in this file. --> | |
<configuration> | |
<property> | |
<name>fs.default.name</name> | |
<value>hdfs://localhost:9000</value> | |
<description>The name of the default file system. A URI whose scheme and authority determine the FileSystem implementation. | |
</description> | |
</property> | |
</configuration> | |
whiter4bbit@katrin conf % cat hdfs-site.xml | |
<?xml version="1.0"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<!-- Put site-specific property overrides in this file. --> | |
<configuration> | |
<property> | |
<name>dfs.permissions</name> | |
<value>false</value> | |
</property> | |
<!-- | |
<property> | |
<name>dfs.replication</name> | |
<value>1</value> | |
<description>The actual number of replications can be specified when the | |
file is created.</description> | |
</property> | |
--> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment