Reputation: 101
I am working in Pentaho Data Integretion. We have developed the transformations and Job in spoon. We want to move our code on server and server is Centos.
In Centos, we are getting errors while installing UI of Pentaho. We are able to install kitchen on Centos.
Can we run our transformations and job directly with Kitchen? If yes, how?
Waiting for reply.
Upvotes: 0
Views: 847
Reputation: 395
You can try to use Carte on centos. http://wiki.pentaho.com/display/EAI/Carte+User+Documentation
So you start carte server and run your jobs and transformations at this carte server.
Upvotes: 0
Reputation: 184
if you have to run transformations and jobs using kitchen or pan commands, then there is no need to install the Pentaho, just download the zip file and unzip on centos machine. you have set the JAVA_HOME environmental variable
Upvotes: 1
Reputation: 316939
Quoting the docs at
Kitchen is a program that can execute jobs designed by Spoon in XML or in a database repository. Usually jobs are scheduled in batch mode to be run automatically at regular intervals.
The docs show examples for running jobs via the kitchen.sh
script:
This example runs a job from file on a windows platform:
kitchen.bat /file:D:\Jobs\updateWarehouse.kjb /level:Basic
This example runs a job from file on a Linux box:
kitchen.sh -file=/PRD/updateWarehouse.kjb -level=Minimal
This example runs a job from the repository on a windows platform: (Enter on a single line without returns...)
kitchen.bat /rep:"Production Repository" /job:"Update dimensions" /dir:/Dimensions /user:matt /pass:somepassword123 /level:Basic
So I'd say the answer is yes, it's possible to run your transformations and job directly with Kitchen.
Upvotes: 5