Please see the docs for latest release in 1.99.* Some of the information below might be outdated

Size: px
Start display at page:

Download "Please see the docs for latest release in 1.99.* Some of the information below might be outdated"

Transcription

1 Setting up Sqoop 2 Building from sources Setting up a build environment with Eclipse Setting up the Code Formatter Quick commands to compile and run tests Creating Sqoop binaries Installing Sqoop2 on remote server Install dependencies Installing a new connector to Sqoop2 Starting/Stopping Sqoop2 server Starting/Running Sqoop2 client Sqoop configuration files Debug Logs information Note Please see the docs for latest release in 1.99.* Some of the information below might be outdated Building from sources Checkout sources and switch to sqoop2 branch: git clone sqoop2 cd sqoop2 git checkout sqoop2 Setting up a build environment with Eclipse Installation Install Eclipse, Install maven if not already on your machine Install Oracle's JDK Set up Run the following commands mvn eclipse:configure-workspace -Declipse.workspace=<path to your eclipse workspace> && mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=true Import the project into eclipse by going to File > Import... > General > Existing Projects into Workspace > Next. In the next wizard window, click the browse button next to "Select root directory" and browse to the root of the workspace from where you have checked out sqoop2. This will populate about 10 projects into your workspace - all of which are different modules within Sqoop2. Click Finish button to get these projects into the workspace and start working. Note - if this is the first time you are setting up Eclipse for a maven project, the import will show class path problems due to missing variable M2_REPO (Unbound classpath variable: 'M2_REPO/...). To fix this error, go to Preferences > Java > Build Path > Classpath Variables. Click on New..., enter name M2_REPO, click on Folder and browse upto the directory ~/.m2/repository. Click OK and close the preferences dialog. This will force the rebuild of the workspace and all projects should turn green. Similar steps need to be followed with IDEA Intellij as well.

2 Setting up the Code Formatter See Sqoop 2 Coding Guidelines Quick commands to compile and run tests Sqoop clean: mvn clean Sqoop compile: mvn compile Run all unit tests: mvn test Run all integration tests : Running integration tests does take up a lot of CPU, since these tests run on the actual execution engine ( such as Hadoop MR ) esp. Running org.apache.sqoop.integration.connector.jdbc.generic.partitionertest mvn clean integration-test Run one integration test: mvn clean integration-test -Dtest=org.apache.sqoop.integration.connector. jdbc.generic.fromrdbmstohdfstest -DfailIfNoTests=false If you want to run tests against the postgres repository, have a working installation of postgres and then point to it when running tests. In the following case we have a working postgres installation as postgresql://postgresql.ent.cloudera.com/sqoop_test mvn clean integration-test -pl repository/repository-postgresql -Dsqoop. provider.class=org.apache.sqoop.common.test.db.postgresqlprovider -Dsqoop. provider.postgresql.jdbc=jdbc:postgresql://postgresql.ent.cloudera.com /sqoop_test -Dsqoop.provider.postgresql.username=sqoop -Dsqoop.provider. postgresql.password=sqoop -Dpostgresql Sadly, as of this writing it does not really run the integration tests, it runs only the unit tests.

3 Build sqoop : mvn package Optionally you can build Sqoop with skipping tests ( both unit tests and integration tests ) mvn package -DskipTests Other handy commands that does build and run all tests from scratch mvn verify or mvn clean install Creating Sqoop binaries Now build and package Sqoop2 binary distribution: mvn package -Pbinary or mvn package -DskipTests=true -Dmaven.javadoc.skip=true -Pbinary -Dhadoop. profile=200 // for a specific hadoop profile This process will create a directory and a tarball under dist/target directory. The directory (named sqoop snapshot or sqoop SNAPSHOT-bin-hadoop200, depending on the hadoop profile used ) contains necessary binaries to run Sqoop2, and its structure looks something like below. VB: There is NO lib folder under the client in the latest code as of this writing

4 --+ bin --+ sqoop.sh + client --+ lib --+ sqoop-common.jar + sqoop-client.jar + (3rd-party client dependency jars) + server --+ bin --+ setenv.sh + conf --+ sqoop_bootstrap.properties + sqoop.properties + webapps --+ ROOT + sqoop.war +... As part of this process, a copy of the Tomcat server is also downloaded and put under the server directory in the above structure. If you are on particular release branch such as , all the artifacts in it will be created with the build version. for instance sqoo p bin-hadoop200.tar.gz Installing Sqoop2 on remote server To install generated binaries on remote server simply copy directory sqoop snapshot to your remote server: scp -r dist/target/sqoop snapshot remote-server.company.org:/remote /path/ Install dependencies Sqoop server is depending on hadoop binaries, but they are not part of the distribution and thus you need to install them into Sqoop server manually. The latest hadoop version we support is VB: There is no addtowar.sh in the in the latest code under sqoop snapshot/bin as of this writing To install hadoop libraries execute command addtowar.sh with argument -hadoop $version $location. Following example is for Cloudera distribution version 4(CDH4):./bin/addtowar.sh -hadoop 2.0 /usr/lib/hadoop/client/ If you're running CDH4 MR1:

