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
To support any possible batch job configuration, this extension chose to store the config in the byte_array db table (which is fine).
Problem: it is not possible to analyse failed jobs, because the configuration field in the DB just contains a pointer to a byte array entry which json content contains an encoded String, which is not human readable.
I was able to read the config by decoding the json strings selected from the DB .. but it took some effort and additional coding.
Idea: Provide a service, where I can enter the job id and get the json config. Additionally: provide a service where I pass the batch id and get the config of all contained jobs.
The text was updated successfully, but these errors were encountered:
To support any possible batch job configuration, this extension chose to store the config in the byte_array db table (which is fine).
Problem: it is not possible to analyse failed jobs, because the configuration field in the DB just contains a pointer to a byte array entry which json content contains an encoded String, which is not human readable.
I was able to read the config by decoding the json strings selected from the DB .. but it took some effort and additional coding.
Idea: Provide a service, where I can enter the job id and get the json config. Additionally: provide a service where I pass the batch id and get the config of all contained jobs.
The text was updated successfully, but these errors were encountered: