Tuesday, December 23, 2014

Useful Configuration and Log Variables

Talend has various global variables which can be use for logging and configuration propose. I have identified them and listed down below, you can use them as it is in expressions or costume code component.

  • pid

  • rootPid

  • fatherPid

  • clientHost

  • defaultClientHost

  • contextStr

  • startTime

  • isChildJob


These variables name itself suggesting the use of that particular variable.

You can use it like.

context.ProcessID=pid;

 

Friday, December 19, 2014

Creating XML metadata

This post i will show you how to create XML metadata using Talend and simple use of tFileinputXML component.

List of topics covering in this post.

  1. Simple XMl Parsing using tFileInputXML.

    1. MetatData Creation.

    2. XPATH finding.

Prerequisite

  1. Talend Open Studio

  2. XML File.

Source XML file for demonstration.

<?xml version="1.0"?>
<PurchaseOrder PurchaseOrderNumber="99503" OrderDate="1999-10-20">
<Address Type="Shipping">
<Name>Ellen Adams</Name>
<Street>123 Maple Street</Street>
<City>Mill Valley</City>
<State>CA</State>
<Zip>10999</Zip>
<Country>USA</Country>
</Address>
<Address Type="Billing">
<Name>Tai Yee</Name>
<Street>8 Oak Avenue</Street>
<City>Old Town</City>
<State>PA</State>
<Zip>95819</Zip>
<Country>USA</Country>
</Address>
<DeliveryNotes>Please leave packages in shed by driveway.</DeliveryNotes>
<Items>
<Item PartNumber="872-AA">
<ProductName>Lawnmower</ProductName>
<Quantity>1</Quantity>
<USPrice>148.95</USPrice>
<Comment>Confirm this is electric</Comment>
</Item>
<Item PartNumber="926-AA">
<ProductName>Baby Monitor</ProductName>
<Quantity>2</Quantity>
<USPrice>39.98</USPrice>
<ShipDate>1999-05-21</ShipDate>
</Item>
</Items>
</PurchaseOrder>

Step 1: Create XML Metadata using Talend.

  1.  Go to the Talend repository Metadata node and right click on File XML .
    Create XML Metdata Talend 

  2. Provide valid name for metadata.

  3. In third Step we have to find out which node should be our XPATH LOOP Expression? for that you can find out the leaf node or last node of XML, in above file <Item> is the leaf node, so we will take that one. see the screen for mapping.



XML Metatdata 

  1. Just Drag and drop all required columns from XML to see above

  2. Once column selection completes then Click on preview button to review the extracted result.

  3. If every thing looks fine then proceed with finish button which will take you to the next screen with generated schema, here you can change data type, column name, length if required.

Generated XML Metadata

Now our XML metadata ready to use, then just drag and drop xml schema to job design it will ask two component

  1. tFileinputXML.

  2. tExtractXMLField.

For now we will use tFileinputXML to extract XML data, lets drop that.

Connect tlogRow to tFileinputXML component and execute the job you see the result, if result not displayed then repeat above steps.

This post we have created

  • XML Metadata

  • Simple XML parsing.

  • Simple use of tFileinputXML component.

Monday, August 25, 2014

Set/change Workspace default location

To set this workspace location, edit "config.ini" file in "configuration" folder at root of Talend installation folder.
In this file you can use variable "osgi.instance.area" or "osgi.instance.area.default" to specify your workspace location.
Follow below steps to complete this activity.

Step 1. Go to the Talend Installed directory then configuration folder like C:\Talend\TOS_DI-Win32-........\configuration.


Step 2. Open config.ini file.

Step 3. Write down below code at first line of file.

osgi.instance.area=provide your workspace path.

e.g.

osgi.instance.area=C:/Talend/TOS_DI-Win32...../workspace

Step 4. Save config.ini file keep open.

Step 5. Restart Talend, once you see first window then remove above line of code, save and close the config.ini file.

 

Contact Us

Name

Email *

Message *