[google-appengine] Re: too many appengine frontend instances

2014-05-09 Thread Bogdan Nourescu
There was an issue reported here:
https://code.google.com/p/googleappengine/issues/detail?id=10893

Go star it to receive notifications.

A temporary fix: go to application settings and disable and enable the 
application. It worked for me

On Friday, May 9, 2014 3:06:54 PM UTC+3, Sérgio Lopes wrote:
>
> Same problem here. Too many instances without any spike on number of 
> requests. I'm already overquota and offline.
>
> Anyone here knows anything? Any solution? Any Google response?
>

-- 
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 http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: too many appengine frontend instances

2014-05-09 Thread Bogdan Nourescu
Hello,
I have the same problem on multiple applications. Each request in creating 
a new instance.

On Friday, May 9, 2014 2:02:03 PM UTC+3, Miroslav Genov wrote:
>
> Same on my side. Is anyone doing something about this? 
>
> On Friday, May 9, 2014 1:52:17 PM UTC+3, Eric Ka Ka Ng wrote:
>>
>> we are with >200 frontend instances too.. the overall performance is 
>> very slow, and the cost becomes huge
>>
>>
>> On 9 May 2014 17:24, Andrei Cosmin Fifiiţă  wrote:
>>
>>> The issue begun with v. 1.9.5 but now the new instaces are created with 
>>> 1.9.4 so i have about 220 instances on 1.9.5 and 110 on 1.9.4.
>>> On 9 May 2014 12:21, "timh"  wrote:
>>>
  I am still on 1.9.4 and not seeing this.

 Is everyone experiencing this rolled over to 1.9.5 ?

 T

 On Friday, May 9, 2014 11:40:19 AM UTC+8, blackdew wrote:
>
> my server make too many Frontend instances
>
> may be it make instance per request
>
> from 2 hours ago
>
> and my last deploy was yesterday may be 24 hours ago
>
> so, help and give me any advice
>
> thanks
>
  -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "Google App Engine" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/google-appengine/tlQPHCvP-14/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 google-appengi...@googlegroups.com.

 To post to this group, send email to google-a...@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine.
 For more options, visit https://groups.google.com/d/optout.

>>>  -- 
>>> 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 post to this group, send email to google-a...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/google-appengine.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>

-- 
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 http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] queuing task for frontend from backend (push queue)

2013-05-23 Thread Bogdan Nourescu
Here is the documentation on target parameter:
https://developers.google.com/appengine/docs/java/config/queue#target

On Friday, March 15, 2013 12:43:47 AM UTC+2, Strom wrote:
>
> Is this also possible with the Java SDK? I couldn't find any 'target' 
> parameter.
>
> On Tuesday, October 18, 2011 7:37:27 PM UTC+3, Greg Darke wrote:
>>
>> In the recent 1.5.5 release we added a feature to allow just this
>> behaviour.
>> If you pass the new module level constant DEFAULT_APP_VERSION as value
>> for the target parameter the task will be enqueued on the default
>> version of your application.
>>
>> You can use it as follows:
>>
>> from google.appengine.api import taskqueue
>>
>> task = taskqueue.Task(url='/', target=taskqueue.DEFAULT_APP_VERSION)
>> taskqueue.Queue().add(task)
>>
>> # Or the following one-liner:
>> taskqueue.add(url='/', target=taskqueue.DEFAULT_APP_VERSION)
>>
>> On Mon, Oct 17, 2011 at 03:47:07AM -0700, db.User('someone') wrote:
>> > Hi,
>> > 
>> > I  have a task running on backend, which needs to schedule another
>> > task to be run on frontend.
>> > 
>> > Can this be done?
>> > 
>> > Just omitting the 'target' param creates tasks which still run on the
>> > backend.
>> > 
>> > (I'm using taskqueue API with the default push queue)
>> > 
>> > Thanks!
>> > 
>> > -- 
>> > You received this message because you are subscribed to the Google 
>> Groups "Google App Engine" group.
>> > To post to this group, send email to google-a...@googlegroups.com.
>> > To unsubscribe from this group, send email to 
>> google-appengi...@googlegroups.com.
>> > For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>> > 
>>
>>

-- 
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 http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: Task Queue on backend runs much slower than it's configured to

2012-07-24 Thread Bogdan Nourescu
I've designed a mail sender using java and front-end instances that can 
send ~70-80 mails /second  (i sometimes over-hit that 4900 mails/minute 
that is enforce by Google)(Using 5 front-end instances 
and thread-safe activated)
If you are not send mails single thread i suggest you read about another 
but I've encountered (
http://code.google.com/p/googleappengine/issues/detail?id=5769 - appears when 
you try to send 2 mails in the exact same millisecond or something like 
that)
I've seen that 20 seconds delay in some of my tasks execution, but only in 
queues that have a low number of tasks in them (1-5).


On Wednesday, August 31, 2011 1:10:38 PM UTC+3, pdknsk wrote:
>
> I haven't been able to figure out what the reason is. It seems to have 
> improved slightly to about 3/s but it still had 20 seconds delays 
> occasionally for no apparent reason. I've since moved mail sending to 
> a named version (rather than backend), and it works great. It can 
> easily send 6/s, with one instance.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/6a7XUwMMtDcJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Problem with mail quota

2012-03-15 Thread Bogdan Nourescu
I have the same problem. I made an app for sending many emails to a list of 
customers.
I enabled billing for 11$/day, I've imported in the app all the customers 
(~300k datastore writes and 20  Frontend Instance Hours )
My app is "cbn-newsletter"
I've enabled billing today and i intend to send a lot of mails in the next 
2 days.
Can i force a charge to be send? Or can you take money from my account 
beforehand?

I already pay another app from the same credit card for about ~5$/week


On Wednesday, March 14, 2012 6:53:47 PM UTC+2, Christina Ilvento wrote:
>
> Hi All,
>
> We recently made a change that causes the 100 email/day quota to only be 
> lifted once a charge has been successfully cleared. Did you recently enable 
> billing, or has billing been enabled for more than one week?
>
>
> Thanks,
> Christina
>
> On Tue, Mar 13, 2012 at 8:46 PM, Daniel  wrote:
>
>> I'm seeing the same problem! I have hit 100 emails and can't mail anymore 
>> even with a very generous billing quota per day.. billable email is not 
>> triggering.  
>>
>> My app is sky-words-hrd
>>
>>
>>
>> On Wednesday, February 8, 2012 2:36:40 PM UTC-8, Ice13ill wrote:
>>>
>>> In SDK 1.6.2 is stated that: 
>>>  "Mail Quota for App Engine apps that have signed up for billing 
>>> will only be increased after the first payment for the app is 
>>> processed. " 
>>>
>>> In the documentation I found this: 
>>> "100 recipients until first charge cleared; 2000 recipients free and 
>>> no maximum thereafter" 
>>>
>>> The problem is that my app has billing enabled for a very long time 
>>> and although everything was ok until today (i also checked the billing 
>>> history and emails that exceeded the 100 limit were billed 
>>> correctly) , now my app has reached 100 mail quota and it cannot send 
>>> any more emails... 
>>>
>>> Does anyone else has this problem ?
>>
>>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google App Engine" group.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msg/google-appengine/-/AYlR59U_ChkJ.
>>
>> To post to this group, send email to google-appengine@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>
>
>
> -- 
>
> Christina Ilvento | Google App Engine | cilve...@google.com |
>  (650)-201-9399
>
>
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/7CLrHqWH4YcJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.