-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dupe php, mysql, massive data set #386
Comments
``` ``` |
getDateStart getDateEnd in *period are not optimized. could somehow be cached. |
when the plugins are not used in the piwik.php logging script, don’t load the related files |
Find memory leaks in PHP If the image processing extension uses emalloc() style allocation, then you can compile php with —enable-debug and you will get a report of all leaks and their location at the end of the script. Note that you must finish with “return” or nothing to get the report, not with “exit”. But that won’t pick up malloc() leaks. For that though you can use http://www.valgrind.org if you are running under unix. https://www.zend.com/forums/index.php?t=msg&goto=13062&S=7f75627561a92cfe442aaed40c3306eb xdebug.show_mem_delta |
One other idea would be to remove the count(distinct idvisitor) in the archiving query. other products like GA don’t give the count of unique for each metric; that could eventually be a setting to decide to count unique or not. we would still count uniques for the global stat, per month, week, day. |
Optimizing Large Databases Using InnoDB Clustered Indexes http://www.mysqlperformanceblog.com/2006/10/03/long-primary-key-for-innodb-tables/ |
> I have set up a git branch at github to help port piwik to postgresql : The github is here : http://github.com/klando/pgpiwik/tree/master Just do that to grab it : git clone git://github.com/klando/pgpiwik.git |
see also #620: Piwik should use autoload to automatically load all classes intead of using require_once |
plandem, see the thread on piwik-hackers for some thinking around alternative nosql databases in piwik: http://lists.piwik.org/pipermail/piwik-hackers/2010-February/000829.html |
There's also an interesting FAQ/blog post re: Infinidb's column-oriented storage engine for MySQL vs "NoSQL": |
Infinidb sounds like something we should definitely investigate first, as it might be much (much) easier to use with the current Piwik architecture. Are there limitations when "dropping it" in instead of mysql? |
There's now a migration guide for InfiniDB. The relevant section starts at page 17. The only limitation to the open source, community edition is the limit to a single machine (not CPUs, RAM, or concurrent users). Theoretically, you can build a fairly powerful box (think: multi-core, multi-processor boards) before you have to think about adding nodes (and license fees for the enterprise edition). |
It looks like you have a good handle on where to start looking at InfiniDB. I took a quick look at your schema and don't see any fundamental problem with the log_visit fact table or the queries that reference it above. We do not (yet) support blob for your archive tables. The only other quick note I would add is that we aren't optimal for web/oltp style loads. However you could easily select * into outfile from existing schema, load data infile into InfiniDB to get good load rates, or use select into outfile, + cpimport (our bulk load) to get excellent load rates. 100k or more rows/second possible but will vary significantly based on disk and table definition. One additional note, our current parallization distributes ranges of 8 million rows to each thread, so smaller tables won't show the same benefits from many cores as larger tables. Anyway, currently signed up to follow this discussion, let me know if you have any questions or comments. Thanks - Jim Tommaney |
See percona paper about Goal driven performance optimization: http://www.percona.com/files/white-papers/goal-driven-performance-optimization.pdf |
It might be good to look into storing json encoded data tables rather than serialized php tables. This would improve portability. See http://stackoverflow.com/questions/1306740/json-vs-serialized-array-in-database as reference. Speed of json decoding large arrays VS unserialize should be tested. |
I created a summary ticket from this one, as this ticket became unclear. See #1999 |
SEE NEW TICKET AT: #1999
This ticket is a place holder for all performance related notes/thoughts/feedback.
There are already a number of interesting performance improvements tickets
Here is the list:
\* Piwik creates one cookie per install which is not scalable, we should build a server side DB based cookiestore: #409
\* Piwik logs should be rotated into a yearly table: #5
\* Bulk load Piwik logs (with a documented API) which would improve tracking performance, and make it easy to do performance testing #134
\* Fix memory leak error during Piwik archiving task for larger piwik setup #766
\* All Websites dashboard should work when Piwik has thousands of registered websites (currently only scales to a few hundreds websites) #1077
Building a regression and performance testing environment for Piwik
The objective of this project is to build a automatic and reusable performance testing infrastructure, that would make it easy to generate lots of hits and big data setsPartly described in #134.
- Setup performance testing server (called “preprod”) with monitoring
- Replaying logs from previous days (see #5554)
- Use preprod to have a precise idea of load that Piwik can handle (pages per day, per month), the size of data in mysql
- Use preprod to run Archiving and determine where Archiving is slow, or fails (via profiling).
- Use preprod to optimize the tracking mechanism (denormalize tables, review index strategy)
- Implement quick wins and plan for bigger changes 1 day
Once we have a system to assess performance, we could answer in a specific documentation page a few of the more common questions
- Does it use a lot of bandwith on your site?
- Does it take a lot of space/memory in the MySQL database?
- Does it make your site load (and work) slower?
- Expected DB size for a website with 1k, 10k, 100k visits and 1M pages.
List server configuration required to run Piwik: on a shared server / on a dedicated server.
List archiving processing time examples for large traffic.
- Suggest best setting configuration for small & medium (default config) and higher traffic installs
Interesting read on scalability & performance
```
```
To study
```
```
Keywords: performance fast scalability high traffic
The text was updated successfully, but these errors were encountered: