Talend构建作业-编译问题

时间:2019-05-14 11:37:55

标签: java maven etl talend tac

我一直在公司中使用Talend数据集成工具(许可版本)。但是,由于其许可证价格太高,我们被告知要使用Talend Open Studio(免费开源版本)。因此,我们必须将我们现有的所有作业移至Free Version的工作区。免费版本中不包含某些组件,因此我使用了可能的替代方式来实现类似的功能。现在,我正在尝试从Talend构建作业,我遇到了编译错误例行程序,我无法建立要测试的工作。有人可以帮我解决这个问题吗?

我试图手动从作业的源文件中删除依赖项(导入包),但是每次构建作业时,它都会自动导入到源代码中。

我收到此错误:

org.talend.commons.exception.PersistenceException: org.talend.designer.runprocess.ProcessorException: java.lang.Exception: [ERROR] COMPILATION ERROR : 
[ERROR] C:\Program Files\TOS_DI-Win32-20181026_1147-V7.1.1\workspace\MASTERDB\poms\jobs\process\Standard\GENERIC\Finalization_Scripts\is_golden_record\datablock_is_golden_record\company_identifier_is_golden_0.1\src\main\java\masterdb\company_identifier_is_golden_0_1\company_identifier_is_golden.java:[21] 
[ERROR] COMPILATION ERROR : 
[ERROR] C:\Program Files\TOS_DI-Win32-20181026_1147-V7.1.1\workspace\MASTERDB\poms\jobs\process\Standard\Factset\Automated_Jobs\factset_load_company_name_automated_0.1\src\main\java\masterdb\factset_load_company_name_automated_0_1\Factset_Load_Company_Name_Automated.java:[20] 
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile (default-compile) on project company_identifier_is_golden: Compilation failure
[ERROR] C:\Program Files\TOS_DI-Win32-20181026_1147-V7.1.1\workspace\MASTERDB\poms\jobs\process\Standard\GENERIC\Finalization_Scripts\is_golden_record\datablock_is_golden_record\company_identifier_is_golden_0.1\src\main\java\masterdb\company_identifier_is_golden_0_1\company_identifier_is_golden.java:[21]
[ERROR] import routines.TalendDataGenerator;
[ERROR] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[ERROR] The import routines.TalendDataGenerator cannot be resolved
[ERROR] 1 problem (1 error)
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :company_identifier_is_golden

    at org.talend.repository.ui.wizards.exportjob.scriptsmanager.BuildJobManager.buildJob(BuildJobManager.java:298)
    at org.talend.repository.ui.wizards.exportjob.scriptsmanager.BuildJobManager.buildJob(BuildJobManager.java:210)
    at org.talend.repository.ui.wizards.exportjob.scriptsmanager.BuildJobManager.buildJobs(BuildJobManager.java:125)
    at org.talend.repository.ui.wizards.exportjob.JobScriptsExportWizardPage.buildJobWithMaven(JobScriptsExportWizardPage.java:1491)
    at org.talend.repository.ui.wizards.exportjob.JobScriptsExportWizardPage$8.run(JobScriptsExportWizardPage.java:1394)
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:466)
    at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:374)
    at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:1059)
    at org.talend.repository.ui.wizards.exportjob.JobScriptsExportWizardPage.finish(JobScriptsExportWizardPage.java:1399)
    at org.talend.repository.ui.wizards.exportjob.JavaJobScriptsExportWSWizardPage.finish(JavaJobScriptsExportWSWizardPage.java:1643)
    at org.talend.repository.ui.wizards.exportjob.JobScriptsExportWizard.performFinish(JobScriptsExportWizard.java:126)
    at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:853)
    at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:438)
    at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:619)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4353)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1061)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4172)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3761)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:832)
    at org.eclipse.jface.window.Window.open(Window.java:808)
    at org.talend.repository.ui.actions.ExportJobScriptAction.doRun(ExportJobScriptAction.java:122)
    at org.talend.repository.ui.actions.AContextualAction$2.run(AContextualAction.java:673)
    at org.talend.repository.RepositoryWorkUnit.executeRun(RepositoryWorkUnit.java:99)
    at org.talend.core.repository.model.AbstractRepositoryFactory.executeRepositoryWorkUnit(AbstractRepositoryFactory.java:258)
    at org.talend.repository.localprovider.model.LocalRepositoryFactory.executeRepositoryWorkUnit(LocalRepositoryFactory.java:3495)
    at org.talend.core.repository.model.ProxyRepositoryFactory.executeRepositoryWorkUnit(ProxyRepositoryFactory.java:2265)
    at org.talend.repository.ui.actions.AContextualAction.run(AContextualAction.java:686)
    at org.eclipse.jface.action.Action.runWithEvent(Action.java:519)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:595)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:511)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4353)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1061)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4172)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3761)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
    at org.talend.rcp.intro.Application.start(Application.java:265)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
Caused by: org.talend.designer.runprocess.ProcessorException: java.lang.Exception: [ERROR] COMPILATION ERROR : 
[ERROR] C:\Program Files\TOS_DI-Win32-20181026_1147-V7.1.1\workspace\MASTERDB\poms\jobs\process\Standard\GENERIC\Finalization_Scripts\is_golden_record\datablock_is_golden_record\company_identifier_is_golden_0.1\src\main\java\masterdb\company_identifier_is_golden_0_1\company_identifier_is_golden.java:[21] 
[ERROR] COMPILATION ERROR : 
[ERROR] C:\Program Files\TOS_DI-Win32-20181026_1147-V7.1.1\workspace\MASTERDB\poms\jobs\process\Standard\Factset\Automated_Jobs\factset_load_company_name_automated_0.1\src\main\java\masterdb\factset_load_company_name_automated_0_1\Factset_Load_Company_Name_Automated.java:[20] 
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile (default-compile) on project company_identifier_is_golden: Compilation failure
[ERROR] C:\Program Files\TOS_DI-Win32-20181026_1147-V7.1.1\workspace\MASTERDB\poms\jobs\process\Standard\GENERIC\Finalization_Scripts\is_golden_record\datablock_is_golden_record\company_identifier_is_golden_0.1\src\main\java\masterdb\company_identifier_is_golden_0_1\company_identifier_is_golden.java:[21]
[ERROR] import routines.TalendDataGenerator;
[ERROR] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[ERROR] The import routines.TalendDataGenerator cannot be resolved
[ERROR] 1 problem (1 error)
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :company_identifier_is_golden

1 个答案:

答案 0 :(得分:0)

对不起,但暂时无法使用注释选项。

“因此,我们必须将所有现有作业移至Free Version的工作区。”

  1. 您是否手动将文件从旧工作区移动到新的Open Studio工作区?

  2. 您仅导出元素(作业,上下文,例程等)吗?有/没有依赖项?

enter image description here

  1. 您是否导出了所有Talend项目并将其导入到Open Studio版本中?

enter image description here

我建议您使用第三个选项,通过专用选项导出然后导入整个项目。

让我知道。