wkhtmltopdf错误生成PDF与大量页眉/页脚的页面

我正在使用pdfkit(其中使用wkhtmltopdf)在我的Rails应用程序中生成PDF。 遵循这里的指导,我已经掌握了它主要用于PDF的基本案例。 在尝试生成包含页眉/页脚的大量页面的PDF时,我现在遇到了一个问题。 我在尝试生成PDF时从控制台的wkhtmltopdf中看到的错误是:

QEventDispatcherUNIXPrivate(): Unable to create thread pipe: Too many open files
QEventDispatcherUNIXPrivate(): Can not continue without a thread pipe

可以用来重新创建错误的html的最小示例:

<!-- content of pdf_header_url is the character "h" -->
<meta content="<%= pdf_header_url %>" name="pdfkit-header-html"/>
<!-- content of pdf_footer_url is the character "f" -->
<meta content="<%= pdf_footer_url %>" name="pdfkit-footer_html"/>
<% [*1..3].each do |j|%>
  <h1><%= j %></h1>
  <ul>
    <% [*1..1000].each do |i|%>
      <li><%= i %></li>
    <% end %>
  </ul>
<% end %>

请注意,删除header / footers标签可以让pdf呈现良好。

生成PDF的实际ruby代码是:

def view_report
  html = render_to_string(:template => 'pdf/pdf_body.html', :layout => false)
  kit = PDFKit.new(html)
  pdf = kit.to_pdf
  send_data pdf, :type => 'application/pdf', :disposition => 'inline', :filename => 'foo.pdf'
end

访问此控制器路由将生成PDF。 最后,我还有一个页眉/页脚的控制器,因为这些“partials”需要通过url获取:

class PdfController < ApplicationController

  def header
    render :layout => false
  end

  def footer
    render :layout => false
  end

end

为了最小可重现的例子,pdf_header_url和pdf_footer_url的字面意思就是“h”和“f”。

有没有人熟悉wkhtmltopdf有任何关于furthur调试步骤来解决这个问题的建议?


今天我收到了同样的错误消息,我用一个非常简单的解决方案解决了这个问题。 问题在于我的页眉和页脚需要使用html,head和body标签完整的html文档。 另外,看看你是否可以得到你的页眉和页脚生成的html输出并验证它们。


wkhtmltopdf每个页面使用两个文件描述符(页眉和页脚各一个),这是生成每页自定义变量所必需的。 您必须编辑/etc/security/limits.conf以将nofile (即,打开的文件的最大数量)设置为适当的数字 - 可能需要进行一些实验才能找到适合您的值。


打开文件限制。

我确保我的页眉和页脚文件是完整的HTML文档,正如Tom Hirschfeld所建议的那样,但我仍然得到了太多打开文件的错误。

在浏览互联网之后,我发现你需要限制一个进程允许打开的文件数量的限制。 就我而言,我正在生成数百到数千页的PDF。 它工作正常,没有页眉和页脚,但是当合并页眉和页脚时,它似乎打到了这个打开的文件上限。

根据您正在运行的系统有不同的方式来调整此设置,但这是我在Ubuntu服务器上的工作:

将以下内容添加到/etc/security/limits.conf的末尾:

# Sets the open file maximum here.
# Generating large PDFs hits the default ceiling (1024) quickly. 
*    hard nofile 65535
*    soft nofile 65535
root hard nofile 65535 # Need these two lines because the wildcards
root soft nofile 65535 # (the * above) are not applied to the root user.

有关ulimit命令的好参考可以在这里找到。

我希望能让一些人走上正轨。

链接地址: http://www.djcxy.com/p/63953.html

上一篇: wkhtmltopdf error when generating pdf with lots of pages with header / footer

下一篇: PDF not rendering HTML and CSS assets hosted via Asset Sync in production