Dear All,
I am running trytond 3.4 (latest minor version) on FreeBSD with the default unoconv pipe settings "unoconv = pipe,name=trytond;urp;StarOffice.ComponentContext" inside my configuration file.
LibreOffice headless version is 5.0.6.3.
I run trytond as user trytond.
If I run: su trytond -c "unoconv -c 'pipe,name=trytond;urp;StarOffice.ComponentContext' /tmp/test_document.odt", everything works fine.
Using the default trytond report configuration with 'OpenDocument Text" as Template Extension and with empty Extension, I can print labels, which are produced via my local (workstation) LibreOffice instance.
Changing Extension to Portable Document Format" produces this error:
--------------------------------%<-----------------------------
Traceback (most recent call last):
File "/site-packages/trytond/protocols/jsonrpc.py", line 150, in _marshaled_dispatch
response['result'] = dispatch_method(method, params)
File "/site-packages/trytond/protocols/jsonrpc.py", line 179, in _dispatch
res = dispatch(*args)
File "/site-packages/trytond/protocols/dispatcher.py", line 161, in dispatch
result = rpc.result(meth(*c_args, **c_kwargs))
File "/site-packages/trytond/report/report.py", line 144, in execute
type, data = cls.parse(action_report, records, data, {})
File "/site-packages/trytond/report/report.py", line 300, in parse
data = cls.unoconv(data, report.template_extension, output_format)
File "/site-packages/trytond/report/report.py", line 320, in unoconv
raise Exception(stderrdata)
Exception: None
--------------------------------%<-----------------------------
This, although the direct deployment of unoconv works, see above. If at all possible, I would like to do away with the need to call LibreOffice locally on the workstation.
Am I missing something, or is this a bug? thanks a lot!
Chris
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
> Mathias Behrle <mbehrle@m9s.biz> added the comment:
>
>> Sergi Almacellas Abellana <sergi@koolpi.com> added the comment:
>>
>> @yangoon why you don't propose the patch to be included in trytond?
>
> IIRC we did that yet for 2.2 and at that time it was not accepted.
I haven't found any issue on the bugtracker, could you please give some link so I can follup up? Thanks
On 04/10/16 18:19, Oscar Andres Alvarez wrote:
> Oscar Andres Alvarez <oscar.alvarez.montero@gmail.com> added the comment:
>
> I can confirm this bug on tryton 4.0, when PDF format is setted
>
> ----------
> nosy: +oscar
>
> _______________________________________________
> Tryton issue tracker @tryton.org>
> <https://bugs.tryton.org/#5907>
> _______________________________________________
Thanks, Oscar. A major inconvenience, a I do not want to install
LibreOffice locally on the workstation.
Imagine Africa, brittle infrastructure, poor access to reliable mains
power, patchy internet cover and enthusiasitc, but poorly trained users:
Less is more. PDF wins.
Why not removing unoconv and instead just use the command line option of LibeOffice:
soffice --headless --convert-to pdf file.odt
Of course we will have to start a new process for each conversion but it is already the case with the default option.
But the main advantage is that it does not rely on the uno/pyuno API of LibreOffice which shows to be not very reliable.
The issue with the current implementation is that any call to unoconv starts a new server to make the conversion. This creates conflicts on the instance of oo.
We fixed that by:
- launching unoconv as a standalone server (--listener)
- change trytond calls to be client only (--no-launch)
Since that change, unoconv is much more stable
NB. The issue with that review is that no more server is possible and we are not sure to get conflicts gone since they are due to libreoffice.
On 2016-10-25 17:44, Ali Kefia wrote:
> - launching unoconv as a standalone server (--listener)
> - change trytond calls to be client only (--no-launch)
> Since that change, unoconv is much more stable
Still possible by provide a custom soffice script in the PATH.
> NB. The issue with that review is that no more server is possible and we are not sure to get conflicts gone since they are due to libreoffice.
I have tested three loops running at the same time converting 100 odt each one.
I have seen no conflicts so far and I see three soffice process running at the same time.
Maybe but I still do not buy your test script. If you look at the start-up script of soffice, it does many exec and one is oosplash.
Indeed you should wait for each jobs.
I think we should allow to override the way how the conversion is to be done. with the planned override mechanism for base classes this should be doable easily. I think it would be good to move the conversion out to some workers. Especially in bigger installations or installations with bigger documents this could be a good solution. For the future i think it would be good to have another report engine that focuses on creating pdfs for all reports that do not need to be convertable.
On 2016-10-26 17:35, Korbinian Preisler wrote:
> I think we should allow to override the way how the conversion is to be done. with the planned override mechanism for base classes this should be doable easily.
Yes of course this will be a good improvement and by the way the
refactoring of Report from 3.6 defines a single method for format
conversion.
> I think it would be good to move the conversion out to some workers. Especially in bigger installations or installations with bigger documents this could be a good solution.
This will be done like for the redis cache. But by default, we need a
simple solution that works out of the box.
For what I understand, the failure are due to missing resources (maybe memory as we start a many processes).
So I will update the patch to make few retries in such case but I will also delay it until we have the mechanism to extend globally the Report class.
Cédric Krieradded 1 deleted label and removed 1 deleted label
Indeed I will not add a loop because for now the patch will raise an issue in such case and also if there are not enough resources relaunching the process will not help.
>The issue with the current implementation is that any call to unoconv starts a new server to make the conversion. This creates conflicts on the instance of oo.
>We fixed that by:
>- launching unoconv as a standalone server (--listener)
>- change trytond calls to be client only (--no-launch)
>Since that change, unoconv is much more stable
>NB. The issue with that review is that no more server is possible and we are not sure to get conflicts gone since they are due to libreoffice.