You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Batch processing stuck after this log "Loading font({}) from {} supplier now" . which is under public boolean realizeFont() of class PdfBoxFontResolver.java.
below is the code for building PdfRendererBuilder().
while interating with openhtmltopdf(version 1.0.10), towards the END of the batch processing, the job gets stuck under openhtmltopdf.load(PdfBoxFontResolver.java), this issue is not document specific, CPU utilization is around 50%, so that's also not an issue, can you let me know where should I investigate the issue from?
Can this be concurrency issue? there is no error msg or exception, is pdfBox threadsafe?
Batch processing stuck after this log "Loading font({}) from {} supplier now" . which is under public boolean realizeFont() of class PdfBoxFontResolver.java.
below is the code for building PdfRendererBuilder().
new PdfRendererBuilder()//
.useProtocolsStreamImplementation(streamFactory, "classpath") //
.useFastMode() //
.useDefaultPageSize(paperSize.getWidth(), paperSize.getHeight(), BaseRendererBuilder.PageSizeUnits.MM)
.useSVGDrawer(new BatikSvgDrawerWrapper()) //
.withW3cDocument(w3cDoc, "classpath:/") //
.toStream(out) //
.useReplacementText("\uFFFD") //
.usePageSupplier(pageSupplier)
.run();
THIS IS HEPPENING IN MULTITHREADED ENVIRONMENT.
while interating with openhtmltopdf(version 1.0.10), towards the END of the batch processing, the job gets stuck under openhtmltopdf.load(PdfBoxFontResolver.java), this issue is not document specific, CPU utilization is around 50%, so that's also not an issue, can you let me know where should I investigate the issue from?
Can this be concurrency issue? there is no error msg or exception, is pdfBox threadsafe?
@danfickle can you please have a look?
The text was updated successfully, but these errors were encountered: