Nuxeo Management REST API

I am using the “Nuxeo Management REST API” addon to target an asset to recomputing the renditions. With an NXQL query param, I find the asset to reprocess, but the call shows nothing has been scheduled. I expect it to tell me one queued for processing, and then the new renditions would appear in the UI. If using the following call, shouldn't I see something being processed?

Request: POST http://localhost:8080/nuxeo/site/management/renditions/pictures/recompute?query=SELECT * FROM Document WHERE picture:views: = “Away.jpg”

Response: “entity-type”: “bulkStatus”, “commandId”: “—“, “state”: “SCHEDULED”, “processed”: 0' “error”: false, “errorCount”: 0, “total”: 0, “action”: “recomputeViews”, “username”: “—“, “submitted”: “2020-10-14T17:28:59.576Z”, “scrollStart”: null, “scrollEnd”: null, “processingStart”: null, “processingEnd”: null, “completed”: null, “processingMillis”: 0

0 votes

1 answers

930 views

ANSWER



Hello,

The response gives you a command id for the bulk service, corresponding to the process you have to trigger. The state is first SCHEDULED, and then will be updated along the time. If you query for the status of the bulk service, passing the command id (https://doc.nuxeo.com/nxdoc/bulk-action-framework/#bulk-rest-api) you'll see it is going to be updated along the time, until it is completed.

Regards

0 votes



If I understand correctly, you are saying that I am queuing the job with the Renditions query. I would then need a call that starts the queue. Is that the bulk status API call with the commandId? What is the API call that starts the queue? http://localhost:8080/nuxeo/site/api/v1/bulk/54018cf8-b58e-4e42-b754-729028caa4fa
10/20/2020

You don't have to explicitly ask to start the process, it's done automatically.
10/21/2020