5 cd dist/target/sqoop snapshot-bin-hadoop200 or cd dist/target/sqoop SNAPSHOT./bin/addtowar.sh -hadoop-version cdh4mr1 -hadoop-path /usr/lib In case that you're running original Mapreduce implementation (MR1), you will also need to install it's jar:./bin/addtowar.sh -jars /usr/lib/hadoop-0.20-mapreduce/hadoop mr1- cdh4.1.1-core.jar You can install any arbitrary jars (connectors, JDBC drivers) using -jars argument that takes list of jars separated by ":". Here is example for installing MySQL jdbc driver into Sqoop server:./bin/addtowar.sh -jars /path/to/jar/mysql-connector-java bin.jar Installing a new connector to Sqoop2 If you are contributing or adding a new connector say sqoop-foo-connector to the sqoop2, here are steps to follow. Step 1: Create a sqoop-foo-connector.jar. Make sure the jar contains the sqoopconnector.properties for it to be picked up by sqoop A typical sqoopconnector.properties for a sqoop2 connector looks like below Generic JDBC Connector Properties org.apache.sqoop.connector.class = org.apache.sqoop.connector.foo. FooConnector org.apache.sqoop.connector.name = sqoop-foo-connector Step 2: Add this jar to the a folder on your installation machine and update the path to this folder in the sqoop.properties located under the s erver/conf directory under the Sqoop2 for the key org.apache.sqoop.connector.external.loadpath External connectors load path "/path/to/external/connectors/": Add all the connector JARs in the specified folder org.apache.sqoop.connector.external.loadpath=/path/to/connector Step 3: Start the server and while initalizing the server this jar should be loaded into the sqoop's class path and registered into the sqoop repository/

6 Starting/Stopping Sqoop2 server To start Sqoop2 server invoke the sqoop shell script: cd dist/target/sqoop snapshot bin/sqoop.sh server start The Sqoop2 server is then running as a web application within the Tomcat server. Similarly, to stop Sqoop2 server, do the following: bin/sqoop.sh server stop Starting/Running Sqoop2 client To start an interactive shell, bin/sqoop.sh client This will bring up an interactive client ready for input commands: Sqoop Shell: Type 'help' or '\h' for help. sqoop:000> Please see the 5 min Demo Guide or the Command Line Shell Guide for the latest release 1.99.* Sqoop configuration files Both the default bootstrap configuration sqoop_bootstrap.properties and the main configuration sqoop.properties are located under the server/conf directory in the Sqoop2 distribution directory. The bootstrap configuration sqoop_bootstrap.properties controls what the mechanism is to provide configuration for different managers in the Sqoop. sqoop.config.provider=org.apache.sqoop.core.propertiesconfigurationprovider The main configuration sqoop.properties controls what the mechanism is for where the Where are the log files are, what the logging levels are? What is the repository used? What is the submission/ execution engine used? What is the Authentication mechanism used? Logging Configuration Any property that starts with the prefix org.apache.sqoop.log4j is parsed out by the configuration system and passed to the log4j subsystem. This allows you

7 to specify log4j configuration properties from within the Sqoop configuration. org.apache.sqoop.log4j.appender.file=org.apache.log4j.rollingfileappender org.apache.sqoop.log4j.appender.file.maxfilesize=25mb org.apache.sqoop.log4j.appender.file.maxbackupindex=5 org.apache.sqoop.log4j.appender.file.layout=org.apache.log4j.patternlayout org.apache.sqoop.log4j.appender.file.layout.conversionpattern=%d{iso8601} % -5p %c{2} [%l] %m%n org.apache.sqoop.log4j.debug=true org.apache.sqoop.log4j.rootcategory=warn, file org.apache.sqoop.log4j.category.org.apache.sqoop=debug org.apache.sqoop.log4j.category.org.apache.derby=info Audit Loggers Configuration Multiple audit loggers could be given here. To specify an audit logger, you should at least add org.apache.sqoop. auditlogger.[loggername].class. You could also provide more configuration options by using org.apache.sqoop. auditlogger.[loggername] prefix, then all these options are parsed to the logger class. org.apache.sqoop.auditlogger.default.class=org.apache.sqoop.audit. FileAuditLogger org.apache.sqoop.auditlogger.default.file=@logdir@/default.audit Repository configuration The Repository subsystem provides the special prefix which is "org.apache.sqoop.repository.sysprop". Any property that is specified with this prefix is parsed out and set as a system property. For example, if the built in Derby repository is being used, the sysprop prefixed properties can be used to affect Derby configuration at startup time by setting the appropriate system properties. Repository provider org.apache.sqoop.repository.provider=org.apache.sqoop.repository. JdbcRepositoryProvider Repository upgrade If set to true, it will not upgrade the sqoop respository schema, by default it will iniate the upgrade on server start-up org.apache.sqoop.repository.schema.immutable=false JDBC repository provider configuration org.apache.sqoop.repository.jdbc.handler=org.apache.sqoop.repository.derby. DerbyRepositoryHandler org.apache.sqoop.repository.jdbc.transaction.isolation=read_committed org.apache.sqoop.repository.jdbc.maximum.connections=10 org.apache.sqoop.repository.jdbc.url=jdbc:derby:@basedir@/repository/db; create=true org.apache.sqoop.repository.jdbc.driver=org.apache.derby.jdbc. EmbeddedDriver org.apache.sqoop.repository.jdbc.user=sa

