admin管理员组文章数量:1399972
The PlotToPDF Design Automation fails for certain jobs. I am not sure the reason, as I only find "Failed Instructions". This happens around 12 mins after the work item starts processing. I am using a custom activity that targets a specific layout and loads a specific .ctb file. However, I had success with the same for other drawings. How do I confirm the cause of error? I have set the limitProcessingTimeSec
to 1 hour. I understand the limitTotalUncompressedAppsSizeInMB
cannot be updated via API. What are my options, in case the drawing with all it's XREFs exceed the quota limit?
Log is below:
The PlotToPDF Design Automation fails for certain jobs. I am not sure the reason, as I only find "Failed Instructions". This happens around 12 mins after the work item starts processing. I am using a custom activity that targets a specific layout and loads a specific .ctb file. However, I had success with the same for other drawings. How do I confirm the cause of error? I have set the limitProcessingTimeSec
to 1 hour. I understand the limitTotalUncompressedAppsSizeInMB
cannot be updated via API. What are my options, in case the drawing with all it's XREFs exceed the quota limit?
Log is below:
Share Improve this question asked Mar 24 at 20:46 theandroidtheandroid 1,0631 gold badge8 silver badges15 bronze badges 5 |1 Answer
Reset to default 1For anyone else, scratching their head, this is how I solved the problem.
I was under the assumption that AutoCAD Engine 24_0 corresponds to AutoCAD 2024 version. The only place where I could find which engineID corresponds to which AutoCAD version is the DA release notes
Alternatively, passing the engineId to the Engines datapoint Eg:
https://developer.api.autodesk/da/us-east/v3/engines/Autodesk.AutoCAD+24_1
provides you with the description field that indicates which version it supports.
So for my use case, since the drawings are based on Civil3D 2024
, I had to use Autodesk.AutoCAD+24_3
as the engineId.
Posting for easy reference:
AutoCAD / Civil3D version | Design Automation AutoCAD Engine |
---|---|
2021 | Autodesk.AutoCAD+24_0 |
2022 | Autodesk.AutoCAD+24_1 |
2023 | Autodesk.AutoCAD+24_2 |
2024 | Autodesk.AutoCAD+24_3 |
2025 | Autodesk.AutoCAD+25_0 |
本文标签: autodesk forgePlot To PDF Design Automation failing with Failed InstructionsStack Overflow
版权声明:本文标题:autodesk forge - Plot To PDF Design Automation failing with Failed Instructions - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744229222a2596245.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
limitProcessingTimeSec
orlimitTotalUncompressedAppsSizeInMB
. Which version your jobs run on? It will be more helpful if you can provide WorkItem Id. – Emma Zhu Commented Mar 25 at 3:0624_1
will be deprecated soon – Emma Zhu Commented Mar 26 at 2:2225_0
) may solve the error. If not, please let us know by sharing the WorkItem Id and the information to repo the issue(please check all needed information at: aps.autodesk/en/docs/design-automation/v3/developers_guide/…) – Emma Zhu Commented Mar 26 at 2:26