Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
273 views

Using Pentaho Kettle, how do I automatically retry rest requests which fail due to connection hiccups?

How can we make Pentaho retry rest requests on connection errors? We have a Pentaho BI system which, among numerous data sources, is querying a particular REST api for over 20k query variations each ...
8
votes
1answer
2k views

Using Pentaho Kettle, how do I load multiple tables from a single table while keeping referential integrity?

Need to load data from a single file with a 100,000+ records into multiple tables on MySQL maintaining the relationships defined in the file/tables; meaning the relationships already match. The ...
7
votes
3answers
2k views

Rhino ETL opinions vs Kettle and SSIS [closed]

I am considering a tool for an ETL solution that has high daily demand and requires heavy business logic processing. I've tried kettle and SSIS so far, and also want to test for Rhino ETL. I don't ...
4
votes
1answer
70 views

Format of dates in log files PDI / Kitchen 4.0.1

Inherited a set of jobs, and the logging to the filesystem begins with format {SEV} MM-dd HH:MM:SS, where I need to have the year as part of the timestamp. The only log4j configs I can find are part ...
4
votes
1answer
83 views

Kettle: Filling field with sequence without conflict

I have a data stream with the following structure user_id (integer) user_name (string) The user_id is anything between 100 and 65536. I want to add a target_user_id (integer) field according to the ...
3
votes
3answers
612 views

Data recognition, parsing, filtering, and transformation — GUI?

Looking for a non-cloud based open source app for doing data transformation; though for a killer (and I mean killer) app just built for data transformations, I might be willing to spend up to $1000. ...
2
votes
1answer
119 views

How does one handle denormalized data with kettle?

Kettle has "row normalizer" and "row denormalizer" steps, e.g. http://wiki.pentaho.com/display/EAI/Row+Normalizer but they require that you manually configure the fields in the denormalized table. I ...
2
votes
1answer
573 views

Pentaho: Best way to convert a date into a drill-down-able cube dimension?

My datawarehouse table just contains a single date SQL column, but I want to be able to drill down using the usual year/quarter/month/day levels. I could manually create new column using Pentaho ...
2
votes
4answers
186 views

Is it better to do a select count then if before doing a delete or just blindly call delete?

I'm looking for a best practice / thoughts on if it is better to do a select count and checking if the result is > 0 before calling a delete or if it would be better to just blindly fire a delete ...
2
votes
1answer
140 views

Waiting for Transformations in a Job

I am working with Pentaho Data Integration (aka Kettle) and I have several Transformations, let's call them A, B, C, D, E. B depends on A, D depends on C and E depends on B and D. In a job I'd like to ...
2
votes
2answers
863 views

Where is Pentaho Kettle's architecture?

Where can I find Pentaho Kettle architecture? I'm looking for a short wiki, design document, blog post, anything to give a good overview on how things work. This question is not meant for specific ...
1
vote
2answers
218 views

Split this csv/xls into separate files based on two columns?

I have a 35 MB Excel file with these columns: Index, Name, Year, AgeGroup1, AgeGroup2, AgeGroup3 [...] 1, Sweden, 1950, 20, 25, 27 2, Norway, 1950, 22, 27, 28 2, Sweden, 1951, 24, 24, 22 I'd like ...
1
vote
0answers
233 views

How to merge 2 csv files by columns in spoon, pentaho, while managing data conversion?

I'm facing the following problem: I have two inputs: 1) I have a csv base file with 35 columns and their proper headers. 2) I have a variety of given files, not controlled by me, that may or may not ...
1
vote
3answers
143 views

Wrong order of SQL statements on InnoDB from Kettle

In Kettle, I use the following logic in a transformation, given some Strings X and Y as input: [User Defined Java Expression] Generate ID [Insert / Update] Update/Insert table set id = generatedId, ...
1
vote
1answer
278 views

Kettle Internal.Job.Filename.Directory

I am new to Pentaho Kettle, what is Internal.Job.Filename.Directory? Is it my SPoon.bat folder? or the job/xfrm folder i created? Is there a way i can change it to point to particular folder? I am ...
1
vote
1answer
345 views

Kettle Load csv data into multiple tables

I need to load 2 database tables from a single csv file containing mixed data. I also want to maintain parent child relations using foreign key relation. Below is example of input csv file, ...
1
vote
1answer
312 views

How to uncompress and import a .tar.gz file in kettle?

I am trying to figure out how to create a job/transformation to uncompress and load a .tar.gz file. Does anyone have any advice for getting this to work?
1
vote
1answer
575 views

Pentaho Kettle - batch script doesn't produce output

I've written a very simple pentaho kettle script that works fine when I launch it from the spoon ide. It takes in a csv file and writes it to a text file and an xml file. However, if I run it as a ...
1
vote
1answer
2k views

Pentaho kettle : how to execute “insert into … select from” with the sql script step?

I am discovering Pentaho DI and i am stuck with this problem : I want to insert data from a csv file to a custom DB, which does not support the "insert table" step. So i would like to use the sql ...
1
vote
2answers
367 views

RegEx to Remove Unwanted text

I'm still kind of new to RegEx in general. I'm trying to retrieve the names from a field so I can split them for further use (using Pentaho Data Integration/Kettle for the data extraction). Here's ...
0
votes
0answers
14 views

Use JSON Input step to process uneven data

I'm trying to process the following with an JSON Input step: {"address":[ {"AddressId":"1_1","Street":"A Street"}, {"AddressId":"1_101","Street":"Another Street"}, ...
0
votes
1answer
32 views

How to split values of an column in Pentaho Spoon?

I want to create a Spoon transformation which will work on multiple values of an column. Input to my transformation is an CSV file. In that CSV file there's one column named 'Technology' which ...
0
votes
0answers
26 views

UserAgentUtils always giving null browser version

I'm using the UserAgentUtils Java library to extract user agent details from the user agent string of browsers during a PDI transform, but no matter what I do I always get back a null version from the ...
0
votes
0answers
52 views

Pentaho shell script with “Copy previous results to args?” = Y and “Execute for every input row?” = Y escapes parameters incorrectly in linux

I have seen references to similar issues, but not this exact one. I have a simple Pentaho Job with four steps. The first is a start. The second is a transform, that makes a DB query call and ...
0
votes
1answer
58 views

Grouping excel output in Pentaho Kettle Spoon

How to group the Excel output by the column value in Pentaho Kettle Spoon? The idea is: If I have a table client cost ------------ a 10 a 20 b 15 b 5 a 30 to receive Excel ...
0
votes
0answers
35 views

How to migrate tables with consistent foreign keys in Pentaho Kettle?

I have csv file with data name, state . I want to put those data to tables: Table1{id[PK], name} State{table1_id[FK], state}. Main problem here is to how store newly created Table1 id and use ...
0
votes
1answer
107 views

Kettle: Multiple putRows() in processRow() correctly?

I'm processing a /etc/group file from a system. I load it with CSV input step with the delimiter :. It has four fields: group,pwfield,gid,members. The members field is a comma separated list with ...
0
votes
1answer
47 views

How can I group steps in Kettle/Spoon?

My Kettle/Spoon (4.1.0) transformation is getting pretty large, it has 30 steps so far. It is using 7 data sources and will produce about 5 outputs. I want to enclose parts of the graph into single ...
0
votes
0answers
29 views

Can I reassign the Ctrl-Space hotkey in KETTLE?

I'm using Pentaho KETTLE (Data Integration) 3.2.0 and in Spoon the combination Crtl-Space brings up the variable list. The problem is Crtl-Space is assigned to my screen saver and I cannot change it. ...
0
votes
0answers
82 views

Kettle - Creating and executing CombinationLookup inside User Defined Java Class

I need to use CombinationLookup class inside User Defined Java Class, im trying to do something similar to: public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws ...
0
votes
0answers
87 views

JNDI exmple for connecting to a named instance of MsSQL

We're using Pentaho Data Integration(Open source ETL tool) and are trying to use a JNDI connection to connect to a MS SQL 2005 database. If we use a default instance on the server it worked fine, ...
0
votes
0answers
81 views

Pentaho, Kettle httpclient.CircularRedirectException

I have a problem when using the "webservice step" in pentaho-kettle. If I try to get a WSDL-File from a Webservice, which is already widely used (should not be a real circularRedirect) I get an ...
0
votes
2answers
47 views

DatabaseLookup hangs on specific values

I use Kettle for some transformations and ran into a problem: For one specific row, my DatabaseLookup step hangs. It just doesn't give a result. Trying to stop the transformation results in a never ...
0
votes
1answer
108 views

multiple strings as argument in table input

I'm trying to use SQL like select column from table where column in (?) as ? should be concatenation of strings. I did script, that concatenates rows in something like 'string','secondstring' and so ...
0
votes
1answer
166 views

Are null values in the first column preventing import of Excel files in Pentaho Spoon?

I am trying to import Excel files using the 'Excel Input' transformation in Pentaho Kettle/Spoon. Spoon spits out a 'NullPointerException' for row 67, which has a null value in the first column. (The ...
0
votes
2answers
273 views

Pentaho-kettle: Need to create ETL Jobs dynamically based on user input

In my application, user can specify the format of their file. Based on user input we dynamically create SSIS package. http://lakshmik.blogspot.com/2005/05...eate-ssis.html Dynamically created SSIS ...
0
votes
1answer
46 views

pentaho spoon - change owner of created dir/files

is there an easy way to create files/directories with a different owner to the account being used to run pentaho? Thanks in advance.
0
votes
1answer
45 views

kettle / auto-referencing table

I have an excel sheet with poeple, each people has a father and a mother that is in the same poeple sheet. My exel table looks like that : poeple --- father --- mother john -------- tony ...
0
votes
1answer
369 views

Pentaho Spoon - Validate Fixed Width Input File Format

I'm trying to process a fixed width input file in pentaho and validate the format. The file will be a mixture of strings, numbers and dates. However when attempting to process a number field that has ...
0
votes
1answer
123 views

Is there a way to load a Gzipped file from Amazon S3 into Pentaho (PDI / Spoon / Kettle)?

Is there a way to load a Gzipped file from Amazon S3 into Pentaho Data Integration (Spoon)? There is a "Text File Input" that has a Compression attribute that supports Gzip, but this module can't ...
0
votes
1answer
122 views

Migrate Kettle from 3.2 to 4.1

Is there any documentation/tutorial on how to migrate Kettle in an application (for executing transformations, not for creating them) from version 3.2 to the current 4.1? I could not find any useful ...
0
votes
2answers
427 views

Pentaho Spoon - Wait for File - Wildcards

I know i've asked a couple of pentaho related questions lately but am rushing to evaluate it in a short timeframe :) My latest obstacle I am trying to overcome is that I am building a job that will ...
0
votes
1answer
437 views

Pentaho Spoon - Output to multiple files based on field content

thanks in advance for taking the time to look at this. I'm new to pentaho and have been attempting splitting the results of a transform into multiple files based on the value of a specific field ...
0
votes
1answer
213 views

How to transform XML to match XSD or DTD?

I have a Pentaho Kettle (PDI) transformation that starts with a Table Output step executing basic SQL. This step hops to an XML Output step that creates an XML file. The xml format looks like this: ...
0
votes
1answer
324 views

Pentaho Spoon Text File Output Additional Information Header

I am using the Text File Output step to create a CSV file, however i need to insert some additional rows of information at the top of the file. I have been able to have another transform output this ...
0
votes
2answers
80 views

Is it possible to use Kettle to connect to a paradox 4.5 database?

I’m new to Pentaho, and I need to create a transformation that reads input from Paradox tables. We’re using a really old version of Paradox – It’s 4.5. The tables that I need to load have .db ...
0
votes
1answer
148 views

Want to import data from old database(mysql) to new database(mysql) in kettle

Hi i have a scenerio i have a database dump which i want to import in my new rails web applications database i have used activerecord etl gem but now the demand is that use kettle etl for importing ...
0
votes
1answer
110 views

Pentaho Kettle sql uid

I need to load data from a csv to database. Those tables also used by application code, and table primary keys are generated by hibernate uid. How do I create these primary key uid from kettle? I ...
0
votes
1answer
272 views

How to expose Kettle transformation as a service?

What would it take to expose a Kettle transformation as a (web) service? REST, SOAP, anything will do.
0
votes
1answer
147 views

unable to open .bat files for pan and carte for kettle 4.0.1 stable community version

Hhi all, I'm using kettle4.0.1 communty version, here iam comfortable with spoon, but for running jobs and all i need to use pan and carte, my problem is other than spoon.bat niether of pan.bat nor ...

1 2