Skip to content

Instantly share code, notes, and snippets.

@pauldix
Created June 15, 2011 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pauldix/1027367 to your computer and use it in GitHub Desktop.
Save pauldix/1027367 to your computer and use it in GitHub Desktop.
brisk mapred-site.xml
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!-- Put site-specific property overrides in this file. -->
<configuration>
<!-- Auto detect the brisk job tracker -->
<property>
<name>mapred.job.tracker</name>
<value>${brisk.job.tracker}</value>
<description>
The address of the job tracker
</description>
</property>
<property>
<name>mapred.child.java.opts</name>
<value>-Xmx256m</value>
<description>
Tune your mapred jvm arguments for best performance.
Also see documentation from jvm vendor.
</description>
</property>
<!-- Enable Hue plugins -->
<property>
<name>mapred.jobtracker.plugins</name>
<value>org.apache.hadoop.thriftfs.ThriftJobTrackerPlugin</value>
<description>Comma-separated list of jobtracker plug-ins to be activated.
</description>
</property>
<property>
<name>jobtracker.thrift.address</name>
<value>0.0.0.0:9290</value>
</property>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment