pentaho

pentaho spoon/pid: how to move files to folders with different name everytime?

巧了我就是萌 提交于 2019-12-02 04:18:57
I have new text files every month from where I extract the data and do some transformations. In the end of every month, I need to move these files to a folder with current date in name. Which means, the destination folder's name is different everytime. I made a step before move files that creates a folder and its name is current date (exp: 2019-06-01, 2019-07-01), but then on move files step, I don't know how to specify the destination folder. Guess "wildcard" is only used for source... Otherwise, on move files - Destination file - Move to folder , there is create folder option, thought it

转-Pentaho技术白皮书中文版(一)----用 Eclipse 构建和调试 Pentaho

ぐ巨炮叔叔 提交于 2019-12-01 19:15:51
这篇文档的目的是教会开发人员如何开始进行 Pentaho 的开发。这篇文档解释了如何在 Eclipse 中设置一个开发环境,包括如何连接到 Pentaho Subversion repository,检出 Pentaho 项目,使用一个 ' 1 stand-alone' 1 Java 应用和 Eclipse JBoss IDE 来构建调试它们。这篇文档也解释了 Pentaho repository 结构和对于开发Pentaho 来说,许多很重要的 build targets。 目标读者是软件开发人员。我们假设读者已经很熟悉 Eclipse 平台和 Java 开发。如果目的是将平台配置为一个 J2EE 应用,我们假设读者了解 J2EE 和应用服务器。我们此处就是使用 JBoss 应用服务器进行演示。虽然不是很重要,但如果读者有使用 Apache Ant 的经验也会很有用处。 如果你仔细阅读了这个指南中的说明,但仍没有解决你的问题,请到论坛寻找答案: http://forums.pentaho.org/ . 01. 设置你的环境 以下是开始研究 Pentaho,你需要使用的工具列表。推荐你现在就下载所有必需的包,这样你就可不间断的进行试用。 1. 一个 Java SDK:Pentaho BI Platform 在 Java SDK 1.4 上构建和测试。注意你需要完整的 SDK

How to configure Database connection for production environment in Pentaho data integration Kettle transformation

时光毁灭记忆、已成空白 提交于 2019-12-01 12:23:35
I designed a ktr file for transformation. I need to configure the database connection details of production environment. How can I do this? Any suggestions? I use environment variables. KETTLE_HOME KETTLE_JNDI_ROOT PATH=$PATH:$KETTLE_HOME Kettle home is just a link to directory. By default i have directory specially devoted to data-integration suite. It contains several versions of kettle. Example /opt/kettle/data-integration-4.4.0 (few old jobs made like several years ago) /opt/kettle/data-integration-5.2.0 (currenly used) /opt/kettle/data-integration-6.0.0 (on test) then there is a link to

Pentaho Spoon - Output to multiple files based on field content

送分小仙女□ 提交于 2019-12-01 08:07:41
I have been attempting splitting the results of a pentaho transform into multiple files based on the value of a specific field without any luck. E.g. a result set containing the following: SURNAME, FIRSTNAME, COUNTRY Obama, Barack, USA Cameron, David, UK Blair, Tony, UK Would result in 2 output files being created: USA.txt - containing Obama's details and UK.txt - containing the other 2 rows Any pointers would be greatly appreciated. You can construct a field act as output filename based on Country field. Sent the new constructed field as output filenames in "Text File Output" step. See the

How to get attached files from an email, using Pentaho Kettle?

不羁岁月 提交于 2019-12-01 06:38:24
I'm stuck in a great problem. My task is to download some emails from a server using the IMAP protocol. This is accomplished by using the "get mails (POP3 / IMAP)" job entry, which downloads the emails, but in binary format. Files in binary format are .mail files containing sender, subject, body, and encoded attachment files. I need to obtain separate files, because I must realize some steps with these files as input. I've seen that there are third-party libraries or utilities to decode the .mail file and get the attachment file list. However, I want to do this process without any additional

Pentaho Spoon - Output to multiple files based on field content

蹲街弑〆低调 提交于 2019-12-01 05:18:28
问题 I have been attempting splitting the results of a pentaho transform into multiple files based on the value of a specific field without any luck. E.g. a result set containing the following: SURNAME, FIRSTNAME, COUNTRY Obama, Barack, USA Cameron, David, UK Blair, Tony, UK Would result in 2 output files being created: USA.txt - containing Obama's details and UK.txt - containing the other 2 rows Any pointers would be greatly appreciated. 回答1: You can construct a field act as output filename based

Pentaho BI server report without Log in

落爺英雄遲暮 提交于 2019-12-01 02:17:54
问题 I need to integrate my Pentaho Community dashboard report in a DotNet application. Now I am facing a problem. I want the report to open on single click without the Pentaho server asking for authentication or log in. I tried to find out a solution and found that if I use userid and password in the url, it will work. So I did this http://192.168.2.122:8085/pentaho/api/repos/:home:Time%20Sheet%20Reports:Project%20Effort%20Analysis%20Dashboard.wcdf/generatedContent&userid=admin&password=password

Nginx服务器背后的Pentaho

巧了我就是萌 提交于 2019-11-30 15:15:51
我在Nginx Web服务器后面安装了pentaho。我想做的是将我的/重定向到/ pentaho而不成功。这是我的虚拟主机文件: server { listen 80; server_name estrategia-bi.ddns.net; root /var/lib/tomcat7/webapps/pentaho; # rewrite ^(.*)$ $scheme://estrategia-bi.ddns.net/pentaho/Login; location / { proxy_pass http://127.0.0.1:8080/; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $http_host; proxy_set_header X-Forwarded-Server $host; } } 我尝试了不同的方法,例如: proxy_pass http://127.0.0.1:8080/pentaho/; 但这给了我一种空白或部分加载的页面。 rewrite ^(.*)$

Nginx服务器背后的Pentaho

前提是你 提交于 2019-11-30 15:03:07
我在Nginx Web服务器后面安装了pentaho。我想做的是将我的/重定向到/ pentaho而不成功。这是我的虚拟主机文件: server { listen 80; server_name estrategia-bi.ddns.net; root /var/lib/tomcat7/webapps/pentaho; # rewrite ^(.*)$ $scheme://estrategia-bi.ddns.net/pentaho/Login; location / { proxy_pass http://127.0.0.1:8080/; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $http_host; proxy_set_header X-Forwarded-Server $host; } } 我尝试了不同的方法,例如: proxy_pass http://127.0.0.1:8080/pentaho/; 但这给了我一种空白或部分加载的页面。 rewrite ^(.*)$

facing trouble launching spoon.sh on amazon ec2 linux

╄→гoц情女王★ 提交于 2019-11-30 06:03:00
问题 I am quit new to linux and Amazon EC2. i configure JAVA_HOME by following below two link How to know JAVA_HOME_Variable bash_profile so current path in my bash_profile are export JAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.51.x86_64 export PATH=$PATH:/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.51.x86_64/bin now i am trying to launch ./spoon.sh it is giving me error of Caused by: java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: no swt-pi-gtk-3740 in java.library.path no swt