Questions tagged [app-engine-flexible]

App Engine Flexible is a cloud computing technology for hosting web applications in Google-managed data centers. Google App Engine is a Platform as a Service (PaaS) offering for Node.js, Ruby, Java, Python, Go and PHP.

Learn more about App Engine Flexible. App Engine allows developers to focus on doing what they do best, writing code. Based on Google Compute Engine, the App Engine flexible environment automatically scales your app up and down while balancing the load. Microservices, authorization, SQL and noSQL databases, traffic splitting, logging, search, versioning, security scanning, memcache, and content delivery networks are all supported natively. In addition, the App Engine flexible environment allows you to customize your runtime and even the operating system of your virtual machine using Docker.

467 questions
1
vote
3 answers

App Engine Flexible can't use datastore with websockets example

I tried adding the websockets example project to the datastore project and the websockets work but when a page queries the datastore or tries to put a new entity I get a 502 response. In the logs it shows a critical error on the service worker. If I…
st1
  • 13
  • 3
1
vote
1 answer

Communication between two app engine: flexible and standard within a "secured" environment

i have implemented a web application using 2 app engines: standard for the frontend (done using flask) flexible for the backend of the application, which implements some classifications on data loaded through the UI. FE and BE communicate through…
1
vote
1 answer

Numpy failing in Python3 Google App Flexible Engine

I'm running Python3 in App Engine (Fleixble) and am receiving the following error: ImportError: Importing the multiarray numpy extension module failed. Most likely you are trying to import a failed build of numpy. If you're working with a numpy…
1
vote
2 answers

gcloud app deploy with private docker images

I have a project that has a Dockerfile inside and inside that Dockerfile is a base private image. When I run gcloud app deploy it will return an error with the below message Error response from daemon: pull access denied for dean, repository does…
1
vote
1 answer

How do I query GCP Search APIs asynchronously from an App Engine instance?

I need to search my App Engine indexed documents using the Search API. From what I can tell, the Search API can only be referenced with the google.appengine APIs for the standard environment. My problem is that some hydrating, flushing, and querying…
1
vote
2 answers

Error deploying GAE Flex with gcloud app deploy

All of a sudden having issues with deploying to GCP using gcloud app deploy. Created a brand new project and tried to upload a sample hello-world app from GCP, but still get the following error: ERROR: (gcloud.app.deploy) Error Response: [3] Docker…
1
vote
1 answer

Firebase: Budget and Daily Spending Limit

I've set a daily spending limit for my Firebase project. Inside the same project, I added a NodeJS App Engine app. So I've received this warning: In that case, all spending limits are ignored? If Firebase goes to $99999 it won't be…
1
vote
0 answers

Google app engine flexible not load context path of Spring boot application

I have spring boot application and already deploy on GAE Flexible env. In my application, I already set my application context path in application.properties file look like: server.context-path=/myapp And it work fine on tomcat and jetty embedded…
1
vote
2 answers

Unable to connect to Cloud SQL from different project on App Engine flex Java

Here's the exception that's thrown: javax.servlet.ServletException: javax.servlet.ServletException: org.glassfish.jersey.server.ContainerException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to…
1
vote
4 answers

Error while executing Appengine's downloadCloudSdk task in my subproject

I am getting com.google.cloud.tools.managedcloudsdk.ManagedSdkVerificationException: com.google.cloud.tools.managedcloudsdk.command.CommandExitException: Process failed with exit code: 1 I tried updating intellij and google cloud plugins. This…
1
vote
1 answer

GAE running tasks frozen

I have been working with GAE for a long time now, but since a couple of weeks ago some of my queues get frozen because the running tasks are stuck at the max concurrent parameter. For example, I have a queue with 10 as the max concurrent tasks. And…
1
vote
2 answers

Publishing ASP.NET Core 2.1 to Google Cloud Platform shows error: bad character range

When I try to publish an ASP.NET Core 2.1 Web Application to Google Cloud Platform App Engine I get the error gcloud crashed (error): bad character range. I publish with the GCP Visual Studio 2017 extension and I get the above error. I publish from…
1
vote
2 answers

(GAE) click on the version of the service, an error 502 occurs

App engine is in use. If you click on the version of the service, an error 502 occurs.(appspot.com) However, there is no problem access to the domain connected to the service. I want to know why.
1
vote
3 answers

Securing URLs in App Engine Flexible (with users and roles from AIM)

I want to upgrade my Java App Engine Standard app to App Engine Flexible and I am wondering what is the best solution to secure certains URLs (e.g. /admin/*). In Standard I used in web.xml to restrict access to certain paths to users from AIM…
1
vote
1 answer

how do i get the heap dump of a java application running in flexible environment

Given a java application running in flexible environment, how is it possible to get a heap dump to see the heavy objects? I would ideally import this into a tool like eclipse mat and analyze the heap dump. Another great option would be for…
David Michael Gang
  • 7,107
  • 8
  • 53
  • 98