8 org.apache.sqoop.repository.jdbc.password= System properties for embedded Derby configuration /derbyrepo.log Sqoop Connector configuration If set to true will initiate Connectors config upgrade during server startup org.apache.sqoop.connector.autoupgrade=false Sqoop Driver configuration If set to true will initiate the Driver config upgrade during server startup org.apache.sqoop.driver.autoupgrade=false Sleeping period for reloading configuration file (once a minute) org.apache.sqoop.core.configuration.provider.properties.sleep=60000 Submission engine configuration Submission engine class org.apache.sqoop.submission.engine=org.apache.sqoop.submission.mapreduce. MapreduceSubmissionEngine Number of milliseconds, submissions created before this limit will be removed, default is one day org.apache.sqoop.submission.purge.threshold= Number of milliseconds for purge thread to sleep, by default one day org.apache.sqoop.submission.purge.sleep= Number of milliseconds for update thread to sleep, by default 5 minutes org.apache.sqoop.submission.update.sleep= Configuration for Mapreduce submission engine (applicable if it's configured) Hadoop configuration directory org.apache.sqoop.submission.engine.mapreduce.configuration.directory=/etc /hadoop/conf/ Execution engine configuration org.apache.sqoop.execution.engine=org.apache.sqoop.execution.mapreduce. MapreduceExecutionEngine Authentication configuration org.apache.sqoop.authentication.type=simple org.apache.sqoop.authentication.handler=org.apache.sqoop.security. SimpleAuthenticationHandler org.apache.sqoop.anonymous=true org.apache.sqoop.authentication.type=kerberos org.apache.sqoop.authentication.handler=org.apache.sqoop.security. KerberosAuthenticationHandler

9 org.apache.sqoop.authentication.kerberos.keytab=/home/kerberos/sqoop. keytab org.apache.sqoop.authentication.kerberos.http.principal=http org.apache.sqoop.authentication.kerberos.http.keytab= Debug Logs information The logs of the Tomcat server is located under the server/logs directory in the Sqoop2 distribution directory, most relevant would be c atalina.out The logs of the Sqoop2 server as sqoop.log ( by default unless changed by the above sqoop.properties configuration file ) under the (@LOGDIR) directory in the Sqoop2 distribution directory. The logs for the Derby repository is derbyrepo.log ( by default unless changed by the above sqoop.properties configuration file ) under the (@LOGDIR) directory in the Sqoop2 distribution directory.

Getting Started with Cisco UCS Director Open Automation

Getting Started with Cisco UCS Director Open Automation Getting Started with Cisco UCS Director Open Automation Cisco UCS Director Open Automation, page 1 Upgrading Your Connector to the Current Release, page 5 Modules, page 5 Cisco UCS Director Open Automation

More information

DiaGen DiaMeta Tutorial Version

DiaGen DiaMeta Tutorial Version DiaGen DiaMeta Tutorial Version 1.5 12.02.2009 1 1. Contents 1. CONTENTS...2 2. INTRODUCTION...3 3. SOFTWARE REQUIREMENTS...4 4. INSTALLATION... 4 Option 1: Webpage...4 Option 2: Repository...6 5. RUN

More information

BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE

BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE Ashwini Sharma 1 CONTENTS 1. Introduction... 2 2 Prerequisites... 2 3 Patch the SOA Server Installation... 2 4. Use

More information

Cloudera Manager Quick Start Guide

Cloudera Manager Quick Start Guide Cloudera Manager Guide Important Notice (c) 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained in this

More information

AutoVue Integration SDK & Sample Integration for Filesys DMS

AutoVue Integration SDK & Sample Integration for Filesys DMS AutoVue Integration SDK & Sample Integration for Filesys DMS Installation Guide AutoVue Integration SDK Contents INTRODUCTION...1 SYSTEM REQUIREMENTS...2 INSTALLATION PREREQUISITES...3 Download the Eclipse

More information

Checking Out and Building Felix with NetBeans

Checking Out and Building Felix with NetBeans Checking Out and Building Felix with NetBeans Checking out and building Felix with NetBeans In this how-to we describe the process of checking out and building Felix from source using the NetBeans IDE.

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

juddi Developer Guide

juddi Developer Guide juddi 3.0 - Developer Guide Developer Guide ASF-JUDDI-DEVGUIDE-16/04/09 Contents Table of Contents Contents... 2 About This Guide... 3 What This Guide Contains... 3 Audience... 3 Prerequisites... 3 Organization...

More information

Problem Set 0. General Instructions

Problem Set 0. General Instructions CS246: Mining Massive Datasets Winter 2014 Problem Set 0 Due 9:30am January 14, 2014 General Instructions This homework is to be completed individually (no collaboration is allowed). Also, you are not

More information

Maven. INF5750/ Lecture 2 (Part II)

Maven. INF5750/ Lecture 2 (Part II) Maven INF5750/9750 - Lecture 2 (Part II) Problem! Large software projects usually contain tens or even hundreds of projects/modules Very different teams may work on different modules Will become messy

More information

Directory structure and development environment set up

Directory structure and development environment set up Directory structure and development environment set up 1. Install ANT: Download & unzip (or untar) the ant zip file - jakarta-ant-1.5.1-bin.zip to a directory say ANT_HOME (any directory is fine) Add the

More information

APEX Installation Guide. Sven van der Meer, Liam Fallon, John Keeney. Version SNAPSHOT, T16:01:13Z

APEX Installation Guide. Sven van der Meer, Liam Fallon, John Keeney. Version SNAPSHOT, T16:01:13Z APEX Installation Guide Sven van der Meer, Liam Fallon, John Keeney Version 2.0.0-SNAPSHOT, 2018-10-10T16:01:13Z Table of Contents 1. Requirements............................................................................................

More information

Third Party Software: How can I import data from MySQL to Hadoop with Apache Sqoop? How can I import data from MySQL to Hadoop with Apache Sqoop?

Third Party Software: How can I import data from MySQL to Hadoop with Apache Sqoop? How can I import data from MySQL to Hadoop with Apache Sqoop? How can I import data from MySQL to This is best explained with an example. Apache Sqoop is a data transfer tool used to move data between Hadoop and structured datastores. We will show how to "ingest"

More information

Getting started with Geomajas. Geomajas Developers and Geosparc

Getting started with Geomajas. Geomajas Developers and Geosparc Getting started with Geomajas Geomajas Developers and Geosparc Getting started with Geomajas by Geomajas Developers and Geosparc 1.12.0-SNAPSHOT Copyright 2010-2014 Geosparc nv Abstract Documentation for

More information

Red Hat JBoss Developer Studio 11.3

Red Hat JBoss Developer Studio 11.3 Red Hat JBoss Developer Studio 11.3 Installation Guide Installing Red Hat JBoss Developer Studio Last Updated: 2018-05-01 Red Hat JBoss Developer Studio 11.3 Installation Guide Installing Red Hat JBoss

More information

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

TransformixTools Axelor Demo Project

TransformixTools Axelor Demo Project TransformixTools Axelor Demo Project Introduction... 2 ADK for Rapid Application Development... 3 Developer High Productivity... 3 Web and Mobile User Interfaces... 3 ADK and Reverse Engineering of Existing

More information

Running the ESPM Twitter Integration sample app on SAP Cloud Platform

Running the ESPM Twitter Integration sample app on SAP Cloud Platform Running the ESPM Twitter Integration sample app on SAP Cloud Platform By Daniel Gomes da Silva Learn how to download, build, deploy, configure and run the ESPM Twitter Integration JAVA sample app on SAP

More information

Maven POM project modelversion groupid artifactid packaging version name

Maven POM project modelversion groupid artifactid packaging version name Maven The goal of this document is to introduce the Maven tool. This document just shows some of the functionalities of Maven. A complete guide about Maven can be found in http://maven.apache.org/. Maven

More information

WA1927 Introduction to Struts 2.x Using Eclipse. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA1927 Introduction to Struts 2.x Using Eclipse. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA1927 Introduction to Struts 2.x Using Eclipse Classroom Setup Guide Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software Requirements...3 Part

More information

MAVEN INTERVIEW QUESTIONS

MAVEN INTERVIEW QUESTIONS MAVEN INTERVIEW QUESTIONS http://www.tutorialspoint.com/maven/maven_interview_questions.htm Copyright tutorialspoint.com Dear readers, these Maven Interview Questions have been designed specially to get

More information

Sample Spark Web-App. Overview. Prerequisites

Sample Spark Web-App. Overview. Prerequisites Sample Spark Web-App Overview Follow along with these instructions using the sample Guessing Game project provided to you. This guide will walk you through setting up your workspace, compiling and running

More information

Struts 2 Maven Archetypes

Struts 2 Maven Archetypes Struts 2 Maven Archetypes DEPRECATED: moved to http://struts.apache.org/maven-archetypes/ Struts 2 provides several Maven archetypes that create a starting point for our own applications. Contents 1 DEPRECATED:

More information

JASPERREPORTS SERVER SOURCE BUILD GUIDE

JASPERREPORTS SERVER SOURCE BUILD GUIDE JASPERREPORTS SERVER SOURCE BUILD GUIDE RELEASE 6.4 http://www.jaspersoft.com Copyright 2005-2017 TIBCO Software Inc. All Rights Reserved. TIBCO Software Inc. This is version 0217-JSP64-35 of the TIBCO

More information

AppDev StudioTM 3.2 SAS. Migration Guide

AppDev StudioTM 3.2 SAS. Migration Guide SAS Migration Guide AppDev StudioTM 3.2 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS AppDev TM Studio 3.2: Migration Guide. Cary, NC: SAS Institute Inc.

More information

An Introduction to Eclipse Che Lets build a custom cloud IDE. October 2015 Tyler Jewell, Eclipse Che Project

An Introduction to Eclipse Che Lets build a custom cloud IDE. October 2015 Tyler Jewell, Eclipse Che Project An Introduction to Eclipse Che Lets build a custom cloud IDE October 2015 Tyler Jewell, Eclipse Che Project Lead @TylerJewell Goal Let anyone contribute to any project anywhere at any time. no pre-installation

More information

vrealize Code Stream Plug-In SDK Development Guide

vrealize Code Stream Plug-In SDK Development Guide vrealize Code Stream Plug-In SDK Development Guide vrealize Code Stream 2.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Red Hat JBoss Web Server 3.1

Red Hat JBoss Web Server 3.1 Red Hat JBoss Web Server 3.1 Red Hat JBoss Web Server for OpenShift Installing and using Red Hat JBoss Web Server for OpenShift Last Updated: 2018-03-05 Red Hat JBoss Web Server 3.1 Red Hat JBoss Web

More information

Kony MobileFabric. Sync Windows Installation - Manual - WebSphere. On-Premises. Release 7.2. Document Relevance and Accuracy

Kony MobileFabric. Sync Windows Installation - Manual - WebSphere. On-Premises. Release 7.2. Document Relevance and Accuracy Kony MobileFabric Sync Windows Installation - Manual - WebSphere On-Premises Release 7.2 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Red Hat JBoss Developer Studio 10.4 Installation Guide

Red Hat JBoss Developer Studio 10.4 Installation Guide Red Hat JBoss Developer Studio 10.4 Installation Guide Installing Red Hat JBoss Developer Studio Misha Husnain Ali Supriya Takkhi Red Hat Developer Group Documentation Team Red Hat JBoss Developer Studio

More information

Software Installation Guide

Software Installation Guide Software Installation Guide Software Installation Guide 2024C Engagement Development Platform Developing Snap-ins using Java Page 1 of 11 Bring Your Own Device (BYOD) Requirements You will be using your

More information

This checklist tells you how to create accounts and obtain permissions needed by Hive contributors. See the Hive website for additional information.

This checklist tells you how to create accounts and obtain permissions needed by Hive contributors. See the Hive website for additional information. HowToContribute How to Contribute to Apache Hive This page describes the mechanics of how to contribute software to Apache Hive. For ideas about what you might contribute, please see open tickets in Jira.

More information

Schema Sa Does Not Exist Derby

Schema Sa Does Not Exist Derby Schema Sa Does Not Exist Derby Running a JDBC program with org.apache.derby.jdbc.embeddeddriver. When I try Error is java.sql.sqlsyntaxerrorexception: Schema 'ROOT' does not exist. ServiceException: E0103:

More information

Using AVRO To Run Python Map Reduce Jobs

Using AVRO To Run Python Map Reduce Jobs Using AVRO To Run Python Map Reduce Jobs Overview This article describes how AVRO can be used write hadoop map/reduce jobs in other languages. AVRO accomplishes this by providing a stock mapper/reducer

More information

Red Hat JBoss Developer Studio 11.0

Red Hat JBoss Developer Studio 11.0 Red Hat JBoss Developer Studio 11.0 Installation Guide Installing Red Hat JBoss Developer Studio Last Updated: 2018-03-08 Red Hat JBoss Developer Studio 11.0 Installation Guide Installing Red Hat JBoss

More information

Rubix Documentation. Release Qubole

Rubix Documentation. Release Qubole Rubix Documentation Release 0.2.12 Qubole Jul 02, 2018 Contents: 1 RubiX 3 1.1 Usecase.................................................. 3 1.2 Supported Engines and Cloud Stores..................................

More information

MyLEAD Release V1.3 Installation Guide

MyLEAD Release V1.3 Installation Guide LINKED ENVIRONMENTS FOR ATMOSPHERIC DISCOVERY MyLEAD Release V1.3 Installation Guide Project Title: MyLead Document Title: mylead Release V1.3 Installation Guide Organization: Indiana University, Distributed

More information

Cloudera Connector for Teradata

Cloudera Connector for Teradata Cloudera Connector for Teradata Important Notice 2010-2017 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, and any other product or service names or slogans contained in this document

More information

Red Hat Developer Studio 12.9

Red Hat Developer Studio 12.9 Red Hat Developer Studio 12.9 Installation Guide Installing Red Hat Developer Studio Last Updated: 2018-10-08 Red Hat Developer Studio 12.9 Installation Guide Installing Red Hat Developer Studio Supriya

More information

What happens during bootstrapping

What happens during bootstrapping FlywayDB Extension Table of Contents What happens during bootstrapping......................................................... 2 How to Configure...........................................................................

More information

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

1. Go to the URL Click on JDK download option

1. Go to the URL   Click on JDK download option Download and installation of java 1. Go to the URL http://www.oracle.com/technetwork/java/javase/downloads/index.html Click on JDK download option 2. Select the java as per your system type (32 bit/ 64

More information

BUILD AND DEPLOY ORACLE SERVICE BUS PROJECTS FROM ORACLE DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE USING THE ORACLE SERVICE BUS PLUG-IN

BUILD AND DEPLOY ORACLE SERVICE BUS PROJECTS FROM ORACLE DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE USING THE ORACLE SERVICE BUS PLUG-IN BUILD AND DEPLOY ORACLE SERVICE BUS PROJECTS FROM ORACLE DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE USING THE ORACLE SERVICE BUS PLUG-IN Kishor Kumar Contents 1. Introduction... 2 2. Prerequisites...

More information

TM DevOps Use Case TechMinfy All Rights Reserved

TM DevOps Use Case TechMinfy All Rights Reserved Document Details Use Case Name TMDevOps Use Case01 First Draft 5 th March 2018 Author Reviewed By Prabhakar D Pradeep Narayanaswamy Contents Scope... 4 About Customer... 4 Use Case Description... 4 Primary

More information

Thomas Pelaia II, Ph.D. XAL Workshop 2012 December 13, 2012 Managed by UT-Battelle for the Department of Energy

Thomas Pelaia II, Ph.D. XAL Workshop 2012 December 13, 2012 Managed by UT-Battelle for the Department of Energy Thomas Pelaia II, Ph.D. XAL Workshop 2012 December 13, 2012 XAL Loose Timeline at SNS 2012 Software Maintenance Neutron Production Operations Software Development Intensity Commissioning Machine Study

More information

HPE Security Fortify Plugins for Eclipse

HPE Security Fortify Plugins for Eclipse HPE Security Fortify Plugins for Eclipse Software Version: 17.20 Installation and Usage Guide Document Release Date: November 2017 Software Release Date: November 2017 Legal Notices Warranty The only warranties

More information

Real-time Data Engineering in the Cloud Exercise Guide

Real-time Data Engineering in the Cloud Exercise Guide Real-time Data Engineering in the Cloud Exercise Guide Jesse Anderson 2017 SMOKING HAND LLC ALL RIGHTS RESERVED Version 1.12.a9779239 1 Contents 1 Lab Notes 3 2 Kafka HelloWorld 6 3 Streaming ETL 8 4 Advanced

More information

Getting Started. Table of contents

Getting Started. Table of contents by Brian McCallister Table of contents 1 Acquiring ojb-blank... 2 2 Contents of ojb-blank...2 2.1 Sample project... 3 3 The build files... 3 3.1 Configuration via build.properties...3 3.2 Building via

More information

Talend Open Studio for Big Data. Installation and Upgrade Guide 5.3.1

Talend Open Studio for Big Data. Installation and Upgrade Guide 5.3.1 Talend Open Studio for Big Data Installation and Upgrade Guide 5.3.1 Talend Open Studio for Big Data Adapted for v5.3.1. Supersedes any previous Installation and Upgrade Guide. Publication date: June 18,

More information

halef Documentation ETS

halef Documentation ETS ETS Apr 02, 2018 Contents 1 OpenVXML Without Tears 1 2 Halef Setup Process 19 i ii CHAPTER 1 OpenVXML Without Tears 1 Authors Vikram Ramanarayanan and Eugene Tsuprun (with inputs from the OpenVXML Setup

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

Purpose. Why use Java? Installing the Software. Java

Purpose. Why use Java? Installing the Software. Java Purpose I am providing instructions for those that want to follow along the progress and missteps of Project BrainyCode. Going forward we will just refer to the project a JGG for Java Game Generator (I

More information

... SysML version SNAPSHOT Developer Guide.... Eclipse

... SysML version SNAPSHOT Developer Guide.... Eclipse ... SysML version 0.10.1-SNAPSHOT Developer Guide... Eclipse 2017-01-05 T a b l e o f C o n t e n t s i Table of Contents... 1. Table of Contents...........................................................

More information

Submitting your Work using GIT

Submitting your Work using GIT Submitting your Work using GIT You will be using the git distributed source control system in order to manage and submit your assignments. Why? allows you to take snapshots of your project at safe points

More information

Application prerequisites

Application prerequisites How to start developing Spark applications in Eclipse By Marko Bonaći In this article, you will learn to write Spark applications using Eclipse, the most widely used development environment for JVM-based

More information

C-JDBC Tutorial A quick start

C-JDBC Tutorial A quick start C-JDBC Tutorial A quick start Authors: Nicolas Modrzyk (Nicolas.Modrzyk@inrialpes.fr) Emmanuel Cecchet (Emmanuel.Cecchet@inrialpes.fr) Version Date 0.4 04/11/05 Table of Contents Introduction...3 Getting

More information

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 Richard Lyn lynrf@mcmaster.ca Jianwei Yang yangj29@mcmaster.ca Document Revision History Rev. Level Date

More information

LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE

LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE VERSION 1.7.1 LICENSE4J www.license4j.com Table of Contents Getting Started... 2 Server Roles... 4 Installation... 9 Server WAR Deployment...

More information

Red Hat JBoss Developer Studio 10.3 Getting Started with JBoss Developer Studio Tools

Red Hat JBoss Developer Studio 10.3 Getting Started with JBoss Developer Studio Tools Red Hat JBoss Developer Studio 10.3 Getting Started with JBoss Developer Studio Tools Introduction to Using Red Hat JBoss Developer Studio Tools Misha Husnain Ali Supriya Bharadwaj Red Hat Developer Group

More information

Tutorial 2 GitHub Tutorial

Tutorial 2 GitHub Tutorial TCSS 360: Software Development Institute of Technology and Quality Assurance Techniques University of Washington Tacoma Winter 2017 http://faculty.washington.edu/wlloyd/courses/tcss360 Tutorial 2 GitHub

More information

I Got My Mojo Workin'

I Got My Mojo Workin' I Got My Mojo Workin' Gary Murphy Hilbert Computing, Inc. http://www.hilbertinc.com/ glm@hilbertinc.com Gary Murphy I Got My Mojo Workin' Slide 1 Agenda Quick overview on using Maven 2 Key features and

More information

JDO Tools Guide (v5.1)

JDO Tools Guide (v5.1) JDO Tools Guide (v5.1) Table of Contents Maven Plugin.............................................................................. 2 pom.xml Integration.......................................................................

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Hello Maven. TestNG, Eclipse, IntelliJ IDEA. Óbuda University, Java Enterprise Edition John von Neumann Faculty of Informatics Lab 2.

Hello Maven. TestNG, Eclipse, IntelliJ IDEA. Óbuda University, Java Enterprise Edition John von Neumann Faculty of Informatics Lab 2. Hello Maven TestNG, Eclipse, IntelliJ IDEA Óbuda University, Java Enterprise Edition John von Neumann Faculty of Informatics Lab 2 Dávid Bedők 2017.09.19. v0.1 Dávid Bedők (UNI-OBUDA) Hello JavaEE 2017.09.19.

More information

TM DevOps Use Case. 2017TechMinfy All Rights Reserved

TM DevOps Use Case. 2017TechMinfy All Rights Reserved Document Details Use Case Name TMDevOps Use Case03 First Draft 01 st Dec 2017 Author Reviewed By Prabhakar D Pradeep Narayanaswamy Contents Scope... 4 About Customer... 4 Use Case Description... 4 Primary

More information

vsphere Client SDK Developer Guide 03 MAY 2018 VMware vsphere vsphere Client SDK

vsphere Client SDK Developer Guide 03 MAY 2018 VMware vsphere vsphere Client SDK vsphere Client SDK Developer Guide 03 MAY 2018 VMware vsphere vsphere Client SDK You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have

More information

Entrust Connector (econnector) Venafi Trust Protection Platform

Entrust Connector (econnector) Venafi Trust Protection Platform Entrust Connector (econnector) For Venafi Trust Protection Platform Installation and Configuration Guide Version 1.0.5 DATE: 17 November 2017 VERSION: 1.0.5 Copyright 2017. All rights reserved Table of

More information

Sales Quote Demo Setup

Sales Quote Demo Setup Last updated: May 17, 2010 12:05 Sales Quote Demo Setup Sales Quote Demo Setup... 1 1. Create Quote Schema... 1 2. Set up data source in WebLogic server... 1 3. Perform Demo Seeding of Users & Groups...

More information

TIBCO StreamBase 10.2 Building and Running Applications in Studio, Studio Projects and Project Structure. November 2017

TIBCO StreamBase 10.2 Building and Running Applications in Studio, Studio Projects and Project Structure. November 2017 TIBCO StreamBase 10.2 Building and Running Applications in Studio, Studio Projects and Project Structure November 2017 TIBCO StreamBase 10 Experience 1. Build a StreamBase 10 Project 2. Run/Debug an StreamBase

More information

Topics covered. Introduction to Maven Maven for Dependency Management Maven Lifecycles and Plugins Hands on session. Maven 2

Topics covered. Introduction to Maven Maven for Dependency Management Maven Lifecycles and Plugins Hands on session. Maven 2 Maven Maven 1 Topics covered Introduction to Maven Maven for Dependency Management Maven Lifecycles and Plugins Hands on session Maven 2 Introduction to Maven Maven 3 What is Maven? A Java project management

More information

SecureAssist Enterprise Portal User Guide August 2016

SecureAssist Enterprise Portal User Guide August 2016 SecureAssist Enterprise Portal User Guide August 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

SecureAssist Enterprise Portal User Guide June 2016

SecureAssist Enterprise Portal User Guide June 2016 SecureAssist Enterprise Portal User Guide June 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

How to utilize the CM-9 source

How to utilize the CM-9 source How to utilize the CM-9 source The CM-900 s hardware and software are open-source. You can access the source via Github. You can use the source to develop your own robot development environment and share

More information

Red Hat Developer Studio 12.0

Red Hat Developer Studio 12.0 Red Hat Developer Studio 12.0 Getting Started with Developer Studio Tools Introduction to Using Red Hat Developer Studio Tools Last Updated: 2018-07-16 Red Hat Developer Studio 12.0 Getting Started with

More information

Object Oriented Programming. Week 1 Part 2 Git and egit

Object Oriented Programming. Week 1 Part 2 Git and egit Object Oriented Programming Part 2 Git and egit Lecture Review of Git Local Repository Remote Repository Using Git from Eclipse Review of Git 3 What is Git? Software Configuration Management (SCM) Supports

More information

RadBlue s S2S Quick Start Package (RQS) Developer s Guide. Version 0.1

RadBlue s S2S Quick Start Package (RQS) Developer s Guide. Version 0.1 RadBlue s S2S Quick Start Package (RQS) Developer s Guide Version 0.1 www.radblue.com April 17, 2007 Trademarks and Copyright Copyright 2007 Radical Blue Gaming, Inc. (RadBlue). All rights reserved. All

More information

Configure Eclipse with Selenium Webdriver

Configure Eclipse with Selenium Webdriver Configure Eclipse with Selenium Webdriver To configure Eclipse with Selenium webdriver, we need to launch the Eclipse IDE, create a Workspace, create a Project, create a Package, create a Class and add

More information

ORAAH Installation Guide. ORAAH Installation Guide

ORAAH Installation Guide. ORAAH Installation Guide ORAAH 2.7.1 Installation Guide i ORAAH 2.7.1 Installation Guide ORAAH 2.7.1 Installation Guide ii REVISION HISTORY NUMBER DATE DESCRIPTION NAME ORAAH 2.7.1 Installation Guide iii Contents 1 Introduction

More information

Using Hive for Data Warehousing

Using Hive for Data Warehousing An IBM Proof of Technology Using Hive for Data Warehousing Unit 1: Exploring Hive An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government Users Restricted Rights - Use,

More information

Open XAL Project Architecture

Open XAL Project Architecture Thomas Pelaia II, Ph.D. Open XAL Meeting November 14, 2013 Motivation Common Core is too large Need support for Site Specific Extensions and Plugins Need mechanism for assembling and sharing a project

More information

SecureAssist Enterprise Portal User Guide March 2016

SecureAssist Enterprise Portal User Guide March 2016 SecureAssist Enterprise Portal User Guide March 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

Appendix A: Courseware setup

Appendix A: Courseware setup Training Course System Requirements This class requires the following minimal machine configuration: Single-Core CPU, 2Ghz+ 2GB RAM 5 GB Free hard disk space Microsoft Windows XP or Vista Firefox 3.x or

More information

Hortonworks Data Platform

Hortonworks Data Platform Hortonworks Data Platform Workflow Management (August 31, 2017) docs.hortonworks.com Hortonworks Data Platform: Workflow Management Copyright 2012-2017 Hortonworks, Inc. Some rights reserved. The Hortonworks

More information

iway iway Big Data Integrator New Features Bulletin and Release Notes Version DN

iway iway Big Data Integrator New Features Bulletin and Release Notes Version DN iway iway Big Data Integrator New Features Bulletin and Release Notes Version 1.5.1 DN3502232.0517 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo,

More information

Logs and troubleshooting

Logs and troubleshooting HP OO 10 Community Content Logs and troubleshooting This document brings logs related information which will assist you in troubleshooting your HP OO configuration. It answers the following questions:

More information

Sonatype CLM - IDE User Guide. Sonatype CLM - IDE User Guide

Sonatype CLM - IDE User Guide. Sonatype CLM - IDE User Guide Sonatype CLM - IDE User Guide i Sonatype CLM - IDE User Guide Sonatype CLM - IDE User Guide ii Contents 1 Introduction 1 2 Installing Sonatype CLM for Eclipse 2 3 Configuring Sonatype CLM for Eclipse 5

More information

Watir-Webdriver Cucumber Automation Framework Setup Guide

Watir-Webdriver Cucumber Automation Framework Setup Guide Watir-Webdriver Cucumber Automation Framework Setup Guide Documentation version table: Document updating summary. Version Date Date Created 1.0 08/05/15 Index Page 1 November 18, 2015 Table of Contents

More information

Quark Documentation. Release SNAPSHOT. Qubole-dev

Quark Documentation. Release SNAPSHOT. Qubole-dev Quark Documentation Release 4.4.0-SNAPSHOT Qubole-dev Jul 13, 2017 Contents 1 Quick Start Guide 3 1.1 Installation................................................ 3 1.2 Configure Quark.............................................

More information

Maven Introduction to Concepts: POM, Dependencies, Plugins, Phases

Maven Introduction to Concepts: POM, Dependencies, Plugins, Phases arnaud.nauwynck@gmail.com Maven Introduction to Concepts: POM, Dependencies, Plugins, Phases This document: http://arnaud-nauwynck.github.io/docs/maven-intro-concepts.pdf 31 M!! What is Maven? https://maven.apache.org/

More information

Elixir Repertoire Designer

Elixir Repertoire Designer Aggregation and Transformation Intelligence on Demand Activation and Integration Navigation and Visualization Presentation and Delivery Activation and Automation Elixir Repertoire Designer Tutorial Guide

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Release 1.1 January 2015 IKAN Development N.V. Schaliënhoevedreef 20A 2800 Mechelen BELGIUM 2006-2015 IKAN Development N.V. No part of this document may be reproduced or transmitted

More information

ORAAH Installation Guide. ORAAH Installation Guide

ORAAH Installation Guide. ORAAH Installation Guide ORAAH 2.7.0 Installation Guide i ORAAH 2.7.0 Installation Guide ORAAH 2.7.0 Installation Guide iii Contents 1 Introduction. 1 2 Hadoop cluster setup. 1 3 First step with the ORAAH downloads. 1 4 Automatic

More information

FusionViewer Developer s Guide

FusionViewer Developer s Guide FusionViewer Developer s Guide February 26, 2007 1 Introduction...1 2 To Become a FusionViewer Developer...2 3 Subscribing to the Mailing List...2 4 Getting Started with FusionViewer CVS Repository...2

More information

vsphere Web Client SDK Documentation VMware vsphere Web Client SDK VMware ESXi vcenter Server 6.5.1

vsphere Web Client SDK Documentation VMware vsphere Web Client SDK VMware ESXi vcenter Server 6.5.1 vsphere Web Client SDK Documentation VMware vsphere Web Client SDK 6.5.1 VMware ESXi 6.5.1 vcenter Server 6.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

APEX Developer Guide. Sven van der Meer, Liam Fallon, John Keeney. Version SNAPSHOT, T11:44:57Z

APEX Developer Guide. Sven van der Meer, Liam Fallon, John Keeney. Version SNAPSHOT, T11:44:57Z APEX Developer Guide Sven van der Meer, Liam Fallon, John Keeney Version 2.1.0-SNAPSHOT, 2018-11-30T11:44:57Z Table of Contents 1. Build APEX from Source..................................................................................

More information

Denial-of-Service (DoS) Attacks in an SDN Environment

Denial-of-Service (DoS) Attacks in an SDN Environment Denial-of-Service (DoS) Attacks in an SDN Environment Contents Experiment Task Design:... 3 Submission:... 3 Start the Experiment... 3 Conduct the Experiment... 6 Section 1.1: Installing Dependencies...

More information

Eclipse Tutorial How To Write Java Program In Eclipse Step By Step Eclipse Tutorial For Beginners Java

Eclipse Tutorial How To Write Java Program In Eclipse Step By Step Eclipse Tutorial For Beginners Java Eclipse Tutorial How To Write Java Program In Eclipse Step By Step Eclipse Tutorial For Beginners Java We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our

More information

System Installation Guide

System Installation Guide System Installation Guide Guide to a successful system installation on an open source application stack. October 25 th, 2016 Version 1.3.3 Contact: DIGIT-EUSURVEY-OSS@ec.europa.eu 1 Content 1. Overview...

More information

Genesys Pulse Deployment Guide. Genesys Pulse User Interface Extensions

Genesys Pulse Deployment Guide. Genesys Pulse User Interface Extensions Genesys Pulse Deployment Guide Genesys Pulse User Interface Extensions 5/3/2018 Contents 1 Genesys Pulse User Interface Extensions 1.1 Introduction 1.2 How to Create Your Own Plug-in 1.3 Genesys Pulse

More information

RCMS 2 User Guide. Version 1.1. Grid Enabled Remote Instrumentation with Distributed Control and Computation

RCMS 2 User Guide. Version 1.1. Grid Enabled Remote Instrumentation with Distributed Control and Computation Grid Enabled Remote Instrumentation with Distributed Control and Computation RCMS User Guide Version:. Authors: M. Gulmini CI identifier xxxxxxx_d_xxxxxx Version. Revision History Date Version Description

More information