Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Talend Open Studio Cookbook
Talend Open Studio Cookbook

Talend Open Studio Cookbook: Getting familiar with Talend Open Studio will greatly enhance your data handling and integration capabilities. This is the perfect reference book for beginners and intermediates with a host of practical recipes that clarify even complex features.

eBook
₹799 ₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Talend Open Studio Cookbook

Chapter 2. Metadata and Schemas

This chapter contains a detailed discussion about metadata and Talend schemas and recipes that highlight some of the less used / less known features associated with schemas, along with more commonly used features, such as generic and fixed schemas:

  • Hand-cranking a built-in schema
  • Propagating schema changes
  • Creating a generic schema from existing metadata
  • Cutting and pasting schema information
  • Dropping schemas to empty components
  • Creating schemas from lists

Introduction

Managing metadata is one of the most important aspects of developing Talend jobs, and the most common form of metadata used within Talend jobs is the schema.

Schema metadata

For successful development of jobs, it is essential that the metadata defined for a data source accurately describes the format of its underlying data. Failure to correctly define the data will result in numerous errors and waste of time tracking down problems with data formats that could otherwise be avoided.

Talend provides a host of wizards for capturing metadata from a variety of data sources such as database tables, delimited files, and Excel worksheets and stores them within its built-in metadata repository.

Schemas

Talend stores metadata definitions in schemas, which may be built in to individual components or stored in its metadata repository, as shown in the following screenshot:

Schemas

In general, it is best practice to define source and target metadata using a repository schema and mid-flow metadata as a...

Hand-cranking a built-in schema

In this recipe, we are presented with a CSV file that does not have a heading row and needs to create a schema for the data. This is a basic recipe with which most readers should be familiar: however, it does provide a framework for discussion of some of the more important principles of Talend schemas.

The record we will be defining is as follows:

John Smith,27/11/1990,2012-01-10 10:24:54.953

As you can see this contains the fields; first name, last name, date of birth, timestamp, and age. Note that age is an empty string.

Getting ready

Open a new Talend Job (jo_cook_ch02_0000_handCrankedSchema), so that the right-hand palette becomes available.

How to do it…

  1. Drag a tFileInputDelimited component from the palette, and open it by double clicking it.
  2. Click the Edit Schema button (), shown in the following screenshot, to open the schema editor:
    How to do it…
  3. Click the + button to add a column:
    How to do it…
  4. Type name into the column, and set the length to 50.
  5. Click the + button three...

Propagating schema changes

Often during development, it is necessary to change schemas by adding, removing, or re-ordering columns. This often is a very onerous task, especially if a schema is used in multiple jobs.

As discussed earlier in this chapter, storing schemas in the metadata enables the schema to be re-used. If a shared schema is changed, then Talend will prompt to find out if the changes should be applied to all jobs.

If the change is performed, then the next time that the job is opened, the component using the schema will normally be highlighted as in error, because the schema no longer matches.

Talend provides mechanisms within the schema dialogues that takes some of the pain away from ensuring that changes are assimilated into all the jobs.

Getting ready

Open the Talend Job jo_cook_ch02_0010_propagateSchema so that the right-hand palette becomes available. Then, from the metadata palette, open the Generic schema sc_cook_0010_genericCustomer.

How to do it…

  1. Add a new field emailAddress...

Creating a generic schema from the existing metadata

Any schema can be easily converted into a generic schema to enable it to be re-used. The following recipe shows two methods of creating generic schemas; the first from a pre-existing schema in the metadata repository and the second from a built-in schema.

How to do it…

From repository schema

  1. Open repository schema fd_cook_0020_customerDelimited that can be found in the delimited schemas section under Chapter2, ensuring that you click the metadata, rather than the parent schema.
    How to do it…
  2. Right-click metadata, and then select copy to Generic schema. This creates a schema fd_cook_0020_customerDelimited.
  3. Move the new schema to the chapter 2 folder and double click it to edit it.
  4. Change the name to sc_cook_0020_genericCustomer1.

From a built-in schema

  1. Open the Talend Job jo_cook_ch02_0020_builtInSchema and open the tFileOutput Delimited component.
  2. Click the highlighted button, shown in the following screenshot:
    How to do it…
  3. This will open a windows file save dialogue...

Cutting and pasting schema information

This technique is a real time saver, but isn’t always immediately obvious, because the schema dialogue does not contain a right-click option.

Getting ready

Make a copy of the job jo_cook_ch02_0020_builtInSchema, rename it to jo_cook_ch02_0030_copySchema, and open the new job.

How to do it…

  1. Drag a tFileOutputExcel component from the right-hand palette.
  2. Open tFileOutputDelimited, and then open the schema.
  3. Click the left-hand panel and press Ctrl+A to select all the columns.
  4. Press Ctrl+C to copy the highlighted columns.
  5. Open the tFileOutputExcel component, and then open the schema. It should be blank.
  6. Press CTRL+V to paste the columns.

How it works…

Talend allows the standard windows shortcut keys to be used to cut and paste column information between schemas.

There’s more…

You can also use Ctrl+left mouse button to highlight individual columns and Shift+left mouse button to highlight a range as per the usual Windows conventions...

Introduction


Managing metadata is one of the most important aspects of developing Talend jobs, and the most common form of metadata used within Talend jobs is the schema.

Schema metadata

For successful development of jobs, it is essential that the metadata defined for a data source accurately describes the format of its underlying data. Failure to correctly define the data will result in numerous errors and waste of time tracking down problems with data formats that could otherwise be avoided.

Talend provides a host of wizards for capturing metadata from a variety of data sources such as database tables, delimited files, and Excel worksheets and stores them within its built-in metadata repository.

Schemas

Talend stores metadata definitions in schemas, which may be built in to individual components or stored in its metadata repository, as shown in the following screenshot:

In general, it is best practice to define source and target metadata using a repository schema and mid-flow metadata as a Built...

Hand-cranking a built-in schema


In this recipe, we are presented with a CSV file that does not have a heading row and needs to create a schema for the data. This is a basic recipe with which most readers should be familiar: however, it does provide a framework for discussion of some of the more important principles of Talend schemas.

The record we will be defining is as follows:

John Smith,27/11/1990,2012-01-10 10:24:54.953

As you can see this contains the fields; first name, last name, date of birth, timestamp, and age. Note that age is an empty string.

Getting ready

Open a new Talend Job (jo_cook_ch02_0000_handCrankedSchema), so that the right-hand palette becomes available.

How to do it…

  1. Drag a tFileInputDelimited component from the palette, and open it by double clicking it.

  2. Click the Edit Schema button (), shown in the following screenshot, to open the schema editor:

  3. Click the + button to add a column:

  4. Type name into the column, and set the length to 50.

  5. Click the + button three more times to...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • A collection of exercises covering all development aspects including schemas, mapping using tMap, database and working with files
  • Get your code ready for the production environment by including the use of contexts and scheduling of jobs in Talend
  • Includes exercises for debugging and testing of code
  • Many additional hints and tips regarding the exercises and their real-life applications

Description

Data integration is a key component of an organization's technical strategy, yet historically the tools have been very expensive. Talend Open Studio is the world's leading open source data integration product and has played a huge part in making open source data integration a popular choice for businesses worldwide.This book is a welcome addition to the small but growing library of Talend Open Studio resources. From working with schemas to creating and validating test data, to scheduling your Talend code, you will get acquainted with the various Talend database handling techniques. Each recipe is designed to provide the key learning point in a short, simple and effective manner.This comprehensive guide provides practical exercises that cover all areas of the Talend development lifecycle including development, testing, debugging and deployment. The book delivers design patterns, hints, tips, and advice in a series of short and focused exercises that can be approached as a reference for more seasoned developers or as a series of useful learning tutorials for the beginner.The book covers the basics in terms of schema usage and mappings, along with dedicated sections that will allow you to get more from tMap, files, databases and XML. Geared towards the whole lifecycle, the Talend Open Studio Cookbook shows readers great ways to handle everyday tasks, and provides an insight into all areas of a development cycle including coding, testing, and debugging of code to provide start-to-finish coverage of the product.

