[google-appengine] Re: Java runtime displayed incorrectly on /appengine/versions page?

2017-10-05 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
I deployed the Hello World application 
 
for Java 8 without any issues. Since this is a potential defect on the 
platform, it would be most appropriate to file a report 
 on the public issue tracker so that 
proper attention will be given to it.

When filing a new issue on the tracker, please link back to this thread so 
others in the community can also see the updates.

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/1eaa8d2a-c4d7-44b2-85ad-a33105be7cfc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Is there a way to run local development server for appengine custom runtime?

2017-10-05 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
Unfortunately, this is not yet currently supported. There are a bunch of 
things that won't work when doing local development on Flex e.g. Memcache 
(ndb), Datastore, etc. I highly encourage you to submit a feature request 
 as described in this article 
 so that proper attention and 
weight will be given to it. You can also refer on this thread as background 
to the request. 


-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9f25feb4-79dc-4b54-a417-9d71d74d07ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App Engine Pricing for auto scaling instances

2017-10-05 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine

>
>
>
> It is not clear for me at all and I would like to ask you two questions:
>
>1. What does google mean about "Runtime overhead is counted against 
>the instance memory limit"?
>
> Runtime overhead is the resource needed to serve an instance.
 

>
>1. What about how *auto* scaling instances are billed? 
>
>  As you noted, *Auto* billing starts when an instance starts and ends 
fifteen minutes after the last request has finished processing.

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/85aec0e3-ba6a-4afd-ac6a-49d0bbfafc63%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: How to enable Managed SSL on App Engine when using CloudFlare CDN

2017-10-05 Thread Leonard Austin
I'm also interested in this post. I'm not sure how creating a sub domain of 
w3.example.com helps as will it not just create a managed certificate from 
LetsEncrypt for w3 (not naked or www)? I think LetsEncrypt uses DNS 
verification, which I assume is something GAE is handling behind the 
scenes. If cloudflare is turned on and sits between LetsEncrypt 
verification method and App Engine then I'm not sure GCP is able to create 
a DNS record that LetsEncrypt can see? 


On Tuesday, 3 October 2017 03:05:32 UTC+1, Kamran (Google Cloud Support) 
wrote:
>
>
> Managed security will need to check existence of canonical name (CNAME) 
> record with the value of *ghs.googlehosted.com 
> * for your domain/subdomain. If you're 
> serving *www.example.com * on CloudFlare, you may 
> map *w3.example.com * as custom sub-domain on GAE 
> and enable managed security for it. Please try it and let me know how it 
> works.
>
>
>
>
> On Monday, October 2, 2017 at 11:49:20 AM UTC-4, Leigh McCulloch wrote:
>>
>> While that works it's not completely secure, only Full SSL (strict) or 
>> Full SSL (origin ca)* is, not plain Full SSL. In Full SSL mode Cloudflare 
>> doesn't verify the common name on the certificate served by AppEngine which 
>> is why it works as you described. If I enable Full SSL (strict) using the 
>> setup you described it fails because the certificate AppEngine is serving 
>> is for example.appspot.com and not example.com.
>>
>> What I had hoped to do was enable managed security on AppEngine so that 
>> AppEngine served a certificate with the correct common name. But it seems 
>> like AppEngine does DNS checks before allowing the certificate to work.
>>
>> Is there anyway to make this work?
>>
>> Leigh
>>
>> * Note: Full SSL (origin ca) is also not supported by AppEngine, because 
>> AppEngine doesn't allow the use of certificates that have been signed by a 
>> CA that isn't a trusted CA.
>>
>>

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a52e1137-cc12-4148-8aa3-d478f2768fd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Lots of 502 errors

2017-10-05 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
*502 *bad gateway usually means that the Nginx proxy responsible for 
handling requests for App Engine instance has not been able to get in 
contact with your application, the application raises an exception, an 
internal API call raises an exception or if the request simply takes too 
long.  As such, *502* does not tell you much about the real source of the 
problem. 

You can check if there is a pattern for the error (e.g. is it happening on 
the same endpoint). You can also try to perform exponential backoff 
 in which retry 
a failed request only after waiting for a small delay to make sure the 
application does not get overloaded with requests. You might also be 
interested with 'error_handlers 
'
 element 
on your config file to possibly catch *502* errors related to over_quota or 
timeout, etc.


-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/f5bc0bef-98dd-4ca3-9003-17e4394ae0c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Java runtime displayed incorrectly on /appengine/versions page?

2017-10-05 Thread Charles Capps
Hi, I just want to confirm that this is a known issue.

