Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Excerpt

Discusses how to manage the Trafodion test environment.

 

...

Table of Contents

...

Manage Trafodion

The following table provides an overview of the different Trafodion management scripts.

...

Code Block
languagebash
titleExample: Start Trafodion
cd $MY_SQROOT/sql/scripts
sqstart
sqcheck

Validate Trafodion Installation

You can use sqlci (part of the base product) or trafci (requires separate install; see Trafodion Client Installation Guide) to validate your installation.

...

Assuming no errors, your installation has been successful. You can start working on your modifications.

Troubleshooting Tips

If you are not able to start up the environment or if there are problems running sqlci or trafci, then verify that the all the processes are up and running.

  • swstatus should show at 6 java servers and 2 MySQL processes.
  • sqcheck should indicate all processes are running.

...

If problems persist please review logs:

  • $MY_SQROOT/sql/local_hadoop/*/log: Hadoop, HBase, and Hive logs.
  • $MY_SQROOT/logs: Trafodion logs.

Manage Hadoop Environment

Pre-Existing Hadoop

If you are doing Trafodion development on a pre-existing Hadoop distribution, then do the following:

  • Distribution: Use the distribution management too. For example: Apache Ambari or Cloudera Manager.
  • Regular Hadoop: Use the start/stop script for each Hadoop environment.

Local Hadoop

Use the following commands to manage the Hadoop environment.

CommandUsage
swstartallStart the complete Hadoop environment.
swstopallStops the complete Hadoop environment.
swstatusChecks the status of the Hadoop environment.
swuninstall_local_hadoopRemoves the Hadoop installation.

Downloading New Source Code

You need to do the following each time you download new source code.

Code Block
languagebash
cd <Trafodion source directory>
source ./env.sh
cd $MY_SQROOT/etc

# delete ms.env, if it exists
rm ms.env
cd $MY_SQROOT/sql/scripts
sqgen
Code Block
languagebash
titleExample: Refresh when Installing New Source Code
cd mysource/incubator-trafidion
source ./env.sh
cd $MY_SQROOT/etc

# delete ms.env, if it exists
rm ms.env
cd $MY_SQROOT/sql/scripts
sqgen

 

 

 

...