We are running a Spring Boot Java application on a Heroku instance (our product instance).
There is a MultiPart REST endpoint available for an external (hardware) connector to upload some data. This data is expected (by the customer) to be not that big (we never saw it being bigger than 100KB). And as the external connector is some hardware, the customer cannot give us the real requests being sent.
Most of the time, the external connector successfully uploads the file. But sometimes it fails with a:
2025-05-08T12:31:03.294533+00:00 app[web.1]: org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request ... 2025-05-08T12:31:03.294598+00:00 app[web.1]: Caused by: java.lang.RuntimeException: java.io.IOException: No space left on device ... 2025-05-08T12:31:03.294601+00:00 app[web.1]: Caused by: java.io.IOException: No space left on device The java temp folder is, according to the heroku cli, spacious enough though:
/tmp $ df . -H Filesystem Size Used Avail Use% Mounted on /dev/mapper/evg0-evol0 398G 65G 314G 17% /tmp When the external connector tries again (after some time), it is sent, received and processed successfully.
We are using spring-boot 3.1.5, with undertow-core 2.3.10.Final being the library handling the multipart handling.
Question: Is it possible to increase some loggings or implement some logic to find out what is going on with those requests, by perhaps catching the java.io.IOException: No space left on device somehow, as it is thrown prior to our method handling the rest request?
Full stacktrace for convenience:
2025-05-08T12:33:18.367360+00:00 app[web.1]: org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request 2025-05-08T12:33:18.367363+00:00 app[web.1]: at org.springframework.web.multipart.support.StandardMultipartHttpServletRequest.handleParseFailure(StandardMultipartHttpServletRequest.java:122) 2025-05-08T12:33:18.367364+00:00 app[web.1]: at org.springframework.web.multipart.support.StandardMultipartHttpServletRequest.parseRequest(StandardMultipartHttpServletRequest.java:110) 2025-05-08T12:33:18.367365+00:00 app[web.1]: at org.springframework.web.multipart.support.StandardMultipartHttpServletRequest.<init>(StandardMultipartHttpServletRequest.java:86) 2025-05-08T12:33:18.367365+00:00 app[web.1]: at org.springframework.web.multipart.support.StandardServletMultipartResolver.resolveMultipart(StandardServletMultipartResolver.java:112) 2025-05-08T12:33:18.367366+00:00 app[web.1]: at org.springframework.web.servlet.DispatcherServlet.checkMultipart(DispatcherServlet.java:1219) 2025-05-08T12:33:18.367367+00:00 app[web.1]: at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1053) 2025-05-08T12:33:18.367367+00:00 app[web.1]: at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:974) 2025-05-08T12:33:18.367367+00:00 app[web.1]: at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1011) 2025-05-08T12:33:18.367368+00:00 app[web.1]: at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) 2025-05-08T12:33:18.367369+00:00 app[web.1]: at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547) 2025-05-08T12:33:18.367370+00:00 app[web.1]: at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) 2025-05-08T12:33:18.367370+00:00 app[web.1]: at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614) 2025-05-08T12:33:18.367370+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74) 2025-05-08T12:33:18.367371+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129) 2025-05-08T12:33:18.367371+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:110) 2025-05-08T12:33:18.367371+00:00 app[web.1]: at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) 2025-05-08T12:33:18.367371+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) 2025-05-08T12:33:18.367372+00:00 app[web.1]: at nl.metafactory.hukseflux.filter.MdcRequestFilter.processIncomingOutgoingRequestId(MdcRequestFilter.java:81) 2025-05-08T12:33:18.367372+00:00 app[web.1]: at nl.metafactory.hukseflux.filter.MdcRequestFilter.doFilter(MdcRequestFilter.java:49) 2025-05-08T12:33:18.367372+00:00 app[web.1]: at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) 2025-05-08T12:33:18.367372+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) 2025-05-08T12:33:18.367373+00:00 app[web.1]: at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) 2025-05-08T12:33:18.367373+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) 2025-05-08T12:33:18.367375+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) 2025-05-08T12:33:18.367375+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) 2025-05-08T12:33:18.367375+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) 2025-05-08T12:33:18.367376+00:00 app[web.1]: at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) 2025-05-08T12:33:18.367376+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367376+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367377+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367377+00:00 app[web.1]: at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) 2025-05-08T12:33:18.367377+00:00 app[web.1]: at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) 2025-05-08T12:33:18.367377+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367381+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367381+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367381+00:00 app[web.1]: at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) 2025-05-08T12:33:18.367381+00:00 app[web.1]: at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) 2025-05-08T12:33:18.367382+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367382+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367382+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367382+00:00 app[web.1]: at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) 2025-05-08T12:33:18.367382+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367382+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367388+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367389+00:00 app[web.1]: at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) 2025-05-08T12:33:18.367389+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367389+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367389+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367389+00:00 app[web.1]: at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) 2025-05-08T12:33:18.367389+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367389+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367390+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367390+00:00 app[web.1]: at nl.metafactory.hukseflux.web.filter.SpaWebFilter.doFilterInternal(SpaWebFilter.java:35) 2025-05-08T12:33:18.367390+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367390+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367390+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367390+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367390+00:00 app[web.1]: at org.springframework.security.oauth2.server.resource.web.authentication.BearerTokenAuthenticationFilter.doFilterInternal(BearerTokenAuthenticationFilter.java:145) 2025-05-08T12:33:18.367391+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367391+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367391+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367391+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367391+00:00 app[web.1]: at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) 2025-05-08T12:33:18.367391+00:00 app[web.1]: at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367394+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) 2025-05-08T12:33:18.367395+00:00 app[web.1]: at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) 2025-05-08T12:33:18.367396+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367396+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367396+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367396+00:00 app[web.1]: at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) 2025-05-08T12:33:18.367396+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367396+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367397+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) 2025-05-08T12:33:18.367397+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367397+00:00 app[web.1]: at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) 2025-05-08T12:33:18.367399+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367401+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) 2025-05-08T12:33:18.367401+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) 2025-05-08T12:33:18.367401+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) 2025-05-08T12:33:18.367402+00:00 app[web.1]: at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) 2025-05-08T12:33:18.367402+00:00 app[web.1]: at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) 2025-05-08T12:33:18.367402+00:00 app[web.1]: at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) 2025-05-08T12:33:18.367403+00:00 app[web.1]: at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352) 2025-05-08T12:33:18.367403+00:00 app[web.1]: at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268) 2025-05-08T12:33:18.367403+00:00 app[web.1]: at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) 2025-05-08T12:33:18.367404+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) 2025-05-08T12:33:18.367405+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) 2025-05-08T12:33:18.367406+00:00 app[web.1]: at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46) 2025-05-08T12:33:18.367407+00:00 app[web.1]: at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64) 2025-05-08T12:33:18.367407+00:00 app[web.1]: at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60) 2025-05-08T12:33:18.367407+00:00 app[web.1]: at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77) 2025-05-08T12:33:18.367407+00:00 app[web.1]: at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43) 2025-05-08T12:33:18.367407+00:00 app[web.1]: at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) 2025-05-08T12:33:18.367407+00:00 app[web.1]: at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52) 2025-05-08T12:33:18.367408+00:00 app[web.1]: at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) 2025-05-08T12:33:18.367408+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276) 2025-05-08T12:33:18.367408+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135) 2025-05-08T12:33:18.367408+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132) 2025-05-08T12:33:18.367408+00:00 app[web.1]: at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48) 2025-05-08T12:33:18.367409+00:00 app[web.1]: at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) 2025-05-08T12:33:18.367409+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256) 2025-05-08T12:33:18.367410+00:00 app[web.1]: at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:101) 2025-05-08T12:33:18.367410+00:00 app[web.1]: at io.undertow.server.Connectors.executeRootHandler(Connectors.java:393) 2025-05-08T12:33:18.367410+00:00 app[web.1]: at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:859) 2025-05-08T12:33:18.367410+00:00 app[web.1]: at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18) 2025-05-08T12:33:18.367410+00:00 app[web.1]: at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2513) 2025-05-08T12:33:18.367410+00:00 app[web.1]: at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1538) 2025-05-08T12:33:18.367410+00:00 app[web.1]: at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282) 2025-05-08T12:33:18.367411+00:00 app[web.1]: at java.base/java.lang.Thread.run(Thread.java:840) 2025-05-08T12:33:18.367411+00:00 app[web.1]: Caused by: java.lang.RuntimeException: java.io.IOException: No space left on device 2025-05-08T12:33:18.367412+00:00 app[web.1]: at io.undertow.servlet.spec.HttpServletRequestImpl.parseFormData(HttpServletRequestImpl.java:887) 2025-05-08T12:33:18.367412+00:00 app[web.1]: at io.undertow.servlet.spec.HttpServletRequestImpl.loadParts(HttpServletRequestImpl.java:607) 2025-05-08T12:33:18.367412+00:00 app[web.1]: at io.undertow.servlet.spec.HttpServletRequestImpl.getParts(HttpServletRequestImpl.java:558) 2025-05-08T12:33:18.367412+00:00 app[web.1]: at jakarta.servlet.http.HttpServletRequestWrapper.getParts(HttpServletRequestWrapper.java:306) 2025-05-08T12:33:18.367412+00:00 app[web.1]: at jakarta.servlet.http.HttpServletRequestWrapper.getParts(HttpServletRequestWrapper.java:306) 2025-05-08T12:33:18.367412+00:00 app[web.1]: at jakarta.servlet.http.HttpServletRequestWrapper.getParts(HttpServletRequestWrapper.java:306) 2025-05-08T12:33:18.367412+00:00 app[web.1]: at org.springframework.web.multipart.support.StandardMultipartHttpServletRequest.parseRequest(StandardMultipartHttpServletRequest.java:93) 2025-05-08T12:33:18.367413+00:00 app[web.1]: ... 144 common frames omitted 2025-05-08T12:33:18.367413+00:00 app[web.1]: Caused by: java.io.IOException: No space left on device 2025-05-08T12:33:18.367413+00:00 app[web.1]: at java.base/sun.nio.ch.FileDispatcherImpl.write0(Native Method) 2025-05-08T12:33:18.367413+00:00 app[web.1]: at java.base/sun.nio.ch.FileDispatcherImpl.write(FileDispatcherImpl.java:62) 2025-05-08T12:33:18.367413+00:00 app[web.1]: at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:132) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:97) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:67) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at java.base/sun.nio.ch.FileChannelImpl.write(FileChannelImpl.java:288) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at io.undertow.server.handlers.form.MultiPartParserDefinition$MultiPartUploadHandler.data(MultiPartParserDefinition.java:347) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at io.undertow.util.MultipartParser$IdentityEncoding.handle(MultipartParser.java:365) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at io.undertow.util.MultipartParser$ParseState.entity(MultipartParser.java:343) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at io.undertow.util.MultipartParser$ParseState.parse(MultipartParser.java:131) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at io.undertow.server.handlers.form.MultiPartParserDefinition$MultiPartUploadHandler.parseBlocking(MultiPartParserDefinition.java:253) 2025-05-08T12:33:18.367414+00:00 app[web.1]: at io.undertow.servlet.spec.HttpServletRequestImpl.parseFormData(HttpServletRequestImpl.java:881) 2025-05-08T12:33:18.367415+00:00 app[web.1]: ... 150 common frames omitted