06-11-2021 06:23 AM
Bonjour à tous,
J'ai utilisé la commande curl suivante pour lancer une commande bulk afin de ré-initialiser une métadonnée.
curl --location --request POST 'http://localhost:8080/nuxeo/api/v1/search/bulk/setProperties?query=SELECT%20*%20FROM%20Art%20WHERE%20ecm:mixinType%20!=%20%27HiddenInNavigation%27%20AND%20ecm:isProxy%20=%200%20AND%20ecm:isVersion%20=%200%20AND%20ecm:isTrashed%20=%200%20and%20art:links/*%20is%20not%20null%20order%20by%20ecm:uuid' \
--header 'Content-Type: application/json' \
--data-raw '{
"art:links": []
}'
Après un certain temps et pour contôler l'avancement du taitement, j'ai lancé la commande curl suivante:
curl --location --request GET 'http://localhost:8080/nuxeo/api/v1/bulk/e4fbc29e-a91d-4410-9e06-b79f7773cade' \
--header 'Content-Type: application/json' \
Et donc j'ai eu la réponse suivante:
{
"entity-type": "bulkStatus",
"commandId": "e4fbc29e-a91d-4410-9e06-b79f7773cade",
"state": "COMPLETED",
"processed": 282576,
"error": false,
"errorCount": 0,
"total": 70776,
"action": "setProperties",
"username": "Administrator",
"submitted": "2021-06-11T08:47:34.259Z",
"scrollStart": "2021-06-11T08:54:35.865Z",
"scrollEnd": "2021-06-11T08:56:45.019Z",
"processingStart": "2021-06-11T08:56:45.060Z",
"processingEnd": "2021-06-11T09:02:41.120Z",
"completed": "2021-06-11T09:00:12.326Z",
"processingMillis": 706376
}
Je comprends pas pourquoi le nombre de document processed est supérieur au total nombre d'article ?
Quelqu'un a-t-il une explication à cela ?
Merci d'avance.
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.