简体   繁体   English

Talend Open Studio-如何进行下一步

[英]Talend open studio - how to proceed with next step

Hi Im new to Talend Open Studio , My question is, Im able to create a Job and executing and getting output . 嗨,我是Talend Open Studio的新手,我的问题是,我能够创建Job并执行并获取输出 Say for an example following is my Job , Now how can i proceed with the next step , That is how can i get the code or convert it into jar or any kind of executable to get my job done every time. 例如,下面是我的工作,现在我该如何继续下一步 ,那就是如何获取代码或将其转换为jar或任何类型的可执行文件以每次完成我的工作。

在此处输入图片说明

Above is my Job , And i want to automate this that is i need to run this for every hour or on the fly basis . 上面是我的工作,我想自动完成这就是我需要每个小时或即时运行这个。 How can i do with the further steps . 我该如何处理进一步的步骤。

As of now i have created my Job how can i proceed with the next step 截至目前,我已经创建了我的工作,该如何继续下一步

Thanks 谢谢

The enterprise platforms of Talend come with Talend Administration Center that enables you to manage your jobs from a web interface and set up CRON jobs or other types of triggers. Talend的企业平台随附Talend管理中心,使您可以从Web界面管理作业并设置CRON作业或其他类型的触发器。 I'm not actually sure if this comes with the Talend Open Studio versions though. 我实际上不确定这是否与Talend Open Studio版本一起提供。

An alternative is to export the job as a .jar/.war file and then have a scheduler or CRON job execute it every hour. 另一种选择是将作业导出为.jar / .war文件,然后让调度程序或CRON作业每小时执行一次。

Right click on your job and there's an option called "Export Job" or "Build Job" (depending on the version you're using). 右键单击您的作业,然后有一个名为“导出作业”或“构建作业”的选项(取决于您使用的版本)。 This will generate the java code, and puts it into a zip. 这将生成Java代码,并将其放入zip。 All you need to do is edit the zip, open it, and in the subfolder there will be a .bat and .sh file, its basically starting a JavaVM with parameters set, and starts your job. 您需要做的就是编辑zip文件,将其打开,然后在子文件夹中将有一个.bat和.sh文件,它基本上是启动带有参数集的JavaVM并开始工作的。

You can schedule this bat/sh in windows/linux to run every hour also if you double click on it, you can execute on the fly. 您可以安排Windows / Linux中的bat / sh每小时运行一次,如果双击它,则可以即时执行。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM