使用kettle 6.1 通过命令行批量执行作业的过程中,发现偶尔有作业执行时间会变慢几分钟,查看日志发现改作业开始就报了一个错

报错之后才会继续下面的作业,虽然不影响最终作业执行结果,但也延误了一些跑批时间。
去pentaho论坛查了一下资料,有人给出两种解决方法:
1、(6.0版本)修改 /classes目录下kettle-lifecycle-listeners.xml和ke 大专栏  kettle_errot_karafLifecycleListenterttle-registry-extensions.xml两个文件成下面这样:

kettle-lifecycle-listeners.xml
<listeners>
</listeners>
kettle-registry-extensions.xml
<registry-extensions>
</registry-extensions>

2、(6.1版本)修改/system/karaf/etc/org.apache.karaf.features.cfg

把featuresBoot=config,pentaho-client,pentaho-metaverse,pdi-dataservice,pdi-data-refinery
改成featuresBoot=config,pentaho-client,pentaho-metaverse,pdi-dataservice

然后删除 /system/karaf/caches目录

kettle_errot_karafLifecycleListenter的更多相关文章

随机推荐

  1. Matlab高级教程_第一篇:Matlab基础知识提炼_02

    第三节:变量 正如其他编程软件一样. 都是通过变量来传递和交换数据的,这是基础.按照<MATLAB基础知识提炼>这篇文章先介绍变量比较合适.编程语言不外乎包括两部分:数据和结构.应该先把数 ...

  2. 1.windows-oracle实战第一课

    一.oracle是目前最流行的数据库之一,功能强大.性能卓越.学习要有信心.oracle也做软件,不仅仅是数据库.比如ERP(企业资源计划,用友.金蝶) 二.目前的数据库   相对而言:       ...

  3. systemd[1]: mariadb.service: Can't open PID file /data/mariadb/mysql/30-mariadb-1.pid (yet?) after start: No such file or directory

    环境:Centos8 编译安装Mariadb-10.4.11,安装到make install都没有问题,添加服务启动脚本到/lib/systemd/system/,服务启动脚本名为mariadb.se ...

  4. UML-业务规则

    样例:

  5. day56-mysql-其他查询-面试题-重点

    一.重点 面试题 1. 临时表查询: -- 查询高于本部门平均工资的人员 #1.先查询部门人员的平均工资 SELECT dept_id,AVG(salary)as sal from person GR ...

  6. DFS---迷宫问题

    #include<iostream> #include<string> #include<cstring> using namespace std;//dfs in ...

  7. day06-迭代器

    一.迭代器: 1.可迭代协议:含有__iter__方法. 2.迭代器协议:同时含有__iter__和__next__方法.迭代器是可迭代对象. iterator迭代器. 3.使用可迭代对象有什么好处? ...

  8. .net core ioc

    -------------------------------------- 2. ---------------------------- -----------aop

  9. python中安装surprise中出现error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools":

    pip安装 安装之前要先进行numpy的安装 pip install numpy pip install surprise 安装出错: 安装surprise需要Microsoft visual c++ ...

  10. [LC] 47. Permutations II

    Given a collection of numbers that might contain duplicates, return all possible unique permutations ...