pentaho

Pentaho bi server and administration-console communications

我的梦境 提交于 2020-01-06 14:16:30
问题 I was deploy pentaho bi server on my running tomcat server ref from here. Now I want to create JNDI bases datasource so I login through pentaho administration console but in that web page nothing to shows users lists, user role. After googling some times I was found that change console.xml then I was changed my console.xml file as below <?xml version="1.0" encoding="UTF-8"?> <console> <solution-path>/home/pc-name/pentaho-solutions</solution-path> <war-path>/home/pc-name/apache-tomcat-7.0.47

Not able to Connect to DI repository server from Spoon

。_饼干妹妹 提交于 2020-01-06 08:39:19
问题 I am trying to connect to DI server from Spoon..(Spoon with DI server) - DI server is running fine. Few days back when I tried it was working fine. suddenly I dont know where does the issue come from. I followed the steps from the documentation : http://infocenter.pentaho.com/help/index.jsp?topic=%2Fpdi_user_guide%2Ftask_pdi_usr_connecting_2_repo.html How do I add DI repository to this? Can anyone help? 回答1: There is 3 types of DI repository for Spoon: file-based repository (free) db-based

Show / Hide Fields in Pentaho Report Based on User Input

余生颓废 提交于 2020-01-06 01:29:06
问题 I'm trying to show / hide fields in a Pentaho report based upon user input. For example, I would like to offer a checkbox to the user saying "Show Product Count" -- if the box is unchecked, it will not include that column in the report. Is there a way to do this in Pentaho Report Designer, perhaps using Parameters? Thanks for the help -Monica 回答1: Yes, you have half the answer. Have a Yes/No Parameter "ShowProductCount" Then on the conditional fields, go to the visible property, click the +

Running PDI Kettle on Java - Mongodb Step Missing Plugins

China☆狼群 提交于 2020-01-05 14:11:30
问题 I am trying to run a transformation which includes mongodb input step from a java app but always resulting error with this message: org.pentaho.di.core.exception.KettleMissingPluginsException: Missing plugins found while loading a transformation Step : MongoDbInput at org.pentaho.di.trans.TransMeta.loadXML(TransMeta.java:2931) at org.pentaho.di.trans.TransMeta.<init>(TransMeta.java:2813) at org.pentaho.di.trans.TransMeta.<init>(TransMeta.java:2774) at org.pentaho.di.trans.TransMeta.<init>

Pentaho Initialization Exception

佐手、 提交于 2020-01-05 10:11:22
问题 When I am trying to start my Pentaho BI server, I received a couple of errors. I understand that this cannot start the QuartZ database, but could I have some help resolving the following issue? Pentaho user console The following errors were detected. One or more system listeners failed. These are set in the systemListeners.xml. PentahoSystem.ERROR_0014 - Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener Please see the server console for

Pentaho Initialization Exception

社会主义新天地 提交于 2020-01-05 10:10:08
问题 When I am trying to start my Pentaho BI server, I received a couple of errors. I understand that this cannot start the QuartZ database, but could I have some help resolving the following issue? Pentaho user console The following errors were detected. One or more system listeners failed. These are set in the systemListeners.xml. PentahoSystem.ERROR_0014 - Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener Please see the server console for

Pentaho Data Integration (newest version) - Not detecting MySQL driver

假装没事ソ 提交于 2020-01-05 03:57:09
问题 I'm new to this tool and I'm trying to create MySQL connection to a database but when I press the 'Test' button it apears this message: Error connecting to database [MySQL (_configuracionesEF)] :org.pentaho.di.core.exception.KettleDatabaseException: Error occurred while trying to connect to the database Driver class 'org.gjt.mm.mysql.Driver' could not be found, make sure the 'MySQL' driver (jar file) is installed. org.gjt.mm.mysql.Driver org.pentaho.di.core.exception.KettleDatabaseException:

How connect Pentaho Data Integration with Amazon RDS

假装没事ソ 提交于 2020-01-04 13:56:29
问题 I´m having difficult with create a new connection on Pentaho Data Integration (Kettle) with Amazon RDS, Amazon needs a CA Cert, and I dont know how to input it to connection. Someone can help me? Tkx, 回答1: Establish Secure Connection (SSL) To AWS (RDS) Aurora / MySQL from Pentaho (PDI Kettle) 1. You need to create a new user id and Grant SSL rights to it. So this user id can connect to Aurora / MySQL only using Secured connection. GRANT USAGE ON *.* TO 'admin'@'%' REQUIRE SSL 2. Download

Uploaded files are hidden in pentaho

我的未来我决定 提交于 2020-01-04 05:31:26
问题 I uploaded a zip file to the Pentaho public folder. But only the folder structure is shown, all files are hidden and the folder is stated as empty 回答1: Go to the "Browse Files" in Pentaho. Then on the menu, click 'view > show hidden files' 来源: https://stackoverflow.com/questions/33278375/uploaded-files-are-hidden-in-pentaho

BigQuery JDBC driver won't return more than 100,000 rows

≯℡__Kan透↙ 提交于 2020-01-04 02:55:48
问题 I am using the starschema JDBC driver for Google BigQuery in Pentaho PDI: http://code.google.com/p/starschema-bigquery-jdbc/ My query through the BigQuery Web Console returns 129,993 rows, but when I execute the same query through the JDBC driver it only returns 100,000 rows. Is there some kind of option or limit that I am not aware of? 回答1: The StarSchema code looks like it is only returning the first page of results. The code here here should be updated to get the rest of the results. It