Skip to content

Enhancement/Improve annotation creation performance#390

Merged
Hironsan merged 2 commits intodoccano:masterfrom
CatalystCode:enhancement/improve-annotation-creation-performance
Nov 19, 2019
Merged

Enhancement/Improve annotation creation performance#390
Hironsan merged 2 commits intodoccano:masterfrom
CatalystCode:enhancement/improve-annotation-creation-performance

Conversation

@c-w
Copy link
Copy Markdown
Member

@c-w c-w commented Oct 8, 2019

I noticed slowdowns in the annotation workflow with large documents, similar to the what has been described in #144.

The slowdowns seem to be linked to the performance of two requests:

  • GET /v1/projects/<project_id>/statistics
  • POST /v1/projects/<project_id>/docs/<doc_id>/annotations

This pull request improves the performance of the annotation creation workflow via two main optimizations:

  • Avoid computing the label and user keys in the statistics response after a new annotation has been created (these properties get used on the stats page, not the annotations page). This saves a database aggregation query.

  • Avoid pulling back the full document from the database on annotation creation (the annotation object only has a link to the document so we can use the document id to create the annotation and don't need to hydrate a full document object reference). This saves a database read that may potentially be expensive if the document is large as we may be pulling back thousands of lines of text from the database into the Django server.

@c-w c-w force-pushed the enhancement/improve-annotation-creation-performance branch from 33bb417 to a87ed71 Compare October 8, 2019 16:13
@c-w c-w force-pushed the enhancement/improve-annotation-creation-performance branch from a87ed71 to b40b2e8 Compare October 25, 2019 16:10
@Hironsan Hironsan merged commit e1b5e9d into doccano:master Nov 19, 2019
@c-w c-w deleted the enhancement/improve-annotation-creation-performance branch November 19, 2019 17:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants