[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-13 Thread 'Osvaldo Lopez Acuña' via Google App Engine
It would be useful if you describe what kind of call your frontend is doing. Quota limits[1] could be reached sometimes and then you get this behavior. Appengine location, network configuration, Python, and Django versions would also be helpful to narrow your issue. In many cases, elevated

[google-appengine] Re: Not able to list images in GCR

2022-05-13 Thread Sebastian Anton
Hi, I have a similar issue in gougle cloud shell if I do: gcloud container images list --repository=eu.gcr.io/repo-domain it lists all repos in the domain but if I then try to list the images in one specific repo like this: gcloud container images list

[google-appengine] Re: inconsistent daily "frontend instance" costs

2022-05-13 Thread Zvika Ben-Haim
I have a very similar situation: - Limited to one F1 instance per project - Looking at App Engine -> Instances -> Billed instances shows under 1 instance at each moment, except for brief moments with two instances - Yet Billing consistently charges me for several hours of frontend instances.

[google-appengine] Re: Auto scaling to basic scaling migrate

2022-05-12 Thread 'Nikhil Patil' via Google App Engine
Any update on this? On Saturday, May 7, 2022 at 5:49:29 AM UTC+9 Ernesto Contreras Pinon wrote: > Yes, using the app.yaml file, you can set the type of scaling that is used > by your App Engine app. You can specifically see the reference >

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-12 Thread 'Nikhil Patil' via Google App Engine
I tried but it seams - The dev_appserver tool does not support development of Python 3 apps on Windows. https://cloud.google.com/appengine/docs/standard/python3/tools/local-devserver-command On Saturday, May 7, 2022 at 7:22:15 AM UTC+9 Rogelio Monter Rodriguez wrote: > Have you

[google-appengine] Lost access to Google Cloud groups?

2022-05-12 Thread Sam G
*Could a Googler drop me a line 1:1?* We switched email services and I've now lost access to my previous Google Groups :( I was in a few insiders programs and I owe some feedback, and am hoping to get support especially with I/O 2022 coming to a close :). Congrats on all the launches, as

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-12 Thread 'Ernesto Contreras Pinon' via Google App Engine
Can you share the full stack trace you receive when trying to authenticate? It might help clarify the problem. The Google Auth API reference shows that you can use the "AuthorizedSession" class to create an authenticated session

[google-appengine] Re: My VM disappeared when i did not pay

2022-05-11 Thread 'Andres Marquez Rodriguez' via Google App Engine
If your billing account remains invalid for a protracted period, some resources might be removed from the projects associated with your account. For example, if you use Google Cloud, your Compute Engine resources might be removed. Removed resources are not recoverable. [1] During the grace

[google-appengine] My VM disappeared when i did not pay

2022-05-11 Thread Arturo Vildósola
Hello, someone could help me please, my instance disappeared when i did not pay, how could i get it back? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-09 Thread 'David Brogdon' via Google App Engine
Standard environment. Client app->App Engine App->Other services is the logic flow. Client is Python code. I am trying to use the service account key to request a token so that my client app and submit a request to my App Engine App (controller/proxy/etc). Code method below: from

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-09 Thread 'David Brogdon' via Google App Engine
This is what I am trying to do based on the GCP docs. I just need to know how to get the token from GCP to use in my client-side app so that it can make requests to my App Engine app. Do you have an example that simply gets a token by using the service account key? Thanks On Thursday, May 5,

[google-appengine] Re: How to structure credentials in requests to App Engine App

2022-05-09 Thread 'David Brogdon' via Google App Engine
Currently I have a client app that is local to the desktop and needs to send a request via Python to the server app (App Engine App) that then interacts with the other services. I am using standard environment. I have tried many examples for the GCP docs for authentication, including oauth,

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-06 Thread 'Rogelio Monter Rodriguez' via Google App Engine
Have you tried debugging your app locally using the local development server or using the local development server

[google-appengine] Re: Auto scaling to basic scaling migrate

2022-05-06 Thread 'Ernesto Contreras Pinon' via Google App Engine
Yes, using the app.yaml file, you can set the type of scaling that is used by your App Engine app. You can specifically see the reference on how the scaling elements are to be syntactically added in

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-06 Thread 'Osvaldo Lopez Acuña' via Google App Engine
Please share if you’re using the Standard or Flex environment, in which programming language is your App (including version), what type of service account you have, any related code or settings that you have tried and the complete error and logs. Meanwhile here’s the general App Engine’s

[google-appengine] Auto scaling to basic scaling migrate

2022-05-06 Thread 'Nikhil Patil' via Google App Engine
I was using autoscaling but it has 10 min request timeout,so I want to change it to basic scaling. Does changing app.yaml will do the thing? or I need more settings. runtime: python39 service: dev-app instance_class: B1 basic_scaling: max_instances: 10 idle_timeout: 10m I am getting error as The

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-06 Thread 'Nikhil Patil' via Google App Engine
To Explain my overall situation, My app response is lost though the API program executes as expected. This happens randomly. here is my app.yaml # # Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-05 Thread Anatoli Trifonov
Usually you need to call google api to get token using your service account key. Then use token in https request header. It does depend on how your app engine app is configured though in terms of authentication. Sincerely, Anatoli Trifonov On Thu, May 5, 2022 at 12:06 AM 'David Brogdon' via

[google-appengine] Re: How to structure credentials in requests to App Engine App

2022-05-05 Thread 'Andres Fiesco Casasola' via Google App Engine
How are you issuing the HTTP(s) request from your app engine? Could you please share the documentation you used for the authentication? Are you using a standard or a flex environment? On Thursday, May 5, 2022 at 2:06:35 AM UTC-5 david.b...@zebra.com wrote: > I am trying to figure out how to

[google-appengine] Re: authentication for google appengine java

2022-05-05 Thread 'Osvaldo Lopez Acuña' via Google App Engine
Google offers multiple methods of authenticating your app's users in Cloud Platform applications. Each method has different purposes. Maybe this example can help you. In

[google-appengine] How to structure credentials in requests to App Engine App

2022-05-05 Thread 'David Brogdon' via Google App Engine
I am trying to figure out how to authenticate a desktop app to my App Engine app in order to send HTTP requests to my App Engine App. I have read all the documentation I can find but what I really need to know is, *how do I feed my service account key info into my http request so that my App

[google-appengine] Re: authentication for google appengine java

2022-05-03 Thread 'Rajesh G' via Google App Engine
Hello All, Any examples on how to use firebase authentication with java appengine standard. Documentation did not help me much and dont' know how to put the pieces together in a java servlet environment. On Wed, Apr 27, 2022 at 7:11 PM Rajesh G wrote: > Hello, > I have been using java app

[google-appengine] Re: error OR-CBAT-15

2022-05-03 Thread 'Ernesto Contreras Pinon' via Google App Engine
An issue with the payment method(s) used to create a billing account can result in seeing this error message (“OR-CBAT-15”). To find the root cause of the error, you can contact [GCP Billing support

[google-appengine] error OR-CBAT-15

2022-05-02 Thread davide vieira
hello, im trying to activate my free credit 300$ but afther all succeful step came an erro "OR-CBAT-15" i try many times, and whit olther payment card but still the same error. any know abaut this error? -- You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] Re: App Engine down? Multiple App Engine Apps throw HTTP 500

2022-05-02 Thread Robert Gagliano
We are seeing the same. App Engine standard with Python3.9 runtime. Appears it could be related to GCR issues, but not sure. On Thursday, April 28, 2022 at 8:06:00 AM UTC-7 alexandr...@allocab.com wrote: > Same issue here. Also have the following error in some case : > The warmup request

[google-appengine] Memorystore for memcached

2022-04-28 Thread GregF
Appengine python2.7 standard environment. We're looking at switching from the built-in memcache to memorystore for memcached (M4M), as a precursor to migrating to Python3. 1. The M4M pricing doc (https://cloud.google.com/memorystore/docs/memcached/pricing) describes vCPUs, but gives go

Re: [google-appengine] Re: App Engine down? Multiple App Engine Apps throw HTTP 500

2022-04-28 Thread Andrin von Rechenberg
Service is slowly recovering again for our apps. On Thu, Apr 28, 2022 at 5:14 PM Andrin von Rechenberg wrote: > I've filed an issue here: > https://issuetracker.google.com/issues/230635334 > > Please star and comment. > > On Thu, Apr 28, 2022 at 5:05 PM Alexandre Brosse < >

Re: [google-appengine] Re: App Engine down? Multiple App Engine Apps throw HTTP 500

2022-04-28 Thread Andrin von Rechenberg
I've filed an issue here: https://issuetracker.google.com/issues/230635334 Please star and comment. On Thu, Apr 28, 2022 at 5:05 PM Alexandre Brosse < alexandre.bro...@allocab.com> wrote: > Same issue here. Also have the following error in some case : > The warmup request failed. Please check

[google-appengine] Re: App Engine down? Multiple App Engine Apps throw HTTP 500

2022-04-28 Thread Alexandre Brosse
Same issue here. Also have the following error in some case : The warmup request failed. Please check your warmup handler implementation and make sure it's working correctly. On Thursday, April 28, 2022 at 10:57:55 AM UTC-4 and...@n-dream.com wrote: > FYI: It's happening for Python 2.7 apps in

[google-appengine] Re: App Engine down? Multiple App Engine Apps throw HTTP 500

2022-04-28 Thread Thomas Tiercelin
same here, allocab-prod application totally out of control Le jeudi 28 avril 2022 à 22:57:55 UTC+8, and...@n-dream.com a écrit : > FYI: It's happening for Python 2.7 apps in the standard environment. > > On Thu, Apr 28, 2022 at 4:38 PM Andrin von Rechenberg > wrote: > >> Hi all >> >> We have

[google-appengine] Re: App Engine down? Multiple App Engine Apps throw HTTP 500

2022-04-28 Thread Andrin von Rechenberg
FYI: It's happening for Python 2.7 apps in the standard environment. On Thu, Apr 28, 2022 at 4:38 PM Andrin von Rechenberg wrote: > Hi all > > We have multiple independent AppEngine apps that are not responsive > anymore. > > The logs show: > *The request failed because the instance could not

[google-appengine] App Engine down? Multiple App Engine Apps throw HTTP 500

2022-04-28 Thread Andrin von Rechenberg
Hi all We have multiple independent AppEngine apps that are not responsive anymore. The logs show: *The request failed because the instance could not start successfully* We didn't do any releases. An example of a failing app is https://airconsole.appspot.com/ ( www.airconsole.com) Anyone else

[google-appengine] App suddently answer Access is forbidden

2022-04-28 Thread 'Cédric Krier' via Google App Engine
Since yesterday, our app is answering "403 Forbidden" to all requests. There have been no change in the app. There is no logging error. What could be the problem? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this

[google-appengine] authentication for google appengine java

2022-04-27 Thread 'Rajesh G' via Google App Engine
Hello, I have been using java app engine for few years now. My app is using UserService for authentication in the servlets Now, I am creating a new app. I am exploring what options are available for authentication for use with java appengine. I checked around firebase authentication. But, did

[google-appengine] Issues in setting up cloud debugger python3 flask app in app engine

2022-04-27 Thread 'Chirantar Gupta' via Google App Engine
Even after setting up for agent for Cloud Debugger for Python 2nd generation it shows *The debugger could not find a debug target for the application {Service_name} - 1 .* this doc mentioned some steps to set up agent Done this step

[google-appengine] Re: Unable to access cluster

2022-04-27 Thread 'Prathuyusha Parchuri' via Google App Engine
i logged into GCP and trying to access the cluster but unable to do it, getting the error. can you please help ? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: [google-appengine] Re: Hidden usage of frontend instance hours

2022-04-26 Thread Diego Crapper
Hello, Ernesto. Thank you for your reply. If I remember correctly, setting min_instances = 1 and max_instances = 1 created problems when I tried it. I assume it's a problem when Google needs to move the app to a different server, update the underlying software and such. Regardless, I haven't

[google-appengine] Re: Hidden usage of frontend instance hours

2022-04-26 Thread 'Ernesto Contreras Pinon' via Google App Engine
The documentation shows that when instances are increased, instance time is accrued for 15 minutes after the last request to the instance. This could explain a possible accruing of cost that adds up per month. You could try setting an

[google-appengine] Re: Interactive console enable in app-engine 2nd gen using python flask

2022-04-26 Thread 'Matt Larkin' via Google App Engine
The interactive console is part of the Remote API, which is only available for 1st gen python (Py2.7). There is a note in the docs, implying that the Remote API is available for 2nd gen runtimes, but that is not correct, and I've submitted a bug to correct it. On Tuesday, April 26, 2022 at

[google-appengine] Re: app verification

2022-04-26 Thread 'Andres Fiesco Casasola' via Google App Engine
“The verification process takes several weeks to account for clarification questions and re-submissions. It is common to experience many back-and-forths during this review process. Any outstanding items will be communicated to you in the verification thread.[1]” You should check the

[google-appengine] Interactive console enable in app-engine 2nd gen using python flask

2022-04-26 Thread 'Chirantar Gupta' via Google App Engine
How can we enable interactive shell in app engine on the deployed url -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] How to ping mailbox address before send out

2022-04-26 Thread 'THE NHUT TRAN' via Google App Engine
Hello, When I send an email to invalid email, I got *550 5.1.1 The email account that you tried to reach does not exist.* How can i get the message before sending? I connected to smtp.gmail.com:587 send command *RCPT TO: * But I always get 250 message, until i send it out and get above 550..

[google-appengine] rcpt to: get 250

2022-04-26 Thread 'THE NHUT TRAN' via Google App Engine
Hi, I connected to smtp.gmail.com:587 with commands: EHLO StartTLS Auth But MAIL TO: or RCPT TO: always get 250 as valid email. I want get 250 if valid and 5xx if invalid. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe

[google-appengine] Hidden usage of frontend instance hours

2022-04-26 Thread Diego C.
Hello. I have a single service running on App Engine. It's a very-low-traffic website, so I've set it to always have 1 instance running, to avoid lengthy cold starts when someone does visit. It's been running with no problems for a couple of years or so. It always stayed within the free tier.

[google-appengine] app verification

2022-04-26 Thread Apokto IO
Our app is still not verified and not get any message for that why app was not verified. its taken more than 2 weeks. can you please help me -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Messenger bot with dialogflow does not respond to user

2022-04-26 Thread Alexander Coronel
I have a messenger bot built with google's dialogflow engine, to respond the user I have a webhook. when I send a message with a "hello", the default welcome intent its triggered and the webhook it its called and it responds to me. After

