HDDS-604. Correct Ozone getOzoneConf description.
Contributed by Dinesh Chitlangia.
This commit is contained in:
parent
4de2dc2699
commit
794c0451cf
@ -39,7 +39,7 @@ function hadoop_usage
|
|||||||
hadoop_add_subcommand "fs" client "run a filesystem command on Ozone file system. Equivalent to 'hadoop fs'"
|
hadoop_add_subcommand "fs" client "run a filesystem command on Ozone file system. Equivalent to 'hadoop fs'"
|
||||||
hadoop_add_subcommand "genconf" client "generate minimally required ozone configs and output to ozone-site.xml in specified path"
|
hadoop_add_subcommand "genconf" client "generate minimally required ozone configs and output to ozone-site.xml in specified path"
|
||||||
hadoop_add_subcommand "genesis" client "runs a collection of ozone benchmarks to help with tuning."
|
hadoop_add_subcommand "genesis" client "runs a collection of ozone benchmarks to help with tuning."
|
||||||
hadoop_add_subcommand "getozoneconf" client "get ozone config values from configuration"
|
hadoop_add_subcommand "getconf" client "get ozone config values from configuration"
|
||||||
hadoop_add_subcommand "jmxget" admin "get JMX exported values from NameNode or DataNode."
|
hadoop_add_subcommand "jmxget" admin "get JMX exported values from NameNode or DataNode."
|
||||||
hadoop_add_subcommand "noz" client "ozone debug tool, convert ozone metadata into relational data"
|
hadoop_add_subcommand "noz" client "ozone debug tool, convert ozone metadata into relational data"
|
||||||
hadoop_add_subcommand "om" daemon "Ozone Manager"
|
hadoop_add_subcommand "om" daemon "Ozone Manager"
|
||||||
@ -94,7 +94,7 @@ function ozonecmd_case
|
|||||||
HADOOP_CLASSNAME=org.apache.hadoop.ozone.genesis.Genesis
|
HADOOP_CLASSNAME=org.apache.hadoop.ozone.genesis.Genesis
|
||||||
OZONE_RUN_ARTIFACT_NAME="hadoop-ozone-tools"
|
OZONE_RUN_ARTIFACT_NAME="hadoop-ozone-tools"
|
||||||
;;
|
;;
|
||||||
getozoneconf)
|
getconf)
|
||||||
HADOOP_CLASSNAME=org.apache.hadoop.ozone.freon.OzoneGetConf;
|
HADOOP_CLASSNAME=org.apache.hadoop.ozone.freon.OzoneGetConf;
|
||||||
OZONE_RUN_ARTIFACT_NAME="hadoop-ozone-tools"
|
OZONE_RUN_ARTIFACT_NAME="hadoop-ozone-tools"
|
||||||
;;
|
;;
|
||||||
|
@ -67,8 +67,8 @@ fi
|
|||||||
#Add other possible options
|
#Add other possible options
|
||||||
nameStartOpt="$nameStartOpt $*"
|
nameStartOpt="$nameStartOpt $*"
|
||||||
|
|
||||||
SECURITY_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -confKey hadoop.security.authentication | tr '[:upper:]' '[:lower:]' 2>&-)
|
SECURITY_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -confKey hadoop.security.authentication | tr '[:upper:]' '[:lower:]' 2>&-)
|
||||||
SECURITY_AUTHORIZATION_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -confKey hadoop.security.authorization | tr '[:upper:]' '[:lower:]' 2>&-)
|
SECURITY_AUTHORIZATION_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -confKey hadoop.security.authorization | tr '[:upper:]' '[:lower:]' 2>&-)
|
||||||
|
|
||||||
if [[ ${SECURITY_ENABLED} == "kerberos" || ${SECURITY_AUTHORIZATION_ENABLED} == "true" ]]; then
|
if [[ ${SECURITY_ENABLED} == "kerberos" || ${SECURITY_AUTHORIZATION_ENABLED} == "true" ]]; then
|
||||||
echo "Ozone is not supported in a security enabled cluster."
|
echo "Ozone is not supported in a security enabled cluster."
|
||||||
@ -77,7 +77,7 @@ fi
|
|||||||
|
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# Check if ozone is enabled
|
# Check if ozone is enabled
|
||||||
OZONE_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -confKey ozone.enabled | tr '[:upper:]' '[:lower:]' 2>&-)
|
OZONE_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -confKey ozone.enabled | tr '[:upper:]' '[:lower:]' 2>&-)
|
||||||
if [[ "${OZONE_ENABLED}" != "true" ]]; then
|
if [[ "${OZONE_ENABLED}" != "true" ]]; then
|
||||||
echo "Operation is not supported because ozone is not enabled."
|
echo "Operation is not supported because ozone is not enabled."
|
||||||
exit -1
|
exit -1
|
||||||
@ -96,7 +96,7 @@ hadoop_uservar_su hdfs datanode "${HADOOP_HDFS_HOME}/bin/ozone" \
|
|||||||
|
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# Ozone ozonemanager nodes
|
# Ozone ozonemanager nodes
|
||||||
OM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -ozonemanagers 2>/dev/null)
|
OM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -ozonemanagers 2>/dev/null)
|
||||||
echo "Starting Ozone Manager nodes [${OM_NODES}]"
|
echo "Starting Ozone Manager nodes [${OM_NODES}]"
|
||||||
if [[ "${OM_NODES}" == "0.0.0.0" ]]; then
|
if [[ "${OM_NODES}" == "0.0.0.0" ]]; then
|
||||||
OM_NODES=$(hostname)
|
OM_NODES=$(hostname)
|
||||||
@ -113,7 +113,7 @@ HADOOP_JUMBO_RETCOUNTER=$?
|
|||||||
|
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# Ozone storagecontainermanager nodes
|
# Ozone storagecontainermanager nodes
|
||||||
SCM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -storagecontainermanagers 2>/dev/null)
|
SCM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -storagecontainermanagers 2>/dev/null)
|
||||||
echo "Starting storage container manager nodes [${SCM_NODES}]"
|
echo "Starting storage container manager nodes [${SCM_NODES}]"
|
||||||
hadoop_uservar_su hdfs scm "${HADOOP_HDFS_HOME}/bin/ozone" \
|
hadoop_uservar_su hdfs scm "${HADOOP_HDFS_HOME}/bin/ozone" \
|
||||||
--workers \
|
--workers \
|
||||||
|
@ -47,8 +47,8 @@ else
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
SECURITY_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -confKey hadoop.security.authentication | tr '[:upper:]' '[:lower:]' 2>&-)
|
SECURITY_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -confKey hadoop.security.authentication | tr '[:upper:]' '[:lower:]' 2>&-)
|
||||||
SECURITY_AUTHORIZATION_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -confKey hadoop.security.authorization | tr '[:upper:]' '[:lower:]' 2>&-)
|
SECURITY_AUTHORIZATION_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -confKey hadoop.security.authorization | tr '[:upper:]' '[:lower:]' 2>&-)
|
||||||
|
|
||||||
if [[ ${SECURITY_ENABLED} == "kerberos" || ${SECURITY_AUTHORIZATION_ENABLED} == "true" ]]; then
|
if [[ ${SECURITY_ENABLED} == "kerberos" || ${SECURITY_AUTHORIZATION_ENABLED} == "true" ]]; then
|
||||||
echo "Ozone is not supported in a security enabled cluster."
|
echo "Ozone is not supported in a security enabled cluster."
|
||||||
@ -57,7 +57,7 @@ fi
|
|||||||
|
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# Check if ozone is enabled
|
# Check if ozone is enabled
|
||||||
OZONE_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -confKey ozone.enabled | tr '[:upper:]' '[:lower:]' 2>&-)
|
OZONE_ENABLED=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -confKey ozone.enabled | tr '[:upper:]' '[:lower:]' 2>&-)
|
||||||
if [[ "${OZONE_ENABLED}" != "true" ]]; then
|
if [[ "${OZONE_ENABLED}" != "true" ]]; then
|
||||||
echo "Operation is not supported because ozone is not enabled."
|
echo "Operation is not supported because ozone is not enabled."
|
||||||
exit -1
|
exit -1
|
||||||
@ -76,7 +76,7 @@ hadoop_uservar_su ozone datanode "${HADOOP_HDFS_HOME}/bin/ozone" \
|
|||||||
|
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# Ozone Manager nodes
|
# Ozone Manager nodes
|
||||||
OM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -ozonemanagers 2>/dev/null)
|
OM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -ozonemanagers 2>/dev/null)
|
||||||
echo "Stopping Ozone Manager nodes [${OM_NODES}]"
|
echo "Stopping Ozone Manager nodes [${OM_NODES}]"
|
||||||
if [[ "${OM_NODES}" == "0.0.0.0" ]]; then
|
if [[ "${OM_NODES}" == "0.0.0.0" ]]; then
|
||||||
OM_NODES=$(hostname)
|
OM_NODES=$(hostname)
|
||||||
@ -91,7 +91,7 @@ hadoop_uservar_su hdfs om "${HADOOP_HDFS_HOME}/bin/ozone" \
|
|||||||
|
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# Ozone storagecontainermanager nodes
|
# Ozone storagecontainermanager nodes
|
||||||
SCM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getozoneconf -storagecontainermanagers 2>/dev/null)
|
SCM_NODES=$("${HADOOP_HDFS_HOME}/bin/ozone" getconf -storagecontainermanagers 2>/dev/null)
|
||||||
echo "Stopping storage container manager nodes [${SCM_NODES}]"
|
echo "Stopping storage container manager nodes [${SCM_NODES}]"
|
||||||
hadoop_uservar_su hdfs scm "${HADOOP_HDFS_HOME}/bin/ozone" \
|
hadoop_uservar_su hdfs scm "${HADOOP_HDFS_HOME}/bin/ozone" \
|
||||||
--workers \
|
--workers \
|
||||||
|
@ -36,7 +36,7 @@ The commands supported by ozone are:
|
|||||||
* **envvars** - Display computed Hadoop environment variables.
|
* **envvars** - Display computed Hadoop environment variables.
|
||||||
* **freon** - Runs the ozone load generator.
|
* **freon** - Runs the ozone load generator.
|
||||||
* **genesis** - Developer Only, Ozone micro-benchmark application.
|
* **genesis** - Developer Only, Ozone micro-benchmark application.
|
||||||
* **getozoneconf** - Reads ozone config values from configuration.
|
* **getconf** - Reads ozone config values from configuration.
|
||||||
* **jmxget** - Get JMX exported values from NameNode or DataNode.
|
* **jmxget** - Get JMX exported values from NameNode or DataNode.
|
||||||
* **om** - Ozone Manager, via daemon command can be started or stopped.
|
* **om** - Ozone Manager, via daemon command can be started or stopped.
|
||||||
* **sh** - Primary command line interface for ozone.
|
* **sh** - Primary command line interface for ozone.
|
||||||
|
Loading…
Reference in New Issue
Block a user