简体   繁体   English

对于大型IFC文件,Forge Model衍生产品失败

[英]Forge Model derivative fails for large IFC files

I was trying to use model derivative API for translating fairly large (~6GB) IFC file. 我试图使用模型衍生API来翻译相当大(〜6GB)的IFC文件。

I've used chunked upload for uploading file, and successfully finished uploading file to the server. 我使用分块上传来上传文件,并成功完成了将文件上传到服务器的操作。

However, after submitting job, model derivative process has exited with following message: 但是,提交作业后,模型派生过程已退出,并显示以下消息:

messages":[{"type":"error","message":"Unrecoverable exit code from extractor: -1073741829","code":"TranslationWorker-InternalFailure"}]

I was not able to correctly identify the issue further more; 我无法进一步正确识别问题; Would you please help me debug the issue please? 您能帮我调试问题吗?

If you need URN and the original file, please let me know. 如果您需要URN和原始文件,请告诉我。

Thanks! 谢谢!

Commonly, the default storage size of the Forge OSS buckets for each developer account is limited to 5GB as I know, please see details here . 通常,据我所知,每个开发者帐户的Forge OSS存储桶的默认存储大小限制为5GB,请在此处查看详细信息。

If your model file size exceeds this limit, the total size of the uploaded model might be incomplete. 如果您的模型文件大小超出此限制,则上载模型的总大小可能不完整。 An easy to check the total uploaded file size in bytes is call GET buckets/:bucketKey/objects or GET buckets/:bucketKey/objects/:objectName/details . 一个简单的以字节为单位的上传文件总大小检查方法是GET buckets /:bucketKey / objectsGET buckets /:bucketKey / objects /:objectName / details In the response, the size attribute is the file size uploaded onto Forge server. 在响应中, size属性是上传到Forge服务器上的文件大小。 You can compare it with the file in your computer disk. 您可以将其与计算机磁盘中的文件进行比较。

{
    "bucketKey": "apptestbucket",
    "objectId": "urn:adsk.objects:os.object:apptestbucket/test.ifc",
    "objectKey": "test.ifc",
    "sha1": "e9d93eb76f98f60b2b79d4e8e848c556a99fdf8e",
    "size": 88167,
    "location": "https://developer.api.autodesk.com/oss/v2/buckets/urn:adsk.objects:os.object:apptestbucket/test.ifc"
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM