<div dir="ltr"><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">tl;dr question is how to disable &#39;graceful startup&#39;. Skip the background if you know what that means. :)</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Background</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Back in 2016 when we added the feature to allow a server to be started in &#39;suspended&#39; state[1], that work also included a fix for the longstanding bug whereby during server start endpoints would be started and accepting external requests before all the services (e.g. from deployments) would be started. The result would be requests could reach the still-starting server and would fail, e.g. HTTP requests might get a 404 or some variety of 500.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">I refer to this bug fix as &#39;graceful startup&#39;.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Since the fix was introduced we&#39;ve gotten quite a number of requests to be able to turn off that bug fix, e.g. WFCORE-4291.[2] The scenario is users deploy two apps, where app A during start makes an *external* request to app B and won&#39;t complete start until that request is handled. And, the users deploy both A and B in the same server. The server won&#39;t allow the external request during boot, so A won&#39;t complete start and thus the overall server start hangs until timeout.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">I consider this kind of deployment pattern to be a bit of an anti-pattern, but we&#39;ve gotten enough request to allow it that I&#39;m looking into how to satisfy it. Also, at least for HTTP requests, mod_cluster can be used to prevent external requests reaching a server before things are ready, so if the &#39;internal&#39; requests were not sent through the LB there&#39;s at least one &#39;error free&#39; use case for this.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">The Question</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Question is whether to </div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">a) have an overall config switch to disable graceful startup across the board (e.g. a new value for the --start-mode cmd line param passed to standalone.sh)</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">b) have a subsystem specific setting in the undertow subsystem that configures undertow to allow requests in during boot.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Pros of a)</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">* Other request patterns are also handled. For example, if our app A was making a remote EJB call to app B, then an undertow only setting won&#39;t handle it. If we start adding multiple per-subsystem flags it gets ugly.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">* Requests to web applications may still fail, as there are other aspects of the server that are rejecting certain calls until &#39;graceful startup&#39; is complete. For example ee-concurrency rejects adding scheduled tasks (although that is somewhat a bug[3]), and the XTS integration looks to be designed to reject certain requests.[4] There may be others. If we have make web requests an exceptional pattern, going forward we have to account for that pattern in everything.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">* The undertow subsystem itself has two different mechanisms for rejecting requests, with three different call patterns, all of which would need to be adapted.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Pros of b)</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">* It limits the change to the HTTP use case, the one where we know mod_cluster can be used to prevent external requests.</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">* I&#39;m not sure about the batch subsystem; i.e. whether it is ok to have batch jobs starting before server start is complete. If the relevant services all have MSC dependencies on everthing they need it should be ok. If not there needs to be some adaptation listen for when the server is fully started, which seems doable.</div><div class="gmail_default" style=""><font face="trebuchet ms, sans-serif">* There may be code that is using this &#39;graceful startup&#39; as a way not to prevent end user activity, but to prevent premature internal server activity. I think </font>RecoverySuspendController may be an example of this; i.e. preventing start of the tx recovery thread until the server is started. But for this kind of thing there are other, better solutions.</div><div class="gmail_default" style=""><br></div><div class="gmail_default" style=""><br></div><div class="gmail_default" style="">Right now my preference is a), a global switch. If we&#39;re doing this I&#39;m not inclined to limit it to HTTP only as I expect we&#39;ll just have to revisit it later. And I think I know how to deal with the more technical pros of the http-only approach.</div><div class="gmail_default" style=""><br></div><div class="gmail_default" style="">WDYT?</div>





<div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div><div class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif"></div><div class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif">[1] <a href="https://issues.jboss.org/browse/WFCORE-1829" style="font-family:Arial,Helvetica,sans-serif">https://issues.jboss.org/browse/WFCORE-1829</a></div><div class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif">[2] <a href="https://issues.jboss.org/browse/WFCORE-4291">https://issues.jboss.org/browse/WFCORE-4291</a></div><div class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif">[3] <a href="https://issues.jboss.org/browse/WFLY-12329">https://issues.jboss.org/browse/WFLY-12329</a></div><div class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif">[4] <a href="https://github.com/wildfly/wildfly/pull/9419" style="font-family:Arial,Helvetica,sans-serif">https://github.com/wildfly/wildfly/pull/9419</a></div><div class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif"><br></div><div class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif"><br></div><br></div><span class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif">Best regards,</span><div><span class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif">Brian</span></div><div><span class="gmail_default" style="font-family:&quot;trebuchet ms&quot;,sans-serif"><br></span></div></div>