Skip to content

Support bulk insert #49

@surister

Description

@surister

Django supports notifying the driver that it wants to create objects in bulk with bulk_create, e.g:

>>> objs = Entry.objects.bulk_create(
...     [
...         Entry(headline="This is a test"),
...         Entry(headline="This is only a test"),
...     ]
... )

In CrateDB bulk inserts in the http protocol can be implemented with bulk_args.

We should bridge both PRs to implement fast bulk insertion

Metadata

Metadata

Assignees

No one assigned

    Labels

    Difficulty: MediumPrevious knowledge of Django and databases is expected, with minimal or medium guidance.enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions