Re: Landing page load capabilities

Michael_McGowa1
Level 3

Landing page load capabilities

Hello all,

We have just launched a Marketo landing page with a Marketo form on it and I have been asked if we should be concerned about overloading the landing page in Marketo. Is there any documentation on simultaneous user load? For example, if 10,000 people hit the submit button in the form at once, should there be a concern that we will overload the page? Highly unlikely that there will be any issue but couldn’t find an answer.

2 REPLIES 2
Josh_Hill13
Level 10 - Champion Alumni

Re: Landing page load capabilities

You can ask Support.

Marketo uses a CDN and has migrated to more powerful processing. If you doubt you'd get 10k form submissions per second or per minute, I very much doubt you need to worry about load.

What you are more likely to experience is that 10,000 form fills creates a trigger backlog for a while if your campaign is attempting to process the responses.

SanfordWhiteman
Level 10 - Community Moderator

Re: Landing page load capabilities

Just seconding Josh's answer: no, you will not have to worry about overloading the page.

In fact, pressing Submit has nothing to do with "the page" itself -- that's posting the form to the forms endpoint, and unless you're talking about the Thank You page, there's no additional LP load as a result of the post.

Technical note: even in the absence of triggers, on a technical level upserting data from 10,000 form posts truly simultaneously is impossible.  This is true not just in Marketo, but in any distributed system. Data from all the posts might be accepted and queued for later insert roughly simultaneously (since that's an append-only step). But if data must be updated randomly throughout an existing database there must always be some degree of locking and serialization (db updates performed one after another, not at the the same time). Of course the total time taken could still be just a few seconds or minutes. But technically, very few things users perceive as "at the same time" are really happening without coordination.