I implemented a Cloud Run process in Java with Spring Boot which consumes file uploads via HTTP. The uploaded files are sometimes over 32 MB in size. I know that 32mb is the fixed single-request limit under Cloud Run. The documentation of Cloud Run mentions two approaches to support the upload of larger files. Resumable upload and XML API multipart
Tag: google-cloud-run
Why is my java docker image created successfully on laptop but when uploading to google cloud run it fails?
dockerfile: FROM maven as builder # Set the working directory. WORKDIR /usr/src/mymaven COPY ./ /usr/src/mymaven CMD [ “maven:3.3-jdk-8” , “mvn” , “clean” , “install&…