You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2010/01/09 04:03:08 UTC

svn commit: r897377 - in /hadoop/hbase/branches/0.20: CHANGES.txt src/contrib/ec2/bin/hbase-ec2-init-remote.sh

Author: apurtell
Date: Sat Jan  9 03:03:08 2010
New Revision: 897377

URL: http://svn.apache.org/viewvc?rev=897377&view=rev
Log:
HBASE-2100 [EC2] Adjust fs.file-max

Modified:
    hadoop/hbase/branches/0.20/CHANGES.txt
    hadoop/hbase/branches/0.20/src/contrib/ec2/bin/hbase-ec2-init-remote.sh

Modified: hadoop/hbase/branches/0.20/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hbase/branches/0.20/CHANGES.txt?rev=897377&r1=897376&r2=897377&view=diff
==============================================================================
--- hadoop/hbase/branches/0.20/CHANGES.txt (original)
+++ hadoop/hbase/branches/0.20/CHANGES.txt Sat Jan  9 03:03:08 2010
@@ -42,6 +42,7 @@
    HBASE-2094  hbase-2037 breaks mapreduce jobs going from 0.20.2 to 0.20.3
    HBASE-2093  [stargate] RowSpec parse bug (Andrew Purtell via JD)
    HBASE-2097  Deadlock between HRegion.put and HRegion.close (Stack via JD)
+   HBASE-2100  [EC2] Adjust fs.file-max
 
   IMPROVEMENTS
    HBASE-1970  Export does one version only; make it configurable how many

Modified: hadoop/hbase/branches/0.20/src/contrib/ec2/bin/hbase-ec2-init-remote.sh
URL: http://svn.apache.org/viewvc/hadoop/hbase/branches/0.20/src/contrib/ec2/bin/hbase-ec2-init-remote.sh?rev=897377&r1=897376&r2=897377&view=diff
==============================================================================
--- hadoop/hbase/branches/0.20/src/contrib/ec2/bin/hbase-ec2-init-remote.sh (original)
+++ hadoop/hbase/branches/0.20/src/contrib/ec2/bin/hbase-ec2-init-remote.sh Sat Jan  9 03:03:08 2010
@@ -18,7 +18,10 @@
 
 export USER="root"
 
-# up open file descriptor limits
+# up file-max
+sysctl -w fs.file-max=32768
+
+# up ulimits
 echo "root soft nofile 32768" >> /etc/security/limits.conf
 echo "root hard nofile 32768" >> /etc/security/limits.conf