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 would like to ask if anyone has experience with generating thousands of PDFs in very short time in PHP?

There are many recommendations for different libraries on the web: mPDF, fPDF, tfPDF. But i didn't find any discussing about, for example, generating thousands of PDF in a minute.

I need to generate many invoices and convert them to the PDFs. Has anyone of you ever solve similar problem?

share|improve this question
1  
I think whether other people have experience with it or not is not going to be very constructive or helpful for you. Please form a more answerable question, like "what are the main bottlenecks and how to alleviate them" or something along these lines. – deceze Oct 3 '12 at 6:37
generating a report with pdf in a minute is so impossible and it's not only with pdf reports but also other reporting tools i had an experience in generating report with thousand of them that cause me a lot of time... – Clint Bugs Oct 3 '12 at 6:42
i'll second @deceze, you should narrow your question. In other hand, i would consider if i have to make all files ready at the same time vs. create PDF when requested, on the fly. If data is stored in db or something already, why duplicate it as pdf? – Tom Oct 3 '12 at 6:49
@Clint "Impossible within a minute"?! Oh please... – deceze Oct 3 '12 at 6:59
@deceze with thousand of reports – Clint Bugs Oct 3 '12 at 7:09
show 4 more comments

closed as not a real question by dystroy, deceze, JvdBerg, Eitan T, Bali C Oct 3 '12 at 8:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

We have written a scalable code for generating hundreds pdf's and can scale, if the infrastructure allows it.

  1. Use a queueing system like rabbitMQ or beanstalkd

  2. Write multiple crons for easy scaling a) One to generate html string. b) One to create PDF(use wkhtmlpdf or dompdf) c) To save or do some actions on pdf

  3. Use supervisord to manage/control number of crons.

  4. Some sql or key/value store can be used for event management.

share|improve this answer

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