Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got Piwik set up on Windows Server 2012 and I'm importing about 20Gb of historical log files, spread across 10 different sites.

I've merged my log files for each site into several huge text files, since a wildcard import isn't possible on Windows.

The import process is taking ages, and I'm currently only getting about 25 records/sec on a quad-core server with 16Gb RAM.

How can I speed it up?

share|improve this question

1 Answer

I've found the key to speeding up Piwik log importing on Windows is the --recorders setting.

The Piwik documentation recommends about the same number of recorders as CPU cores on the server, but I think this assumes that the CPU is the bottleneck. In my case I'm only getting about 5% CPU utilisation, so clearly something else is holding things up. I suspect it's my PHP / IIS / MySQL setup, because the Piwik front end is a bit sluggish as well.

I've added --recorders=64 and now I'm getting a much more respectable 170 records/sec.

This still feels a bit slow though, so any other suggestions would be welcome.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.