PrG_Job_Failure.xml 1.5 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
  4. <sect1 id="Job_Failure">
  5. <title><emphasis role="bold">Job “Failure”</emphasis></title>
  6. <para>Sometimes jobs fail. And sometimes that behavior is by design.</para>
  7. <para>For example, attempting to send an entire output result back to the
  8. ECL IDE program when that result contains more than 10 megabytes of data
  9. will cause the job to "fail" with the error “Dataset too large to output to
  10. workunit (limit 10 megabytes).” This job “failure” is deliberate on the part
  11. of the system (and you can reset this particular limit on a per-workunit
  12. basis using #OPTION), because any time you are writing that amount of data
  13. out you should be writing it to a file to de-spray. Otherwise, you will
  14. rapidly fill your system data store.</para>
  15. <para>Other examples of this type of deliberate system "failure" is
  16. exceeding skew limits or exceeding any other runtime limit. For some of
  17. these limits there are ways to reset the limit itself (which is usually NOT
  18. the best solution). Otherwise, the deliberate “failure” is a signal that
  19. there is something inherently wrong with the job and perhaps the approach
  20. you are using needs to be re-thought.</para>
  21. <para>Contact Technical Support whenever such an issue arises and we will
  22. help you formulate a strategy to accomplish what you need to without
  23. incurring these deliberate system "failures."</para>
  24. </sect1>