-
|
Does anyone know how to avoid this error? See also https://phabricator.wikimedia.org/T324350 User story: as a developer I want to be able to limit the request size that WBI sends to Wikibase, so I can honor the request limits set in nginx. See also internetarchive/iari#369 and related issues there. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You have these arguments that can help you in the
so you can do something like |
Beta Was this translation helpful? Give feedback.
You have these arguments that can help you in the
write()method of each entity type (WikibaseIntegrator/wikibaseintegrator/entities/baseentity.py
Line 207 in 36f7acb
so you can do something like
write(data, limit_claims=['P1082'], fields_to_update=EntityField.CLAIMS)to only update the …