I'm starting my data warehouse, and I am using Pentaho data integration, Mondrian and Pentaho bi server. The database is MySQL but I've tried PostgreSQL. But my dashboard is with a very low performance. Unfortunately I can not increase much my physical resources. I thought of loading the cache previously (precache), but I do not know if it will be the best solution. Thank you
Low performance Pentaho BI Server
1.6k Views Asked by pmcleite At
1
There are 1 best solutions below
Related Questions in PERFORMANCE
- Upsert huge amount of data by EFCore.BulkExtensions
- How can I resolve this error and work smoothly in deep learning?
- Efficiently processing many small elements of a collection concurrently in Java
- Theme Preloader for speed optimization in WordPress
- I need help to understand the time wich my simple ''hello world'' is taking to execute
- Non-blocking state update
- Do conditional checks cause bottlenecks in Javascript?
- Performance of sketch drastically decreases outside of the P5 Web Editor
- sample query for review for improvement on big query
- Is there an indexing strategy in Postgres which will operate effectively for JOINs with ORs
- Performance difference between two JavaScript code snippets for comparing arrays of strings
- C++ : Is there an objective universal way to compare the speed of iterative algorithms?
- How to configure api http request with load testing
- the difference in terms of performance two types of update in opensearch
- Sveltekit : really long to send the first page and intense CPU computation
Related Questions in PENTAHO
- Git Not In Sync with Local Branch
- How to write a blob file to local filesystem using PDI?
- Where I download the Pentaho Community Edition, link breadk on sourceforge
- Pentaho PDI || Windows Current User
- Slowly Changing Dimension Type 2
- Json is sending Überlegung character convert in pentaho different format
- Amazon S3 multi part upload error using Pentaho 9.3
- Multiline parsing in Fluent-Bit for pentaho jobs on kubernetes
- Set Variable In a Pentaho Loop
- Get row number from stream to perform concat
- pass parameters to database connection in pentaho using jenkins freestyle job
- Troubleshooting 'No such file or directory' Error for Network Paths in Pentaho Server Job Execution
- Pentoho How to check ,If at least one row is LDAP is 0 with same user mutiple times
- Problems returning csv data, pentaho reading failure
- Pentaho Unable to access Remote Excel file
Related Questions in PENTAHO-CDE
- How to define the loop xpath in Pentaho
- Execute statement in pentaho cde sql over sqlJndi
- unable to write file to database
- i have a problem in pentaho bi server dynamic row
- Does Pentaho allow the "Filter rows" step to load a list of values?
- How to change default path in pentaho-server 9.0.0.0.423?
- Pentaho cde & Report-designer source
- Pentaho mondrian cube main sql query
- Using Pentaho CDE check component data as file name for export
- Looking for updates in Pentaho7.x for log 4j vulnerability and it's procedure
- Pentaho CDE Dashbord: how to export to excel multiple tables into one sheet with button click
- How input data in line chart in Pentaho?
- Checking multiple table existence in Pentaho
- How I can read the file on the everyday basis in pentaho in this format? "tcms_oneed_YYYYMMDD.txt"
- Pentaho - Spoon Decimal from Text File Input
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
How big is your DWH? How many rows do the fact and dimension tables contains.
Optimize your current DWH following the recommendations for database tuning (Mondrian Performance). Identify slowest queries on dashboards and use Mondrian aggregate tables for them (use Pentaho Aggregation Designer for creating them).
Alternatively if you use the Pentaho BI server CE try to use CDC (Community Distributed Cache) to precache some cubes etc. after loading fresh data to DWH as a last step of your ETL process.
The third option is to consider switching from a row oriented db (MySQL, PostreSQL) to a column oriented db (MonetDB, Vertica).