Re: [google-appengine] Re: appengine cron jobs

2022-06-16 Thread 'Jose Lorea Sanchez' via Google App Engine


It seems there is no way to delete them directly from the Console. Instead, 
you will need to follow the documentation on Deleting cron jobs 

 
selecting the language you are currently using. 

Here is an example using Python and Java 
,
 
and here is another using the gcloud command tool 

.

On Wednesday, June 15, 2022 at 10:21:39 PM UTC-5 
rajesh...@veersoftsolutions.com wrote:

> I dont see the jobs to pause them.  Regards,
>
> [image: image.png]
>
> On Thu, Jun 16, 2022 at 12:36 AM 'Andres Marquez Rodriguez' via Google App 
> Engine  wrote:
>
>> You can’t ‘stop’ it, but here is a documentation on how to pause it. [1]
>>
>> [1] https://cloud.google.com/scheduler/docs/creating?hl=en#pause
>> On Wednesday, June 15, 2022 at 3:25:20 AM UTC-5 
>> rajesh...@veersoftsolutions.com wrote:
>>
>>> Hello,
>>> How do I stop 'appengine-cron-jobs' from a console?
>>> I am referring to the following screen in the console
>>>
>>> [image: image.png]
>>>
>>>
>>> --
>>> Support Team
>>> www.servicefolder.com 
>>> 
>>> *Field Service Software on Google Cloud Platform and Mobile*
>>>
>>>
>>> -- 
>>
> 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-appengi...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-appengine/a603e840-dd7d-4213-a1a9-4cba745ecf24n%40googlegroups.com
>>  
>> 
>> .
>>
>
> -- 
> Support Team
> www.servicefolder.com
> *Field Service Software on Google Cloud Platform and Mobile*
>
>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/eb34a6b4-4fad-4518-ae48-7d4279bb0a19n%40googlegroups.com.


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

2022-05-18 Thread 'Jose Lorea Sanchez' via Google App Engine
Here is a post from “StackOverflow” that has similar characteristics. The 
user configures SECURE_SSL_REDIRECT and his App Engine has presented 
similar issues. The answer suggests adding a secure parameter 
 to the app.yaml file. Could 
you try this?

handlers:
- url: /*
  script: anyfile.py
  secure: always

On Tuesday, May 17, 2022 at 2:55:19 AM UTC-5 nikhilhem...@rakuten.com wrote:

> To update you I managed to get the root cause. Django settings.py has  
> SECURE_SSL_REDIRECT configuration. If I enable it(I must), I get above 
> issue,if I disable then the instance starts successfully. Do you have any 
> idea?
>
>
> On Saturday, May 14, 2022 at 8:12:47 AM UTC+9 Osvaldo Lopez Acuña wrote:
>
>> Were you able to change your App Engine settings the way Ernesto 
>> suggested?
>>
>> The issue ended on May 6, as you can see in the shared link, and App 
>> Engine was not affected.
>>
>>
>> On Thursday, May 12, 2022 at 10:46:30 PM UTC-5 nikhilhem...@rakuten.com 
>> wrote:
>>
>>> 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 
 
  
 on how the scaling elements are to be syntactically added in your app.yaml 
 file. Since this file contains the specifications for the deployment of 
 your app, it would be the proper place to change the settings. 

 Have you recently encountered this issue? There is currently an 
 existing incident 
  that 
 is affecting multiple Google Cloud products which could be related to the 
 errors you are seeing.
 On Friday, May 6, 2022 at 2:36:23 AM UTC-5 nikhilhem...@rakuten.com 
 wrote:

> 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 request failed because the instance could not start 
> successfullyProcess terminated because it failed to respond to the start 
> request with an HTTP status code of 200-299 or 404.
>


-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/828d6daa-8802-45a4-9682-286836af7a16n%40googlegroups.com.


[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 recommend, or not, certain 
technologies; I will review a few. You can see how these scale.

As you previously mentioned Google Cloud Functions 
 are great for small functions that are 
triggered by any kind of event, but you can also call it directly or 
schedule it. 

If your script is a containerized application, you can consider using Google 
Cloud Run  or Google App Engine. 
Starting with Cloud Run:


   - Cloud Run is a managed compute platform that enables you to run 
   containers that are invocable via requests or events. Cloud Run is 
   serverless: it abstracts away all infrastructure management, so you can 
   focus on what matters most — building great applications.

App Engine has this definition at the Choose an App Engine environment 
, 
please read each section (flexible and standard) to get the whole insight:


   - App Engine is well suited to applications that are designed using a 
   microservice architecture, especially if you decide to utilize both 
   environments. Use the following sections to learn and understand which 
   environment best meets your application's needs.

Finishing with Google products, I would like to talk about Google Workflows 
, as it can help you combine 
multiple technologies in a fully customized way:


   - You can use Workflows to execute services in an order you define. 
   Combine the power of Google Cloud services, custom services hosted on Cloud 
   Functions or Cloud Run, and any HTTP-based API to create flexible 
   serverless applications. Workflows requires no infrastructure management 
   and scales seamlessly with demand, including scaling down to zero.

Github Pages is focused on deploying a full web site from a repository as 
their documentation describes 

... 


   - GitHub Pages is a static site hosting service that takes HTML, CSS, 
   and JavaScript files straight from a repository on GitHub, optionally runs 
   the files through a build process, and publishes a website.

…however, you should take a look at their limits 

:


   - GitHub Pages is not intended for or allowed to be used as a free 
   web-hosting service to run your online business, e-commerce site, or any 
   other website that is primarily directed at either facilitating commercial 
   transactions or providing commercial software as a service (SaaS). 


Please consider not only the functionality of each but the tooling and 
pricing . Google offers free 
trials and credits , so 
you might not need to start considering paying until your app grows larger.

On Sunday, April 17, 2022 at 10:37:26 AM UTC-5 crev...@gmail.com wrote:

> 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 store a 
> single function in `index.js` of your `docs` directory, and it will run 
> that function on call.
>
> Is App Engine a good place to do that? Or should I stick to hosting full 
> on websites in App Engine?
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/f2d904f0-0096-4846-925f-748a90cb9d54n%40googlegroups.com.