Who is this book for?

Talend Open Studio Cookbook is principally aimed at relative beginners and intermediate Talend Developers who have used the product to perform some simple integration tasks, possibly via a training course or beginner's tutorials.

What you will learn

  • Manipulate schemas quickly and easily
  • Validate your data and create test data
  • Use Java code within Talend
  • Debug your Talend code
  • Use tMap effectively
  • Create and manage files including complex file formats
  • Access queues, web services, and XML within Talend
  • Deploy, as well as schedule your Talend code

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 25, 2013
Length: 270 pages
Edition : 1st
Language : English
ISBN-13 : 9781782167273
Vendor :
Talend
Category :
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Oct 25, 2013
Length: 270 pages
Edition : 1st
Language : English
ISBN-13 : 9781782167273
Vendor :
Talend
Category :
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
₹800 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
₹4500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₹400 each
Feature tick icon Exclusive print discounts
₹5000 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₹400 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 10,949.97
Getting Started with Talend Open Studio for Data Integration
₹3649.99
Talend Open Studio Cookbook
₹3649.99
Data Visualization with D3.js Cookbook
₹3649.99
Total 10,949.97 Stars icon
Banner background image

Table of Contents

15 Chapters
1. Introduction and General Principles Chevron down icon Chevron up icon
2. Metadata and Schemas Chevron down icon Chevron up icon
3. Validating Data Chevron down icon Chevron up icon
4. Mapping Data Chevron down icon Chevron up icon
5. Using Java in Talend Chevron down icon Chevron up icon
6. Managing Context Variables Chevron down icon Chevron up icon
7. Working with Databases Chevron down icon Chevron up icon
8. Managing Files Chevron down icon Chevron up icon
9. Working with XML, Queues, and Web Services Chevron down icon Chevron up icon
10. Debugging, Logging, and Testing Chevron down icon Chevron up icon
11. Deploying and Scheduling Talend Code Chevron down icon Chevron up icon
12. Common Mistakes and Other Useful Hints and Tips Chevron down icon Chevron up icon
A. Common Type Conversions Chevron down icon Chevron up icon
B. Management of Contexts Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.4
(23 Ratings)
5 star 65.2%
4 star 21.7%
3 star 4.3%
2 star 4.3%
1 star 4.3%
Filter icon Filter
Top Reviews

Filter reviews by




Fabio Apr 21, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
As Data Warehouse developer and engineer, I've been extensively used Talend for many years. Apart from the basic tutorials provided by Talend, however, my only source for learning has always been the proactive Talend online community.This book doesn't digress too much in theory and provides a full, comprehensive view on many every-day, concrete situations and their corresponding solving patterns. The learning-by-doing "recipe" approach followed by the book makes it easier to read and understand it. The book also provides a good foundation of XML principles; unfortunately lacks a chapter about the development of custom components, a scenario that is more likely to occur than expected.Prerequisites for the book are a basic knowledge of Java or any c-like object-oriented programming language, as well as a rudimentary understanding of relational concepts.I highly recommend this book for both IT experts and novices with a focus on system and data integration.​
Amazon Verified review Amazon
Reginald Joseph Nov 11, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The author has clearly articulated on the basic. A must for any beginner to Talend.
Amazon Verified review Amazon
EDWIN D GARCIA SUAREZ Oct 22, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Excellent product! I used the book for learning talend.
Amazon Verified review Amazon
RASSINOUX PHILIPPE Aug 03, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Le livre complète très bien l'aide en ligne de la suite Talend.Les fichiers d'exemples "cookbook" à charger depuis le site de l'éditeur ont été soigneusement préparés.Travailler avec ce livre est un vrai plaisir.
Amazon Verified review Amazon
Steve May 05, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great little insider to get you moving.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.