简体   繁体   中英

Forge Model derivative fails for large IFC files

I was trying to use model derivative API for translating fairly large (~6GB) IFC file.

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.

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 .

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 . In the response, the size attribute is the file size uploaded onto Forge server. 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"
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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