[PATCH v2 0/5] Update REST API: Add 'project patches as mbox' field
Daniel Axtens
dja at axtens.net
Tue Jul 2 10:26:32 AEST 2019
Hi Mete,
> this patch is our effort in combining Patchwork with PaStA (Patch Stack
> Analysis). We described our intention in detail in our mail 'Patch
> stack analysis'.
Ah right, sorry, I lose track of who is doing what!
> We have to download all patches in a project in order to analyze and
> compare different ones. This is a one-time job. Later on, incoming
> patches are downloaded individually (similar to what snowpatch does).
> This approach allows us to keep the data between patchwork and PaStA
> consistent.
> We have understand the problem of server load. Do you have any
> suggestion for a solution?
So there are two possible complimenatry approaches I can think of:
- gather the data from a download of the mailing list that patchwork
injests. For LKML you can get this from
https://www.kernel.org/lore.html, for example.
You could then pass this through a local patchwork instance. (Let me
know if you want my scripts for importing a public-archive git repo
into patchwork.)
- add a management command to export a project as an mbox and then
coordinate with patchwork admins at the instance you're interested in
to run the export at a time that suits them and provide you with a
heavily compressed copy of the output.
Regards,
Daniel
>
> Regards,
>
> Mete
>>> Updated REST API version to 1.2
>>>
>>> New REST API url: api/1.2/
>>> New internal url: project/<project_id>/list/mbox/
>>> New project rest api field: patches_mbox
>>>
>>> Like patchwork.example.com/project/<project_id>/list/ the final project.mbox
>>> only includes patches. Careful naming has been made in case the api should
>>> support export of a whole project in the future as well.
>>>
>>> Changes since v1:
>>> - Add missing url for api version 1.2
>>>
>>> Mete Polat (5):
>>> Add option to get all project patches in one mbox
>>> Add urls to get all project patches in one mbox
>>> Add api endpoint for project patches as mbox
>>> Update api documentation for v1.2
>>> Add release notes: project patches as mbox
>>>
>>> docs/api/rest/index.rst | 50 +-
>>> docs/api/rest/schemas/v1.1.rst | 4 +-
>>> docs/api/rest/schemas/v1.2.rst | 5 +
>>> docs/api/schemas/generate_schema.py | 4 +-
>>> docs/api/schemas/latest/patchwork.yaml | 7 +-
>>> docs/api/schemas/patchwork.j2 | 7 +
>>> docs/api/schemas/v1.2/patchwork.yaml | 2319 +++++++++++++++++
>>> patchwork/api/project.py | 11 +-
>>> patchwork/models.py | 25 +-
>>> patchwork/urls.py | 6 +-
>>> patchwork/views/patch.py | 12 +
>>> patchwork/views/utils.py | 13 +
>>> ...project-patches-mbox-623f8c9d4cf6a952.yaml | 6 +
>>> 13 files changed, 2428 insertions(+), 41 deletions(-)
>>> create mode 100644 docs/api/rest/schemas/v1.2.rst
>>> create mode 100644 docs/api/schemas/v1.2/patchwork.yaml
>>> create mode 100644 releasenotes/notes/project-patches-mbox-623f8c9d4cf6a952.yaml
>>>
>>> --
>>> 2.22.0
>>>
>>> _______________________________________________
>>> Patchwork mailing list
>>> Patchwork at lists.ozlabs.org
>>> https://lists.ozlabs.org/listinfo/patchwork
More information about the Patchwork
mailing list