Versions Compared

Key

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

Introduction 

A plugin that can efficiently export data from Oracle to be used Hydrator pipelines.  Oracle includes command line tools to export data  that can be utilized to perform this task.  

 

Use-case
A Hydrator User would like to export oracle data onto hdfs or local file system using an action plugin that does not require a JDBC connection to perform the export from Oracle.

User Stories

  • As a Hydrator User I want to export data from Oracle to be used in my hydrator Pipeline.
  • As a Hydrator User I want a Oracle Export plugin that exports data efficiently using existing existing Oracle tools. 
  • As a Hydrator User I want the export data capability of the Oracle plugin to be based on a sql query that I issue.  
  • User should be able to specify credentials.
  • Passwords should not be viewable in plain text from inside pipeline viewer or hydrator studio.  
  • User should be able to specify Oracle Instance
  • User should be able to specify location of EXP Utility.   
  • User should be able to specify type of output.
  • User should be able to specify location of output files.  
  • User should know of connectivity errors, or malformed queries/output identifier.   

Example

User wants to export the data from test table using filter on name='cask' i.e Select * from test where name='cask'

Plugin configurations:

"oracleServerHostname": "example.com",
"oracleServerPort": "22",
"oracleServerUsername": "oracle",
"oracleServerPassword": "oracle@123",
"dbUsername": "system",
"dbPassword": "cask",
"oracleHome": "/u01/app/oracle/product/11.2.0/xe",
"oracleSID": "cask",
"queryToExecute": "select * from test where name='cask'"
"pathToWriteFinalOutput" : "/tmp/data.csv"
"format" : "csv"

Implementation Tips

Design 

Design:

Code Block
titleOracle export json
{
    "name": "OracleExportAction",
      "plugin": {
        "name": "OracleExportAction",
        "type": "action",
        "label": "OracleExportAction",
        "artifact": {
          "name": "core-plugins",
          "version": "1.4.0-SNAPSHOT",
          "scope": "SYSTEM"
      },
      "properties": {
          "oracleServerHostname": "example.com",
          "oracleServerPort": "22",
          "oracleServerUsername": "oracle",
          "oracleServerPassword": "oracle@123",
          "dbUsername": "system",
          "dbPassword": "cask",
          "oracleHome": "/u01/app/oracle/product/11.2.0/xe",
          "oracleSID": "cask",
          "queryToExecute": "select * from test where name='cask'"
          "pathToWriteFinalOutput" : "/tmp/data.csv"
          "format" : "csv"
      }
}
oracleServerHostname:Host name of the remote DB machine 
oracleServerPort:Port of the remote DB machine.Defaults to 22
oracleServerUsername:User name for remote DB host
oracleServerPassword:Password for remote DB host
dbUsername:User name to connect to oracle DB
dbPassword:Password to connect to oracle DB
oracleHome:Path of the ORACLE_HOME
oracleSID:Oracle SID
queryToExecute: Query to be executed to export
pathToWriteFinalOutput: Path where output file to be exported
format: Format of the output file

 

Plugin would perform below stepsrun below sequence of commands in one session:

1.SSH to the box using the provided $serverUsername and $userPassword.

2.Run below commands:

a.export ORACLE_HOME = $oracleHome;b.export and ORACLE_SID = $oracleSID

c2. The plugin would internally create a temporary sql file with the above contents and run the below command:

Eg - /u01/app/oracle/product/11.2.0/xe/bin/sqlplus -s system/cask@cask  @/

script file(/tmp/test.sql

content of test.sql would be:) and add below content.We can take the path of the tmp file as a config from the user or use the home folder of the logged in user where program would always have the access.

set colsep ","
set linesize 999910000
set trimspool on
set heading offnewpage none
set pagesize 0
set wrap off
set feedback heading off
spool /tmp/results.csvon
select * from test where name='cask';
spool off
exit

NOTE : Cannot directly use spool in sqlplus prompt since it prints the query as well along with the data in the final output file.

d. Copy the exported file from the remote machine to the folder specified by the user on the current machine.

e. Remove temporary .sql and dump file.

 3.execute $oracleHome/bin/sqlplus -s $dbUsername/$dbPassword@$oracleSID  @/tmp/test.sql

4.Read the outstream and write into the specified output file on local.

 

Table of Contents

Table of Contents
stylecircle

Checklist

  •  User stories documented 
  •  User stories reviewed 
  •  Design documented 
  •  Design reviewed 
  •  Feature merged 
  •  Examples and guides 
  •  Integration tests 
  •  Documentation for feature 
  •  Short video demonstrating the feature