I deployed a microservice using the Java8 runtime, but it still displays as 
"java7" in the "Runtime" column on the 
page https://console.cloud.google.com/appengine/versions.

This is a Java service, and I'm certain it's deployed as Java8, I took the 
following steps:
* Added java8 to appengine-web.xml
* Changed source/target to 1.8 in the maven-compiler-plugin
* Updated javax.servlet dependency to 3.1.0
* Verified our CI/CD box is using Java8
* Deploy succeeded


-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/6697bd49-cdd4-44d0-8a36-b403a4ea71ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Lots of 502 errors

2017-10-05 Thread Andrew Benton
I'm not sure how much this has to do specifically with the application in 
question, but an otherwise well-functioning appengine app will start seeing 
lots and lots of 502 errors from Google on occasion.

This is extremely disruptive to the app's users and requires some manual 
data cleanup each time, which is frustrating. There are no logging 
indicators that show these 502 responses, so I can only presume that the 
response is generated upstream from the application's infrastructure.

Any idea what's going on? Here is some more information about the app:

It's a golang app running on the flexible environment.
It uses a custom domain, with cname pointing to ghs.googlehosted.com.
It relies on the appengine datastore, although even requests to handlers 
that make no datastore connections are failing with 502.

I feel like this is a routing/timeout problem between ghs.googlehosted.com 
and the appengine infrastructure, given the lack of logging. Can anyone 
from Google comment on that hypothesis?

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/2f40a136-04c6-43df-a708-d612730d3345%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Auto Scaling Flex Environment Based On Metrics Other Than CPU Utilization

2017-10-05 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The entire benefit of App Engine is that it handles scaling for you and 
uses many other metrics other than CPU to scale instances as described in 
the documentation 

. 

Looking at the source code of the appengine-config-transformer 

 it 
does mention the existence of hidden scaling settings that indeed match 
that of the available Stackdriver Monitoring metrics for App Engine 
. You can 
therefore try using these in your app.yaml 

 
configuration file to adjust your App Engine scaling settings at your own 
risk (as there are no documented limits for these settings). 
 
If you require the need to have full control over your scaling instances, 
you may instead want to take a look at Google Container 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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d838c47c-cd98-4513-9db9-ab6b220715d8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App Engine Pricing for auto scaling instances

2017-10-05 Thread Nilson Pontello
Hi,

 After researching a bit more I've found this other link 

 
and it says.

Billing is slightly different in resident and dynamic instances:
>
>1. For resident instances, billing ends fifteen minutes after the 
>instance is shut down.
>2. For dynamic instances, billing ends fifteen minutes after the last 
>request has finished processing.
>
> I believe the first link 
 
contains wrong info is is leading to the confusion.

Regards


On Thursday, 5 October 2017 14:19:06 UTC-3, Nilson Pontello wrote:
>
> Hi Everyone,
>
> From this link  I found the 
> below:
>
> Instances running in *manual* and *basic* scaling services are billed at 
>> hourly rates based on uptime. Billing begins when an instance starts and 
>> ends fifteen minutes after a manual instance shuts down or fifteen minutes 
>> after a *basic* instance has finished processing its last request. 
>> Runtime overhead is counted against the instance memory limit. This will be 
>> higher for Java than for other languages.
>
>
> It is not clear for me at all and I would like to ask you two questions:
>
>1. What does google mean about "Runtime overhead is counted against 
>the instance memory limit"?
>2. What about how *auto* scaling instances are billed? 
>
> Until reaching this article my understanding was:
>
>1. *manual* and *basic* billing begins when an instance starts and 
>ends fifteen minutes after instance shuts down
>2. *auto *starts when a request arrives and finishes fifteen minutes 
>after finished processing its last request
>
> And now I am very confused.
>
> Thanks
>

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/cc4c4294-758f-490f-b290-9f56ab7e0311%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] App Engine Pricing for auto scaling instances

2017-10-05 Thread Nilson Pontello
Hi Everyone,

>From this link  I found the 
below:

Instances running in *manual* and *basic* scaling services are billed at 
> hourly rates based on uptime. Billing begins when an instance starts and 
> ends fifteen minutes after a manual instance shuts down or fifteen minutes 
> after a *basic* instance has finished processing its last request. 
> Runtime overhead is counted against the instance memory limit. This will be 
> higher for Java than for other languages.


It is not clear for me at all and I would like to ask you two questions:

   1. What does google mean about "Runtime overhead is counted against the 
   instance memory limit"?
   2. What about how *auto* scaling instances are billed? 

Until reaching this article my understanding was:

   1. *manual* and *basic* billing begins when an instance starts and ends 
   fifteen minutes after instance shuts down
   2. *auto *starts when a request arrives and finishes fifteen minutes 
   after finished processing its last request

And now I am very confused.

Thanks

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/058c22ca-b587-4b69-a66d-69f252a74c1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Access to ODOO Database from Django Application in Google Cloud

2017-10-05 Thread 'George (Cloud Platform Support)' via Google App Engine
How is your database installed in Google Cloud, exactly? Did you install it 
in the Compute Engine ? 

You can also choose from a variety of third-party databases to use with 
your applications such as Redis, MongoDB, PostgreSQL, Cassandra, and 
Hadoop. These third-party databases can be hosted on Compute Engine 
, hosted on another cloud provider, 
hosted on premises, or managed by a third-party vendor. You can read more 
on the subject at "Using Third-Party Databases 
",
 
and follow references present on that page, as needed. 

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/f4b407a0-ce63-4870-800e-2206b5775741%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Can not try free trial because card declined

2017-10-05 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jewel, 

In fact, you don't need necessarily a credit card to sign up. You can sign 
up for the free trial by providing a bank account instead of a credit card. 
To verify that you own the account, you'll provide the account number and 
routing number. Google deposits a small random amount within 2-3 days. 
After you've received the deposit, you'll use the deposit amount to finish 
the process of signing up for the free trial. More details are to be read 
on the "Frequently Asked Questions" page 
, at the 
level of the "Why do I need to provide a credit card or bank account for 
the free trial?" sub-chapter. 

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/594409d7-c6af-4b73-bfe6-c04c6127369d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: gae php mail quota too low, error?

2017-10-05 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello Jukka, in addition to the quotas, you should also make sure you are 
not running into one of the following limits: 
https://cloud.google.com/appengine/docs/standard/python/mail/#quotas_and_limits

On Thursday, October 5, 2017 at 6:05:05 AM UTC-4, Jukka Hautakorpi wrote:
>
> And just checked that billing is enabled.
> I cannot find mail - limit from the quotas set-page?!
>
> And here are today's quotas:
>
> Mail
> If you need a higher mail quota, you can use SendGrid to send email. Learn 
> more 
> Resource Usage today Daily quota Per-minute quota Rate limit status 
> Mail API Calls 
> 6 of 1 771 789
> 0 % 
> -- of 4 928
> Standard rate
> Recipients Emailed 
> 6 of 100
> 6 % -- 
> Standard rate
> Message Body Data Sent 
> 0,04 of 29,5764 GB
> 0 % 
> -- of 0,08 GB
> Standard rate
>
>
>
> torstai 5. lokakuuta 2017 12.50.46 UTC+3 Jukka Hautakorpi kirjoitti:
>>
>>
>> I have gae php app that has different php files to send me emails and 
>> also some notifications for customers
>>
>> i have received sometimes errors about the quotas and after testing it, 
>> it seems that i can only send 1 - 14 emails / day.
>>
>> Yesterday i received error once more and it was from the php feedback 
>> form that sends only 1 mail to me.
>> So the limit cannot be "too many emails / second or hour" because there 
>> was only 1 mail to be sent to me.
>>
>> How can the quota limit be so vary and give errors so easily ? i only 
>> send 0-20 emails per day.
>>
>> google\appengine\runtime\OverQuotaError
>>> The API call mail.Send() required more quota than is available.
>>> google\appengine\runtime\ApiProxy::makeSyncCall
>>> Request
>>> POST xxx.appspot.com/index.php?sivu=palaute
>>> Status
>>> 500
>>> User agent
>>> Mozilla/5.0
>>>  (Linux; Android 7.0; SM-G930F Build/NRD90M; wv) AppleWebKit/537.36 
>>> (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.98 Mobile Safari/537.36
>>> Service
>>> default
>>> Version
>>> 1
>>>
>>>
>> And to be sure you understand, for this 20 max email / day, i won't be 
>> changing the code to use the external api, i want to use the old 
>> mail-function !
>>
>>

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e25cff1a-44ae-457f-8043-fc8db4357380%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Access to ODOO Database from Django Application in Google Cloud

2017-10-05 Thread aitechcloud
Hello,

I have developped a Django Application, which allow me to access to my Odoo 
Database.

My Odoo database is installed in Google Cloud.

My Django application use the "odoorpc" library in Python to can access to 
my ODOO database.

I have run this Django Application from my localhost, but from the Google 
cloud doesn't work. this is my basic function to access to my ODOO :


# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.shortcuts import render
from django.http import HttpResponse
import odoorpc

# The connection ...
odoo = odoorpc.ODOO('35.192.212.135', port=8069)

---> My programme stop in this level


Any help please ?

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9024a6f3-863d-402e-ba15-65b609f34ff8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Can not try free trial because card declined

2017-10-05 Thread JeweL Shahjahan
Hello There,
I wanted to try Google App Engine as I am an AWS user for a long time and 
wanted to see how Google App Engine. So I wanted to try the free trial and 
I am using the same card which is accepted by AWS and Google says, They 
don't accept prepaid cards. I was using the payoneer  
master 
card and I don't know what's wrong with google because I use this card 
almost all my online purchases and subscriptions. 


-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/341148b7-254a-4f79-80e9-e42fabf9eb73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Auto Scaling Flex Environment Based On Metrics Other Than CPU Utilization

2017-10-05 Thread Manu Janardhanan
How can we scale Flex environment with metrics other than cpu utilization, 
like requests per second, stackdriver metrics, time spent by requests in 
queue etc? The documentation only mentions cpu utilization. 

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/4725f825-1f46-4e27-b3ca-4f69d206c931%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: gae php mail quota too low, error?

2017-10-05 Thread Jukka Hautakorpi
And just checked that billing is enabled.
I cannot find mail - limit from the quotas set-page?!

And here are today's quotas:

Mail
If you need a higher mail quota, you can use SendGrid to send email. Learn 
more 
Resource Usage today Daily quota Per-minute quota Rate limit status 
Mail API Calls 
6 of 1 771 789
0 % 
-- of 4 928
Standard rate
Recipients Emailed 
6 of 100
6 % -- 
Standard rate
Message Body Data Sent 
0,04 of 29,5764 GB
0 % 
-- of 0,08 GB
Standard rate



torstai 5. lokakuuta 2017 12.50.46 UTC+3 Jukka Hautakorpi kirjoitti:
>
>
> I have gae php app that has different php files to send me emails and also 
> some notifications for customers
>
> i have received sometimes errors about the quotas and after testing it, it 
> seems that i can only send 1 - 14 emails / day.
>
> Yesterday i received error once more and it was from the php feedback form 
> that sends only 1 mail to me.
> So the limit cannot be "too many emails / second or hour" because there 
> was only 1 mail to be sent to me.
>
> How can the quota limit be so vary and give errors so easily ? i only send 
> 0-20 emails per day.
>
> google\appengine\runtime\OverQuotaError
>> The API call mail.Send() required more quota than is available.
>> google\appengine\runtime\ApiProxy::makeSyncCall
>> Request
>> POST xxx.appspot.com/index.php?sivu=palaute
>> Status
>> 500
>> User agent
>> Mozilla/5.0
>>  (Linux; Android 7.0; SM-G930F Build/NRD90M; wv) AppleWebKit/537.36 
>> (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.98 Mobile Safari/537.36
>> Service
>> default
>> Version
>> 1
>>
>>
> And to be sure you understand, for this 20 max email / day, i won't be 
> changing the code to use the external api, i want to use the old 
> mail-function !
>
>

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/2bda049a-7c98-4e72-bd7e-470e397387ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] gae php mail quota too low, error?

2017-10-05 Thread Jukka Hautakorpi

I have gae php app that has different php files to send me emails and also 
some notifications for customers

i have received sometimes errors about the quotas and after testing it, it 
seems that i can only send 1 - 14 emails / day.

Yesterday i received error once more and it was from the php feedback form 
that sends only 1 mail to me.
So the limit cannot be "too many emails / second or hour" because there was 
only 1 mail to be sent to me.

How can the quota limit be so vary and give errors so easily ? i only send 
0-20 emails per day.

google\appengine\runtime\OverQuotaError
> The API call mail.Send() required more quota than is available.
> google\appengine\runtime\ApiProxy::makeSyncCall
> Request
> POST xxx.appspot.com/index.php?sivu=palaute
> Status
> 500
> User agent
> Mozilla/5.0
>  (Linux; Android 7.0; SM-G930F Build/NRD90M; wv) AppleWebKit/537.36 
> (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.98 Mobile Safari/537.36
> Service
> default
> Version
> 1
>
>
And to be sure you understand, for this 20 max email / day, i won't be 
changing the code to use the external api, i want to use the old 
mail-function !

-- 
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 post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c638e156-5385-4d89-a896-415364565d34%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.