[google-appengine] Re: AppEngine crashing my webserice randomly with errors

2022-04-25 Thread 'Amit Sinha' via Google App Engine
Hi, Thank you for sharing this. As it is not showing any other errors in the logs, it could be hard to tell the root cause by looking into this. So at this point, I would recommend to report this in the issue tracker by clicking here

[google-appengine] Re: Alert triggered for 500 responses, but no 500 responses in logs

2022-04-25 Thread 'Osvaldo Lopez Acuña' via Google App Engine
This video can help you to avoid common alerting mistakes. You can also try this Troubleshooting log-based alerts . If alert isn’t working try this troubleshooting.

[google-appengine] Re: AppEngine crashing my webserice randomly with errors

2022-04-23 Thread Robert Bartram
Hello Darrell. No other error's at all in the logs. The AppEngine stays at about 650MB consistently and the CPU at 5% or less. Were not sure why it happens unless Google is pushing out Linus OS updates on the instances forcibly in our day times. We don't know where to look next. We have

[google-appengine] Re: Alert triggered for 500 responses, but no 500 responses in logs

2022-04-22 Thread Alan deLespinasse
Hmm, ok, with help from this post I was able to find the 500 error. It was on /_ah/warmup and didn't show as an error or warning in the logs. I'm not sure why it would have returned an error (all that endpoint does is

[google-appengine] Alert triggered for 500 responses, but no 500 responses in logs

2022-04-22 Thread Alan deLespinasse
Hi, I'm trying to debug an alert I have set up. It's a pretty low volume service, App Engine standard environment, Python 3.x. It's supposed to raise an alert any time there's a 500 response or higher on a query. I've occasionally been getting alerts, but then have been unable to find any 5xx

[google-appengine] Re: AppEngine crashing my webserice randomly with errors

2022-04-21 Thread 'Darrell (Cloud Platform Support)' via Google App Engine
Hi, Are there any other relevant error logs? I am asking because there are a couple of reasons for the shutdown process to occur[1]. I suggest verifying if your instance is exceeding the maximum memory and checking if there are any CPU spikes prior to the crashing. I hope this helps! [1]

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-21 Thread 'Horace (Cloud Platform Support)' via Google App Engine
Hello Since we don't have visibility on your project to check your App Engine settings including your yaml file and further use our internal tools to find out what is happening, kindly take a look at your configuration such as your max instances, idle time out, and scaling. From your log,

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread 'Rogelio Monter Rodriguez' via Google App Engine
This gist on GitHub provides a summary on how to run Eclipse on WSL2. For Netbeans, as shown on this StackOverflow answer , there’s only a workaround. Also, this tutorial

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread Ludovic Champenois
Hi, You can install InteliJ on wsl2 according to https://nirisarri.github.io/2020-11-03-how-to-install-and-run-intellij-idea-for-linux-in-wsl2/ similar steps should work for NetBeans or Eclipse I guess. Ludp On 4/21/22 2:55 AM, 'Rajesh G' via Google App Engine wrote: If you dont' use IDE 

[google-appengine] AppEngine crashing my webserice randomly with errors

2022-04-21 Thread Robert Bartram
Were getting random AppEngine instance crashing ever so many days. It seems this year to happen allot more then usual. We get these shutdown errors when it happens in the log console. Any ideas on why this happens? Is this Google updating the Linux kernel os behind the scenes? Any way to

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-21 Thread 'Nikhil Patil' via Google App Engine
I think no issue on application side. I have logged upto last line of my post method and after that is return response. *Code:* class myView(generics.ListCreateAPIView): permission_classes = (IsAuthenticated,) http_method_names = ['get', 'post'] search_fields = ['some', 'thing', 'here'']

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread 'Rajesh G' via Google App Engine
If you dont' use IDE like eclipse or netbeans (it is not available on windows 11 wsl2 env) Use mvn compile. It is working for me now on windows 11. I will try on wsl2 later. On Sat, Apr 16, 2022 at 10:20 PM Ludovic Champenois < ludovic.champen...@gmail.com> wrote: > Hi, > Almost there, I

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-21 Thread 'Rajesh G' via Google App Engine
mvn war:exploded did not work. However, mvn compile is working now and the server will restart. It did not when I tried earlier. Cheers On Thu, Apr 21, 2022 at 12:56 AM 'Rogelio Monter Rodriguez' via Google App Engine wrote: > As stated in the app-maven-plugin User guide >

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-20 Thread 'Rogelio Monter Rodriguez' via Google App Engine
As stated in the app-maven-plugin User guide : To enable automatic reload of an application, you must tell the Dev App Server to scan for changes :

Re: [google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-20 Thread Ludovic Champenois
Hi, Try to follow the doc at: https://cloud.google.com/appengine/docs/standard/java/maven-reference#appenginerun Especially the config for the Pom.xml file to put the classes in the correct folder. Thanks On Tue, Apr 19, 2022 at 8:43 PM 'Rajesh G' via Google App Engine <

[google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-19 Thread 'Rajesh G' via Google App Engine
Hi, any ideas on how to make the hot reload work Thanks On Sat, Apr 16, 2022 at 5:20 PM Rajesh G wrote: > Hello, > I have created a simple java appengine using maven archetypes. > I am not using eclipse (because I don't have eclipse in windows wsl2.) > > I run the server using > mvn

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-19 Thread 'Andres Fiesco Casasola' via Google App Engine
Do you get any errors when you get the timeout? Could please post your code and your logs? I found these stackoverflow cases that can help you (most common errors): [1]: https://stackoverflow.com/questions/68420538/google-cloud-app-engine-deploy-fail-django [2]:

[google-appengine] Google App Engine Flexible Python 3.9 testing invitation

2022-04-18 Thread 'GCLB Serverless Contact' via Google App Engine
We are inviting testers to try out the Python 3.9 runtime for Google App Engine Flexible. To submit an application, please go to this form and enter the requested information including your email address and project IDs. Upon being selected, we will provide

[google-appengine] Re: Should I use app engine to run a single function script?

2022-04-18 Thread 'Jose Lorea Sanchez' via Google App Engine
Solution Provided: Adding more details to your question on what your function or script is going to do would make it easier for the community to help you answer it, and you might need to take a deeper look at the next suggestions to get a more defined idea. It depends on the context to

[google-appengine] Re: regarding uploading file to cloud storage bucket via appengine

2022-04-18 Thread 'Ernesto Contreras Pinon' via Google App Engine
Can you share details about your application’s use case and the runtime environment you are using? As shown in this documentation , App Engine generally does not encourage working with local files, as your application scales

Re: [google-appengine] Digest for google-appengine@googlegroups.com - 2 updates in 1 topic

2022-04-18 Thread 'Amit Sinha' via Google App Engine
Hi, Could you please check if you are using this plugin? Also what is the error that is given while using if you are using this? I am looking for more context to know 'why'. In addition did you try the solution that was

[google-appengine] Re: Google Cloud Signup Error

2022-04-18 Thread 'Jose Perez Sanchez' via Google App Engine
It is not usual for this error to happen, so, as a recommendation, try again and maybe with a different browser (Chrome is the best supported one on all Google products), or clear cache if everything fails. You can also open an issue here: issuetracker.google.com Here is a guide of how to

[google-appengine] Re: API Maps Payment Profile not Approved

2022-04-18 Thread 'Andres Fiesco Casasola' via Google App Engine
For any billing related issues, try contacting billing support. Here is a link that can help you get to the correct billing support group [1]. Here is another link that might be useful [2] and [4], it's a guide that you can use to troubleshoot payment and billing issues.

[google-appengine] Google Cloud Signup Error

2022-04-17 Thread Alex Kielkucki
I am trying to sign up for google cloud but get an infinite loading screen when I do so. Example: [image: Screenshot 2022-04-14 211642.jpg] -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving

[google-appengine] regarding uploading file to cloud storage bucket via appengine

2022-04-17 Thread Prathmesh Busa
Hello I wish to know how can i pass a file path to upload a file to cloud storage bucket as the code is in the app engine it cannot access the local path that i pass like D:/folder/file so any one can help me by sending a example -- You received this message because you are subscribed to

[google-appengine] App Engine doesn't send response leads to timeout at client

2022-04-17 Thread 'Nikhil Patil' via Google App Engine
I have Django application deployed on App Engine standard environment. Not all the time but sometimes App engine doesn't send response back which leads to timeout at client side. I have logged the response contents just before sending response in django code and the contents are correct. All

[google-appengine] Should I use app engine to run a single function script?

2022-04-17 Thread Chris Evans
Hi all, I'm trying to figure out what is the best service to use when running a single function script. I'm aware of google cloud functions, but that seems to have more of a define request/response structure. What I'm trying to achieve is essentially the same as Github Pages - when you can

[google-appengine] API Maps Payment Profile not Approved

2022-04-17 Thread 12lve 36
Good Day I got the following error message: Contact us to get started We weren’t able to establish your payments profile. To finish setting up your free trial, get help from our Support team. Please help me activate my trial billing account for Google Maps API. I really don't understand

Re: [google-appengine] Digest for google-appengine@googlegroups.com - 2 updates in 1 topic

2022-04-16 Thread 'Tim Macpherson' via Google App Engine
Hot restart works as described above.The old maven plugin enabled hot swap,but with the Cloud SDK-based maven plugin that doesn't work,anyone know why ? On Saturday, 16 April 2022, 19:54:30 BST, google-appengine@googlegroups.com wrote: |google-appengine@googlegroups.com |

[google-appengine] Re: hot reload: mvn google cloud sdk

2022-04-16 Thread Ludovic Champenois
Hi, Almost there, I think you are missing this critical line in your pom.xml: target/${project.artifactId}-${project.version}/WEB-INF/classes ... This way, the compile on save is put the changed class in the correct web app location. At least, I tested it in NetBeans and

[google-appengine] hot reload: mvn google cloud sdk

2022-04-16 Thread 'Rajesh G' via Google App Engine
Hello, I have created a simple java appengine using maven archetypes. I am not using eclipse (because I don't have eclipse in windows wsl2.) I run the server using mvn appengine:run Then I do simple changes to a servlet. Then another window, I run mvn:compile. It compiles into the

[google-appengine] Re: Custom Domain much slower than $PROJECT_ID.appspot.com

2022-04-09 Thread Dave Smith
I picked App Engine so I don't have to deal with load balancers so I'm pretty ignorant. Could you please explain how I overcome this slow response when using a custom domain by using a "serverless neg behind GCLB". I'm using Go in App Engine Standard. Also, how much extra does this cost? I think

[google-appengine] Re: so frustrated... my paid project was blown away!

2022-04-08 Thread Kaan
I'm very frustrated with Google's deletion policies too, every year the most frustrating time for me is logging into Google Admin once and hope that delayed the deletion OP, I can't go anything for you but my sympathies are with you, hope you recover from this event On Thursday, April 7, 2022

[google-appengine] Re: so frustrated... my paid project was blown away!

2022-04-07 Thread 'Matt Larkin' via Google App Engine
Hi, Sorry to hear that you are having an issue. To clarify, when you say you "saved some data inside my GCP linux console", I'm assuming you mean Cloud Shell , because App Engine doesn't have anything along those lines. Looking at the Cloud Shell

[google-appengine] so frustrated... my paid project was blown away!

2022-04-06 Thread Bangol Phoenix
Hello I was using GCP for an app engine for my django project. I downloaded and saved some data inside my GCP linux console and I got really busy and some months passed, and I got some email that I should log in to my console before it would be deleted So I logged in to my console and I

[google-appengine] Node.js Instance Configuration

2022-04-06 Thread Jagath Weerasinghe
Hi All, We run a node.js AppEngine module with the following configuration: runtime: nodejs16 env: standard service: app instance_class: F4 automatic_scaling: max_instances: 5 min_instances: 0 max_idle_instances: 1 min_idle_instances: 1 We expect this config to see an idle instance always

Re: [google-appengine] 50k pages hosting on nodejs appengine

2022-04-06 Thread 'Rajesh G' via Google App Engine
I am using the concept of services in appengine to put all my services together in one website Can I use other clouds for serving static files and configure dispatch.yaml to be routed to other clouds For example, one of the suggestions is to use Cloudflare and another option is to use

Re: [google-appengine] Re: Servlet Spec 12.2 violation: glob '*' can only exist at end of prefix based matches: bad spec "/*.xhtml"

2022-04-04 Thread Ludovic Champenois
Hi again, Let me know if you can update the app in a way it does not define the incorrect mapping... I hope it is not too complicated, Thanks! On Sun, Apr 3, 2022 at 12:10 PM Ludovic Champenois < ludovic.champen...@gmail.com> wrote: > Hi, > So the app worked for the past 2 years without new

[google-appengine] Re: Servlet Spec 12.2 violation: glob '*' can only exist at end of prefix based matches: bad spec "/*.xhtml"

2022-04-03 Thread Ludovic Champenois
More info regarding spec at https://stackoverflow.com/questions/58033540/how-to-create-a-multiple-wildcard-url-pattern-in-web-xml On Sunday, April 3, 2022 at 12:10:02 PM UTC-7 Ludovic Champenois wrote: > Hi, > So the app worked for the past 2 years without new deployment? Recently, > the

[google-appengine] Re: Servlet Spec 12.2 violation: glob '*' can only exist at end of prefix based matches: bad spec "/*.xhtml"

2022-04-03 Thread Ludovic Champenois
Hi, So the app worked for the past 2 years without new deployment? Recently, the Jetty web server got upgraded to 9.4.45... It might be more strict regarding servlet 3.1 compliance in this area? Can you share more snippet of code? Ludo On Saturday, April 2, 2022 at 8:00:26 PM UTC-7

[google-appengine] Servlet Spec 12.2 violation: glob '*' can only exist at end of prefix based matches: bad spec "/*.xhtml"

2022-04-02 Thread Henry Saldyga
After 2 years of troubles work JSF application raised this exception: Uncaught exception from servlet java.lang.IllegalArgumentException: Servlet Spec 12.2 violation: glob '*' can only exist at end of prefix based matches: bad spec "/*.xhtml"at

[google-appengine] Re: HttpTaskHandler payload is empty

2022-03-31 Thread 'rwabukumba' via Google App Engine
Hi, Looking at this post with a similar symptom, it appears that the root cause could be a missing HTTP header for the content-type, which should be set to either "application/octet-stream" or "application/json"

[google-appengine] HttpTaskHandler payload is empty

2022-03-30 Thread 'Rajesh G' via Google App Engine
Hi, I am following https://github.com/googleapis/nodejs-tasks/tree/main/samples I have deployed the above to a

[google-appengine] Re: Manual/basic GAE instance in Java11 gets 403 on start

2022-03-29 Thread 'Amit Sinha' via Google App Engine
Hello Eduardo, If I understand the issue correctly, when you are changing the app.yaml file to change the scaling type from dynamic, it starts to give the error. Is my understanding correct?

Re: [google-appengine] Re: Ruby version file not working

2022-03-29 Thread José Antonio Sánchez Ortiz
We have a .ruby-version file in our application directory, which contains 2.6.8, as stated in the Overview of the "The Ruby Runtime" documentation page . I have

[google-appengine] Re: GPU quotas increased but error on the excess of my quota

2022-03-29 Thread 'babdelrahman' via Google App Engine
Could you please check the quota error message, is it for CPU, GPU exceeded error. You could Check the quota for Vertex AI API by following the steps below: Main menu -> IAM -> Quota -> Select the Vertex AI API ->Select region For CPU-> Select Quota in the filter:->CPU All regions. For

[google-appengine] Re: Ruby version file not working

2022-03-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello, You are right, the Ruby runtime uses version 2.7.5. Source code is available on GitHub. Related details are to be found in the Overview of the "The Ruby

[google-appengine] Ruby version file not working

2022-03-29 Thread José Antonio Sánchez Ortiz
Hi We are running a project in an App Engine from several years ago. We are using flexible ruby. We have a .ruby-version file in our application directory, with version 2.6.3, but all the deployments we have tried today are ignoring the .ruby-version file, and they are installing the 2.7.5

[google-appengine] Manual/basic GAE instance in Java11 gets 403 on start

2022-03-29 Thread Eduardo Moraleja
Hello, Migrating from dynamic instances in Java11 GAE to manual/basic instances results in 403 error when Google services (from IP 0.1.0.3) performs a "/_ah/start" request. App Engine is configured with Private Service Access and is only accessible from the VPC and specific IP's. No firewall

[google-appengine] Re: Not able to SignUp for free trial account - Getting Error [OR-BSBBS-103]

2022-03-28 Thread 'David (Cloud Platform Support)' via Google App Engine
Hello, Please contact GCP billing support since they would be able to provide more information about this error you are seeing. On Saturday, March 26, 2022 at 2:11:28 PM UTC-4 venkates...@gmail.com wrote: > *Getting Error [OR-BSBBS-103].* > after

Re: [google-appengine] New weird error.

2022-03-28 Thread Joshua Smith
As suggested, I created a private issue, since they wanted some app details. So you wouldn't be able to see the issue even if I shared the link. But I'll post back here if any progress is made. It's still happening, although not too much... > On Mar 28, 2022, at 3:56 AM, 'Lluis Munoz Ladron

Re: [google-appengine] 50k pages hosting on nodejs appengine

2022-03-28 Thread Nickolas Daskalou
App Engine is great if you actually have a dynamic backend, but if you're only serving static files, try Cloudflare Pages . Dead simple to deploy and update vit Git, and cheap! There's a 20,000 file limit per site, however this appears to be a soft limit (and you

Re: [google-appengine] New weird error.

2022-03-28 Thread 'Lluis Munoz Ladron de Guevara' via Google App Engine
Hi, Could you please share the Issue Tracker URL? It might help other users who experience this issue. On Wednesday 23 March 2022 at 20:22:24 UTC+1 Joshua Smith wrote: > > On Mar 23, 2022, at 3:07 PM, 'Amit Sinha' via Google App Engine < > google-a...@googlegroups.com> wrote: > > Hi Joshua,

[google-appengine] Re: 50k pages hosting on nodejs appengine

2022-03-28 Thread 'Lluis Munoz Ladron de Guevara' via Google App Engine
Hi, App Engine automatically scales to accomodate to the incoming requests, therefore the performance should be stable, more information about this can be found here . Using F1 instances is a good option

<    1   2   3   4   5   6   7   8   9   10   >