zalando-nakadi / nakadi-ui

Official Nakadi user interface.
MIT License
69 stars 12 forks source link

Error submitting large events. 413 Payload Too Large #72

Closed SergKam closed 5 years ago

SergKam commented 5 years ago

Default body parser limit of express.js is too small 100kb https://github.com/expressjs/body-parser#limit

Nakadi accepts batches with events up to 2 MB * numbers of events or 50Mb. (Zalando internal link) https://nakadi-faq.docs.zalando.net/#what-is-the-maximum-batch-size-nakadi-could-send-out

Resulting error 413 Payload Too Large

SergKam commented 5 years ago

Fixed