Created
May 18, 2009 13:02
-
-
Save rkh/113456 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# | |
# The jaql command script (derived from bin/hadoop) | |
# | |
# Environment Variables | |
# | |
# JAVA_HOME The java implementation to use. Overrides JAVA_HOME. | |
# | |
# HADOOP_CLASSPATH Extra Java CLASSPATH entries. | |
# | |
# HADOOP_HEAPSIZE The maximum amount of heap to use, in MB. | |
# Default is 1000. | |
# | |
# HADOOP_OPTS Extra Java runtime options. | |
# | |
# HADOOP_CONF_DIR Alternate conf dir. Default is ${HADOOP_HOME}/conf. | |
# | |
# HADOOP_ROOT_LOGGER The root appender. Default is INFO,console | |
# | |
HADOOP_HOME=$HOME/hadoop-0.18.3/ # or something | |
JAQL_HOME=$HOME/jaql-0.4 # or something | |
# | |
# ... rest of the file ... | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment