For Association Rule Mining Nominal values work while numeric values do not work, so it is necessary to convert it to nominal by discretizing.However the numeric values get converted into 'All' ..Please suggest proper solution
↧
Discretize Numeric Values[WEKA]
↧
Issue while loading data from API - URL
Hi Team,
I am facing some issues while downloading data from API. So there is API URL which if I manually open in a browser gives me data in a proper XML format an XML file. But I don't want to download the file, save it and then load it but instead I am looking to directly get the data and store in a table. I am using Kettle to load this data using "Get data from XML" in the transformation. All I do, is provide a link to that URL and store the output in the database table. But in this case, sometimes the URL/API response is slow and my task errors out if the page loading fails in the first attempt.
I was looking for, if possible -
1. Extend the timeout for the API to load
2. Introduce retries to the system so that even if it fails for the first time it can try again say after an interval of 5 seconds. Is there a way to do that instead of run the kettle from batch and then adding a loop interval time in batch instead of Kettle?
-Kausty88
I am facing some issues while downloading data from API. So there is API URL which if I manually open in a browser gives me data in a proper XML format an XML file. But I don't want to download the file, save it and then load it but instead I am looking to directly get the data and store in a table. I am using Kettle to load this data using "Get data from XML" in the transformation. All I do, is provide a link to that URL and store the output in the database table. But in this case, sometimes the URL/API response is slow and my task errors out if the page loading fails in the first attempt.
I was looking for, if possible -
1. Extend the timeout for the API to load
2. Introduce retries to the system so that even if it fails for the first time it can try again say after an interval of 5 seconds. Is there a way to do that instead of run the kettle from batch and then adding a loop interval time in batch instead of Kettle?
-Kausty88
↧
↧
join table on two columns (how to use key expression?)
I have a table with 'ruleid' as the primary key and I join it (with SQL) by concatenating two columns (+ a pipe symbol)
The SQL is
SELECT b.rule, count(*)
FROM table1 a
(SELECT x.*, CONCAT (id, '|' , name) as id2 FROM table2) b ON a.ruleid=b.id2
That is, idk why the primary table's key is a concatenated value of 'id|name' but it is and I'm trying to figure out how to use Mondrian Schema Workbench to join it.
From a few other posts I think the answer may be in using a 'key expression' but I have not been able to figure it out via the mondrian.pentaho.com docs or other posts; so looking for help here.
Many thanks!
The SQL is
SELECT b.rule, count(*)
FROM table1 a
(SELECT x.*, CONCAT (id, '|' , name) as id2 FROM table2) b ON a.ruleid=b.id2
That is, idk why the primary table's key is a concatenated value of 'id|name' but it is and I'm trying to figure out how to use Mondrian Schema Workbench to join it.
From a few other posts I think the answer may be in using a 'key expression' but I have not been able to figure it out via the mondrian.pentaho.com docs or other posts; so looking for help here.
Many thanks!
↧
Submitt button :1st time with default params vales & next time selections with submit
Hi Forum,
I have created a chart(bar/pie/line) which has to take FromDate & ToDate parameters.
I want a submit button on the dashboard where I'll perform click action & then the charts get new data.
I have created
1) parameters(Date parameters) : param1_FromDate , param2_ToDate (with default values : 2012-01-01 & 2012-01-07) .
2) selects : select1_FromDate, select2_ToDate (Given param1_FromDate,param2_ToDate as parameters as well listeners to the selects individually).
'FromDateSelect' & 'ToDateSelect' are the htmlObjects for selects.(formally span id's of bootstrap code).
3) Setting the parameters & listeners for chart components (and to parameters for queries).
Need below on the dashboard:
----------------------------------
#1) Stop the auto submit
#2) Dashboard should be shown with the default values for the first time.
#3) On performing click action on "Submit" button with the changed selects the dashboard should get the data.(as per the selections).
Could you share the knowledge on the this ...
How to use Dashboards.fireChange('param',param1) & update() methods properly to make it work ....
Thank you in advance :-)
Sadakar
BI developer.
I have created a chart(bar/pie/line) which has to take FromDate & ToDate parameters.
I want a submit button on the dashboard where I'll perform click action & then the charts get new data.
I have created
1) parameters(Date parameters) : param1_FromDate , param2_ToDate (with default values : 2012-01-01 & 2012-01-07) .
2) selects : select1_FromDate, select2_ToDate (Given param1_FromDate,param2_ToDate as parameters as well listeners to the selects individually).
'FromDateSelect' & 'ToDateSelect' are the htmlObjects for selects.(formally span id's of bootstrap code).
3) Setting the parameters & listeners for chart components (and to parameters for queries).
Need below on the dashboard:
----------------------------------
#1) Stop the auto submit
#2) Dashboard should be shown with the default values for the first time.
#3) On performing click action on "Submit" button with the changed selects the dashboard should get the data.(as per the selections).
Could you share the knowledge on the this ...
How to use Dashboards.fireChange('param',param1) & update() methods properly to make it work ....
Thank you in advance :-)
Sadakar
BI developer.
↧
Reset Inputs Button on Dashboards
Hi Forum,
I've parameters on the dashboard & let's say ${ID} is the parameter with default value=1....
I'll select ID=4 , ID=10 in cases..
How can we set parameters to default when I perform a click action on a button.. ?
Thank you.
Sadakar
I've parameters on the dashboard & let's say ${ID} is the parameter with default value=1....
I'll select ID=4 , ID=10 in cases..
How can we set parameters to default when I perform a click action on a button.. ?
Thank you.
Sadakar
↧
↧
Export Dashboard(=HTML page) to pdf file with pure java script...
Hi Forum,
Does anybody know how to export a HTML page(Is CDE dashboard not an HTML page?) by writing pure java script ?
(Tired PRD workaround to export the dashboard to pdf)..
Thank you in Advance. :-)
Sadakar
BI developer.
Does anybody know how to export a HTML page(Is CDE dashboard not an HTML page?) by writing pure java script ?
(Tired PRD workaround to export the dashboard to pdf)..
Thank you in Advance. :-)
Sadakar
BI developer.
↧
where to set jdbcCompliantTruncation=false or sql_mode=''?
I'm retooling an old application without changing the design. I have created a Table Output step and in order to preserve compatibility I need to let the MySQL database server quietly perform its automatic truncation on values that don't fit in their respective columns.
One way to do this is to set jdbcCompliantTruncation=false , another is to execute SET @@session.sql_mode='' prior to the insert statements.
Where exactly do I configure this in PDI/Kettle/Spoon?
I tried the obvious (a couple of different places in the Database Connection Properties) but couldn't get it to work.
One way to do this is to set jdbcCompliantTruncation=false , another is to execute SET @@session.sql_mode='' prior to the insert statements.
Where exactly do I configure this in PDI/Kettle/Spoon?
I tried the obvious (a couple of different places in the Database Connection Properties) but couldn't get it to work.
↧
Pentaho Reporting file output - error: Caught Kettle Exception: Check your configurat
I have a report with a transformation imported into the report from which my data connections to several flat files are established. I am able to execute and the run the report from PRD without issue. However, when trying to initiate the report from PDI vi the Pentaho Reporting file output step I am getting the following error:
2014/07/31 17:03:47 - Validity Report.0 - ERROR (version 5.1.0.0, build 1 from 2014-06-19_19-02-57 by buildguy) : Unexpected error
2014/07/31 17:03:47 - Validity Report.0 - ERROR (version 5.1.0.0, build 1 from 2014-06-19_19-02-57 by buildguy) : org.pentaho.di.core.exception.KettleException:
2014/07/31 17:03:47 - Validity Report.0 - There was an unexpected error processing report 'file:///C:/test/RPT_ValidityPhase1.prpt' to produce file 'C:\test\Reports\ReportTest_Phase1_ValidityReport.pdf' with processor: PDF.
2014/07/31 17:03:47 - Validity Report.0 - Caught Kettle Exception: Check your configuration
2014/07/31 17:03:47 - Validity Report.0 -
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.steps.pentahoreporting.PentahoReportingOutput.processReport(PentahoReportingOutput.java:260)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.steps.pentahoreporting.PentahoReportingOutput.processRow(PentahoReportingOutput.java:114)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.step.RunThread.run(RunThread.java:62)
2014/07/31 17:03:47 - Validity Report.0 - at java.lang.Thread.run(Unknown Source)
2014/07/31 17:03:47 - Validity Report.0 - Caused by: org.pentaho.reporting.engine.classic.core.ReportDataFactoryException: Caught Kettle Exception: Check your configuration
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.extensions.datasources.kettle.KettleDataFactory.queryData(KettleDataFactory.java:129)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryStatic(CompoundDataFactory.java:125)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.cache.CachingDataFactory.queryInternal(CachingDataFactory.java:423)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.cache.CachingDataFactory.queryStatic(CachingDataFactory.java:172)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryStatic(CompoundDataFactory.java:120)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryData(CompoundDataFactory.java:75)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.states.datarow.DefaultFlowController.performQueryData(DefaultFlowController.java:236)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.states.datarow.DefaultFlowController.performQuery(DefaultFlowController.java:199)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.states.process.ProcessState.initializeForMasterReport(ProcessState.java:324)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.prepareReportProcessing(AbstractReportProcessor.java:481)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.processReport(AbstractReportProcessor.java:1713)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.modules.output.pageable.pdf.PdfReportUtil.createPDF(PdfReportUtil.java:130)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.modules.output.pageable.pdf.PdfReportUtil.createPDF(PdfReportUtil.java:73)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.modules.output.pageable.pdf.PdfReportUtil.createPDF(PdfReportUtil.java:165)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.steps.pentahoreporting.PentahoReportingOutput.processReport(PentahoReportingOutput.java:226)
2014/07/31 17:03:47 - Validity Report.0 - ... 3 more
2014/07/31 17:03:47 - Validity Report.0 - Caused by: org.pentaho.di.core.exception.KettleException:
2014/07/31 17:03:47 - Validity Report.0 - We failed to initialize at least one step. Execution can not begin!
2014/07/31 17:03:47 - Validity Report.0 -
2014/07/31 17:03:47 - Validity Report.0 -
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.Trans.prepareExecution(Trans.java:1140)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.extensions.datasources.kettle.AbstractKettleTransformationProducer.performQuery(AbstractKettleTransformationProducer.java:211)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.extensions.datasources.kettle.KettleDataFactory.queryData(KettleDataFactory.java:121)
2014/07/31 17:03:47 - Validity Report.0 - ... 17 more
I have not been able to find anything in the forums or otherwise regarding this issue, can someone please provide me some guidance?
I am running on the 5.1.0.0.752 CE build.
2014/07/31 17:03:47 - Validity Report.0 - ERROR (version 5.1.0.0, build 1 from 2014-06-19_19-02-57 by buildguy) : Unexpected error
2014/07/31 17:03:47 - Validity Report.0 - ERROR (version 5.1.0.0, build 1 from 2014-06-19_19-02-57 by buildguy) : org.pentaho.di.core.exception.KettleException:
2014/07/31 17:03:47 - Validity Report.0 - There was an unexpected error processing report 'file:///C:/test/RPT_ValidityPhase1.prpt' to produce file 'C:\test\Reports\ReportTest_Phase1_ValidityReport.pdf' with processor: PDF.
2014/07/31 17:03:47 - Validity Report.0 - Caught Kettle Exception: Check your configuration
2014/07/31 17:03:47 - Validity Report.0 -
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.steps.pentahoreporting.PentahoReportingOutput.processReport(PentahoReportingOutput.java:260)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.steps.pentahoreporting.PentahoReportingOutput.processRow(PentahoReportingOutput.java:114)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.step.RunThread.run(RunThread.java:62)
2014/07/31 17:03:47 - Validity Report.0 - at java.lang.Thread.run(Unknown Source)
2014/07/31 17:03:47 - Validity Report.0 - Caused by: org.pentaho.reporting.engine.classic.core.ReportDataFactoryException: Caught Kettle Exception: Check your configuration
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.extensions.datasources.kettle.KettleDataFactory.queryData(KettleDataFactory.java:129)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryStatic(CompoundDataFactory.java:125)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.cache.CachingDataFactory.queryInternal(CachingDataFactory.java:423)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.cache.CachingDataFactory.queryStatic(CachingDataFactory.java:172)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryStatic(CompoundDataFactory.java:120)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryData(CompoundDataFactory.java:75)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.states.datarow.DefaultFlowController.performQueryData(DefaultFlowController.java:236)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.states.datarow.DefaultFlowController.performQuery(DefaultFlowController.java:199)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.states.process.ProcessState.initializeForMasterReport(ProcessState.java:324)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.prepareReportProcessing(AbstractReportProcessor.java:481)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.processReport(AbstractReportProcessor.java:1713)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.modules.output.pageable.pdf.PdfReportUtil.createPDF(PdfReportUtil.java:130)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.modules.output.pageable.pdf.PdfReportUtil.createPDF(PdfReportUtil.java:73)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.core.modules.output.pageable.pdf.PdfReportUtil.createPDF(PdfReportUtil.java:165)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.steps.pentahoreporting.PentahoReportingOutput.processReport(PentahoReportingOutput.java:226)
2014/07/31 17:03:47 - Validity Report.0 - ... 3 more
2014/07/31 17:03:47 - Validity Report.0 - Caused by: org.pentaho.di.core.exception.KettleException:
2014/07/31 17:03:47 - Validity Report.0 - We failed to initialize at least one step. Execution can not begin!
2014/07/31 17:03:47 - Validity Report.0 -
2014/07/31 17:03:47 - Validity Report.0 -
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.di.trans.Trans.prepareExecution(Trans.java:1140)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.extensions.datasources.kettle.AbstractKettleTransformationProducer.performQuery(AbstractKettleTransformationProducer.java:211)
2014/07/31 17:03:47 - Validity Report.0 - at org.pentaho.reporting.engine.classic.extensions.datasources.kettle.KettleDataFactory.queryData(KettleDataFactory.java:121)
2014/07/31 17:03:47 - Validity Report.0 - ... 17 more
I have not been able to find anything in the forums or otherwise regarding this issue, can someone please provide me some guidance?
I am running on the 5.1.0.0.752 CE build.
↧
Session Time out of Pentaho CDE Dashboard
Hi Forum..
How to increase the session time of cde dashboard.can anyone tell me which file i need to modified to increase the session time out of dashboard.
Thanx in Advance
Sumit
How to increase the session time of cde dashboard.can anyone tell me which file i need to modified to increase the session time out of dashboard.
Thanx in Advance
Sumit
↧
↧
Metadata is giving error when we save it
This is the error message "org/owasp/esapi/ESAPI" when we trying to save the metadata after making some changes to the old metadata.
Can i know why its giving this error.
Can i know why its giving this error.
↧
Tag cloud?
Hi.
I was wondering is there any ccc or protovis or something like that solution to make a tag cloud \ word cloud type of charts in Pentaho CE?
Something very much like this:
![]()
I was wondering is there any ccc or protovis or something like that solution to make a tag cloud \ word cloud type of charts in Pentaho CE?
Something very much like this:

↧
Navigation Menu Component!
Hi Pmalves,
We are using the 'Navigation Menu Component' of CDE version 14.06. It looks like an amazing component and we are thinking to make use of it on our Reporting server as much as possible. Though need a small help. As we see, that this menu only picks up .wcdf files. We are thinking of creating views in Pentaho solution repository. By that I mean, same wcdf file called from various folder views( like by type, by functionality) through different '.url' files. I just mentioned the full path link of the .wcdf file in .url file. We got success in that. The real challenge is coming to show these '.url' files in the 'Navigation Menu Component' as it is only picking up .wcdf ones. Please help us to understand where we need to make the changes as in the component code , we dont see any hard coded 'wcdf' value.
Waiting for the solution.
Best Regards,
Ramya
We are using the 'Navigation Menu Component' of CDE version 14.06. It looks like an amazing component and we are thinking to make use of it on our Reporting server as much as possible. Though need a small help. As we see, that this menu only picks up .wcdf files. We are thinking of creating views in Pentaho solution repository. By that I mean, same wcdf file called from various folder views( like by type, by functionality) through different '.url' files. I just mentioned the full path link of the .wcdf file in .url file. We got success in that. The real challenge is coming to show these '.url' files in the 'Navigation Menu Component' as it is only picking up .wcdf ones. Please help us to understand where we need to make the changes as in the component code , we dont see any hard coded 'wcdf' value.
Waiting for the solution.
Best Regards,
Ramya
↧
How to get which column update at source side ?
HI,
I am using kettle to transfer the data from Oracle to MySQL.
Step: Table Input(Oracle) -- > Insert/Update (MySQL)
I am transferring it Daily using last update date.
Now I want to know that which column update in this, recently i am getting number of rows updated, Also i m able to getting row using merge row, but not that specific column where the change is.
Pl help me to solved out.
Thanks ...
I am using kettle to transfer the data from Oracle to MySQL.
Step: Table Input(Oracle) -- > Insert/Update (MySQL)
I am transferring it Daily using last update date.
Now I want to know that which column update in this, recently i am getting number of rows updated, Also i m able to getting row using merge row, but not that specific column where the change is.
Pl help me to solved out.
Thanks ...
↧
↧
Creating N variables depending on Table Input result
Hello,
I couldn't find any previous questions on this topic and I couldn't find any solution on wiki too.
I have a table with 2 columns containing N rows.
The first column would be the variable name and the second column would be the variable value.
What I'd like is to have a transformation set N variables with N known names and bind them with their respective value.
So, for example:
Get these 3 rows from the step "Table Input" and go into a "Set Variables" (or whatever step can do this... then set the variables with Set) step which generate 3 variables (with 3 known variable name) and 3 dynamic values (xvalue for the 'x' variable, yvalue for 'y', etc... ).
Is it understandable?
Thanks in advance,
Massimo
p.s. I know you could set variable from a file but these are the requirements... I even thought I could generate a simil-config-file with the results from the table then set the variables from there...
I couldn't find any previous questions on this topic and I couldn't find any solution on wiki too.
I have a table with 2 columns containing N rows.
The first column would be the variable name and the second column would be the variable value.
What I'd like is to have a transformation set N variables with N known names and bind them with their respective value.
So, for example:
Code:
TABLE A:
VAR NAME | VAR VALUE
x xvalue
y yvalue
z zvalue
Is it understandable?
Thanks in advance,
Massimo
p.s. I know you could set variable from a file but these are the requirements... I even thought I could generate a simil-config-file with the results from the table then set the variables from there...
↧
New Pentaho Ctools releases: 14.07.29
CDF - Version 14.07.29
Bug
Improvement
New Feature
Task
CDE - Version 14.07.29
Bug
Component
Improvement
New Feature
Story
CDA - Version 14.07.29
Bug
CGG - Version 14.07.29
Improvement
CCC - Version 14.07.29
More...
Bug
- [CDF-264] - On initialization, parameters are not synched with Dashboards.parameterModel
- [CDF-289] - When running on windows, the Orient folder structure is located at the wrong folder
- [CDF-290] - CCC - Option "LeafContentOverflow" supports value "Visible", which should be documented.
- [CDF-291] - Pop-up displayed on page load - SelectComponent
- [CDF-300] - Method BaseComponent.setAddInDefaults should be removed
- [CDF-301] - CCC - Sunburst color scale no longer inherits color from parent slice
- [CDF-303] - CCC - Explicitly setting the size of the legend is not taking effect.
- [CDF-304] - CCC - Specifying the bar_fillStyle extension point throws an error
- [CDF-305] - CCC - Scatter - translation with discrete column placed after numeric columns does not work
- [CDF-306] - CCC - Lines with a single null-valued series fail to highlight correctly when hovered-over.
- [CDF-307] - oLanguage field in Table Component not working properly
- [CDF-315] - CCC - Tipsy tooltip - should use a single instance per chart to avoid frequent showing/hiding
- [CDF-316] - CCC - Tipsy tooltip - long values are not wrapped or clipped
- [CDF-318] - MetaLayer dashboard sample's "details" link not working
- [CDF-321] - CCC - colorMap option does not work with gradient strings
- [CDF-322] - CCC - HeatGrid - compatVersion 1 - points with null color and size are generating invalid SVG
- [CDF-324] - Find a way for datatables 1.10 upgrade not mess with previous stylings
- [CDF-326] - Dashboards.setParameter cleaning custom parameter
- [CDF-327] - 'AutoCompleteBoxComponent' sample doesn't displayed input text field
- [CDF-337] - Samples '*XactionComponent' fail on MDXLookupRule
- [CDF-339] - Need to sort dataTables column by 'date-asc' and 'date-desc'. These sort types do not exist in fn.dataTableExt.oSort
- [CDF-340] - New dataTables CSS Classes override developed CSS classes in deployed solutions
Improvement
- [CDF-136] - Can traffic light work with CDA?
- [CDF-219] - jQuery plugin "chosen" selected item class is not removed when you select a new item - deprecated version
- [CDF-293] - As a BI Developer, I want a way to implement trim values
- [CDF-317] - Add Dashboards.addParameter method to allow more complex parameter initialization
New Feature
- [CDF-287] - As a user, I want to be able to define a chart made up of arbitrary, compatible, plots.
Task
- [CDF-296] - change artifact name so that ivy publish is correct
CDE - Version 14.07.29
Bug
- [CDE-140] - Selection of cda file as a datasource with file browser does not include forward slash at beginning of path
- [CDE-226] - Bug when removing Widget Parameters
- [CDE-248] - NewMapComponent pop up do not display after refresh
- [CDE-267] - Popup windows in CDE have width and height values switched when set via Advanced Properties
- [CDE-273] - CDE folder structure creation in not being triggered at startup, but only upon first CDE Environment instantiation
- [CDE-288] - Paths produced by file picker on a new dashboard are not correct
- [CDE-296] - 'Popup Component Reference' does not load images 'x5.gif'
- [CDE-301] - CDE trunk is broken
- [CDE-304] - MapComponents - div 'featurePopup' never remove from HTML
- [CDE-306] - Dashboards/Server ping is triggered multiple times
- [CDE-308] - Widgets: parameters editor not passing the right value
- [CDE-311] - MimeType resolver does not handle .svg files, thus sending an unknown Content-type in the response header
- [CDE-313] - New widgets are not saved right
- [CDE-320] - Custom Paramter functionality broken on CDE in latest build version
- [CDE-321] - Error cccExtensionPoints plot2Dot_shape
- [CDE-322] - As a User without the admin role, I am unable to access non admin dashboards located in /system
Component
- [CDE-316] - property - [Pagination Type] with [Two buttons]
Improvement
- [CDE-207] - Olap4j datasource's property "property" has no tooltip and is of unknown purpose
- [CDE-253] - Add Panel as a layout component when dashboard is in Bootstrap Renderer
- [CDE-283] - Each time the dashboard is save a new element 'div' is added
- [CDE-309] - Change renderer so that parameters are initialized using Dashboards.addParameter
New Feature
- [CDE-138] - Create components for xAnalyzerComponent and executeXAnalyzerComponent
Story
- [CDE-256] - Add freeform layout component
- [CDE-302] - As a dashboard developer, I want the extension points value field, and similar ones, to be expandable to an ace box
CDA - Version 14.07.29
Bug
- [CDA-93] - 'Kettle' sample fail - exception getting data
- [CDA-94] - Passing large strings; hibernate.PRO_AUDIT MESSAGE_TEXT_VALUE truncate error.
CGG - Version 14.07.29
Improvement
- Maintenance release - keep compatibility with latest CCC version
CCC - Version 14.07.29
- [CDF-287] - As a user, I want to be able to define a chart made up of arbitrary, compatible, plots.
- [CDF-301] - CCC - Sunburst color scale no longer inherits color from parent slice.
- [CDF-303] - CCC - Explicitly setting the size of the legend is not taking effect.
- [CDF-304] - CCC - Specifying the bar_fillStyle extension point throws an error
- [CDF-305] - CCC - Scatter - translation with discrete column placed after numeric columns does not work
- [CDF-306] - CCC - Lines with a single null-valued series fail to highlight correctly when hovered-over.
- [CDF-316] - CCC - Tipsy tooltip - long values are not wrapped or clipped
- [CDF-315] - CCC - Tipsy tooltip - should use a single instance per chart to avoid frequent showing/hiding
- [CDF-321] - CCC - colorMap option does not work with gradient strings
- * [CDF-322] - CCC - HeatGrid - compatVersion 1 - points with null color and size are generating invalid SVG
- * [CDE-321] - Error cccExtensionPoints plot2Dot_shape
More...
↧
BTable Error
Hi,
I tried to use BTable, define the parameters, but when loading I get the error: "no resource loader is able to handle it for the data source", data source is also defined. please help.
thanks
Levent
I tried to use BTable, define the parameters, but when loading I get the error: "no resource loader is able to handle it for the data source", data source is also defined. please help.
thanks
Levent
↧
Error_0011
Hi,all
I use win7,java jdk 1.8.But I can't start the bi.Please helpe me!
2014-08-01 19:50:09,460 ERROR [org.pentaho.platform.util.logging.Logger] Error: Pentaho
2014-08-01 19:50:09,460 ERROR [org.pentaho.platform.util.logging.Logger] misc-class org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager: PluginManager.ERROR_0011 - Failed to register plugin cgg
org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from file [E:\biserver-ce\pentaho-solutions\system\cgg\plugin.spring.xml]; nested exception is java.lang.IllegalStateException: Context namespace element 'annotation-config' and its parser class [org.springframework.context.annotation.AnnotationConfigBeanDefinitionParser] are only available on JDK 1.5 and higher
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:420)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:342)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:310)
at org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager.getNativeBeanFactory(DefaultPluginManager.java:411)
at org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager.initializeBeanFactory(DefaultPluginManager.java:439)
at org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager.reload(DefaultPluginManager.java:189)
at org.pentaho.platform.plugin.services.pluginmgr.PluginAdapter.startup(PluginAdapter.java:40)
at org.pentaho.platform.engine.core.system.PentahoSystem$2.call(PentahoSystem.java:398)
at org.pentaho.platform.engine.core.system.PentahoSystem$2.call(PentahoSystem.java:389)
at org.pentaho.platform.engine.core.system.PentahoSystem.runAsSystem(PentahoSystem.java:368)
at org.pentaho.platform.engine.core.system.PentahoSystem.notifySystemListenersOfStartup(PentahoSystem.java:389)
at org.pentaho.platform.engine.core.system.PentahoSystem.access$000(PentahoSystem.java:77)
at org.pentaho.platform.engine.core.system.PentahoSystem$1.call(PentahoSystem.java:326)
at org.pentaho.platform.engine.core.system.PentahoSystem$1.call(PentahoSystem.java:323)
at org.pentaho.platform.engine.core.system.PentahoSystem.runAsSystem(PentahoSystem.java:368)
at org.pentaho.platform.engine.core.system.PentahoSystem.notifySystemListenersOfStartup(PentahoSystem.java:323)
at org.pentaho.platform.engine.core.system.PentahoSystem.init(PentahoSystem.java:294)
at org.pentaho.platform.engine.core.system.PentahoSystem.init(PentahoSystem.java:207)
at org.pentaho.platform.web.http.context.SolutionContextListener.contextInitialized(SolutionContextListener.java:135)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4210)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4709)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:799)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:779)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:583)
at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:675)
at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:601)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:502)
I use win7,java jdk 1.8.But I can't start the bi.Please helpe me!
2014-08-01 19:50:09,460 ERROR [org.pentaho.platform.util.logging.Logger] Error: Pentaho
2014-08-01 19:50:09,460 ERROR [org.pentaho.platform.util.logging.Logger] misc-class org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager: PluginManager.ERROR_0011 - Failed to register plugin cgg
org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from file [E:\biserver-ce\pentaho-solutions\system\cgg\plugin.spring.xml]; nested exception is java.lang.IllegalStateException: Context namespace element 'annotation-config' and its parser class [org.springframework.context.annotation.AnnotationConfigBeanDefinitionParser] are only available on JDK 1.5 and higher
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:420)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:342)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:310)
at org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager.getNativeBeanFactory(DefaultPluginManager.java:411)
at org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager.initializeBeanFactory(DefaultPluginManager.java:439)
at org.pentaho.platform.plugin.services.pluginmgr.DefaultPluginManager.reload(DefaultPluginManager.java:189)
at org.pentaho.platform.plugin.services.pluginmgr.PluginAdapter.startup(PluginAdapter.java:40)
at org.pentaho.platform.engine.core.system.PentahoSystem$2.call(PentahoSystem.java:398)
at org.pentaho.platform.engine.core.system.PentahoSystem$2.call(PentahoSystem.java:389)
at org.pentaho.platform.engine.core.system.PentahoSystem.runAsSystem(PentahoSystem.java:368)
at org.pentaho.platform.engine.core.system.PentahoSystem.notifySystemListenersOfStartup(PentahoSystem.java:389)
at org.pentaho.platform.engine.core.system.PentahoSystem.access$000(PentahoSystem.java:77)
at org.pentaho.platform.engine.core.system.PentahoSystem$1.call(PentahoSystem.java:326)
at org.pentaho.platform.engine.core.system.PentahoSystem$1.call(PentahoSystem.java:323)
at org.pentaho.platform.engine.core.system.PentahoSystem.runAsSystem(PentahoSystem.java:368)
at org.pentaho.platform.engine.core.system.PentahoSystem.notifySystemListenersOfStartup(PentahoSystem.java:323)
at org.pentaho.platform.engine.core.system.PentahoSystem.init(PentahoSystem.java:294)
at org.pentaho.platform.engine.core.system.PentahoSystem.init(PentahoSystem.java:207)
at org.pentaho.platform.web.http.context.SolutionContextListener.contextInitialized(SolutionContextListener.java:135)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4210)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4709)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:799)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:779)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:583)
at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:675)
at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:601)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:502)
↧
↧
Customize date range input component in pentaho CDE ..
Hi ,
I want to customize the date range input component To display only 4 options.
1.This week
2.Next week
3.Fortnight
4.Current Month
I have tried to change the biserver-ce\pentaho-solutions\system\pentaho-cdf\js\daterangepicker\daterangepicker.jQuery.js file.
When I do this date picker component reflects the changes but in all the dashboards now its giving me same options.
I want the default options provided by the date range input component and in 2nd dashboard need the 4 options defined as above..
so modifying daterangepicker.jQuery.js file is not an option.
so can any one please suggest me how to customize the date range input component?
I want to customize the date range input component To display only 4 options.
1.This week
2.Next week
3.Fortnight
4.Current Month
I have tried to change the biserver-ce\pentaho-solutions\system\pentaho-cdf\js\daterangepicker\daterangepicker.jQuery.js file.
When I do this date picker component reflects the changes but in all the dashboards now its giving me same options.
I want the default options provided by the date range input component and in 2nd dashboard need the 4 options defined as above..
so modifying daterangepicker.jQuery.js file is not an option.
so can any one please suggest me how to customize the date range input component?
↧
What is best way to do daily rebuild of 100MM row fact table with analytic rankings?
Hi, I'm looking for best practice suggestions on how to accomplish this task. I'm using PDI 5.0.1
What is the best way in PDI to pull 100 million summarized fact rows from Oracle Exadata, merge in yesterday's transactions, and redo all analytics (sums by customer, product and rankings per customer and product)?
I can do this in the database, but I am looking for PDI solution for eventual move to the cloud. Customer ID is very high cardinality, product ID less so.
I'm open to suggestions including:
If you can suggest specific PDI Steps to use, that would be much appreciated.
Thanks,
Adam
What is the best way in PDI to pull 100 million summarized fact rows from Oracle Exadata, merge in yesterday's transactions, and redo all analytics (sums by customer, product and rankings per customer and product)?
I can do this in the database, but I am looking for PDI solution for eventual move to the cloud. Customer ID is very high cardinality, product ID less so.
I'm open to suggestions including:
- Can all data resides in file system? or pull all data from database for daily merge of new data and recalculation of rankings?
- Use PDI partitioning?
- Should I be looking at a big data solution from Pentaho?
- Other ideas?
If you can suggest specific PDI Steps to use, that would be much appreciated.
Thanks,
Adam
↧
Select Multiple datasource
Hello,
I'm trying to make a bar-line chart. The problem is, i dont know how to separated my value's without an extra query.
The data is in the database like this:
So when i'm making a graph it just use 1 axis, while i want to split the 1.1,1.2,1.3 etc to the left Y-axis and the 2.1 etc to the right axis.
I can write 2 different query's to filter those value's but cant select multiple data sources.
I'm trying to make a bar-line chart. The problem is, i dont know how to separated my value's without an extra query.
The data is in the database like this:
Date1 | Value1.1 |
Date1 | Value2.1 |
Date2 | Value1.2 |
Date2 | Value2.2 |
Date3 | Value1.3 |
Date3 | Value2.3 |
Etc | etc |
So when i'm making a graph it just use 1 axis, while i want to split the 1.1,1.2,1.3 etc to the left Y-axis and the 2.1 etc to the right axis.
I can write 2 different query's to filter those value's but cant select multiple data sources.
↧