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 |
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744229222a4564161.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