pentaho

Pentaho/POI throws InvocationTargetException

℡╲_俬逩灬. 提交于 2019-12-11 10:59:54
问题 I am trying to upgrade all my java application to openJDK11 ( from Oracle 8 ). and I notice one problem in my reporting server which use Pentaho. It seems that the Excel autosize feature requires libfontconfig.so in openJDK11, however I can find the module at /usr/lib64/libfontconfig.so. Any way to solve this? 2019/04/18 19:22:38 - GetReportJSon.0 - Finished reading query, closing connection. 2019/04/18 19:22:38 - GetReportJSon.0 - Finished processing (I=1, O=0, R=0, W=2, U=0, E=0) java.lang

Randon Error Processing on Pentaho CDE dashboard for MDX query widget

99封情书 提交于 2019-12-11 10:13:03
问题 I am facing error processing on some widgets while loading dashboards on my applictaion randomly. In the catalina.log, for one or two widgets, it is showing : mondrian.olap.MondrianException: Mondrian Error:Internal error: Query required more than 12 iterations and for one or two widgets, it is showing : java.lang.NullPointerException But if I select the same dashboard again, it'll run perfectly. It is behaving very flakily. To fix the iteration error, I did : mondrian.rolap.evaluate

Pentaho MongoDBInput Java integration

不问归期 提交于 2019-12-11 09:49:37
问题 I have a simple pentaho formation with MongoDBInput connected with JSON Output. I am able to fetch json while i see preview in Pentaho Design studio but as I try to integrate with java, and run the transformation, its throwing error - Exception in thread "main" org.pentaho.di.core.exception.KettleXMLException: Error reading object from XML file Unable to load step info from XML step nodeorg.pentaho.di.core.exception.KettleStepLoaderException: Unable to load class for step/plugin with id

pentaho create archive folder with MM-YYYY

前提是你 提交于 2019-12-11 08:18:37
问题 I would like to archive every file in a folder by putting it in another archive folder with a name like this: "Archive/myfolder-06-2014" My problem is how to retrieve the current month and year and then how to create a folder (if it does not already exist) with these data. 回答1: This solution may be a little awkward (due to the required fuss) but it seems to work. The idea is to precompute the target filename in a seperate transformation and store it as a system variable ( TARGET_ZIP_FILENAME

Angry org.pentaho.di.core.exception.KettleMissingPluginsException in Step : JmsOutput Why?

一笑奈何 提交于 2019-12-11 07:57:55
问题 I made a Transform to send JMS Produce to ActiveMQ . but during executing the transform via my Java Client Application including PDI Jars. I faced this Error : SEVERE: null org.pentaho.di.core.exception.KettleMissingPluginsException: Missing plugins found while loading a transformation Step : JmsOutput at org.pentaho.di.trans.TransMeta.loadXML(TransMeta.java:2840) at org.pentaho.di.trans.TransMeta.<init>(TransMeta.java:2676) at org.pentaho.di.trans.TransMeta.<init>(TransMeta.java:2628) at org

Pentaho passing variable from modified java script value to table input

北战南征 提交于 2019-12-11 07:57:52
问题 I need to passing variable from modified java script value and pass it to table input query this is my If i click preview the output initator_reference | a | '' | 1 | a | null | 2 | a | null | 3 | a | null | 4 | a | null | It shouldnt be null but "testing" string on that third field and dont ask me why i put that variable in select, its just for testing before i put it in "where condition=variable" 回答1: Table Input supports two different ways of making the SQL dynamic: Variable Substitution

MySQL query parameters in a Pentaho CE dashboard

早过忘川 提交于 2019-12-11 06:29:09
问题 First, I'm on Pentaho CE 8.0. And I'm not an expert on Pentaho . The question seems simple but I cannot get it working. I'm trying for a dashboard to use a simple parameter for a WHERE condition in a MySQL query . The Bootstrap layout has 3 columns, one for each component (filter, text, table). Simple parameter: - Name: salesrep_selection - Property value: mike Filter component (to select the sales rep): - Name: salesrep_selection_filter - Parameter: salesrep_selection - Values Array: [["mike

How to add a “select all” option to select component in CDE?

寵の児 提交于 2019-12-11 05:49:23
问题 I have a select component on my dashboard and i want to add a "select all" option to be a default value of this selector. The data source for this select component is SQL. Can anyone help? 回答1: To add select all option as a default value i will explain you with an example. consider i have two distinct rows in one column(eg: Category is the column name and there are two rows in that column "Billable","Non-Billable") selecting either of this two is possible or selecting both using multiselect

Pentaho + apache Reverse Proxy + proxy SSL integration

≯℡__Kan透↙ 提交于 2019-12-11 05:34:37
问题 I have a problem with merging pentaho docker container into our internal infrastructure. Overview: Domain proxy is listening on port 443 (handles SSL and LDAP auth), and redirecting traffic to apache reverse proxy (standing as docker service in swarm with overlay network). The reverse proxy is redirecting requests to the pentaho container (also docker service in same swarm as reverse proxy). Config: (only relevant lines) Domain proxy (not managed by us): listens on 443 and redirects to

Why do I need to refresh Pentaho report data cache everytime there is a change in database

杀马特。学长 韩版系。学妹 提交于 2019-12-11 04:49:23
问题 I want to display Data not available if data does exist in the database, else simply display that data. I created a stored procedure in MySQL to achieve this and it's working fine when run in MySQL Workbench. The procedure takes has two input parameters and one output parameter to display the text "Data not available, if there is no data in the table. When I call this procedure in Pentaho Report Designer (PRD), It shows data when there is data and data not available text when there is no data