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
Hi JDemetra+ devs,
We are using cruncher v3 in a data processing application implemented in Java. At a high level we are calling jdplus.cruncher.App.main with a valid workspace and parameters file, then parsing the output files for consumption by downstream services.
One issue with cruncher is that in most cases it does not produce any exceptions or logs when any of the SAItem.process calls fail, so we cannot know when/why a cruncher run failed (other than by seeing if it produces an empty output file).
Hi JDemetra+ devs,
We are using cruncher v3 in a data processing application implemented in Java. At a high level we are calling jdplus.cruncher.App.main with a valid workspace and parameters file, then parsing the output files for consumption by downstream services.
One issue with cruncher is that in most cases it does not produce any exceptions or logs when any of the SAItem.process calls fail, so we cannot know when/why a cruncher run failed (other than by seeing if it produces an empty output file).
The cause seems to be as follows:
Cruncher hardcodes the "verbose" param in this SAItem process call to false: https://github.com/jdemetra/jdplus-main/blob/develop/jdplus-main-cli/jdplus-main-cli-bin/src/main/java/jdplus/cruncher/batch/SaBatchProcessor.java#L89
This causes cruncher to use a DummyLog rather than the DefaultProcessingLog class - https://github.com/jdemetra/jdplus-main/blob/develop/jdplus-main-base/jdplus-toolkit-base-parent/jdplus-toolkit-base-api/src/main/java/jdplus/toolkit/base/api/processing/DefaultProcessingLog.java
Feature request
Would it be possible to update cruncher with the following changes:
The text was updated successfully, but these errors were encountered: