[google-appengine] Re: Endpoints and GCM: is it possible to send notifications to thousands of clients dealing with time limits?

2015-04-10 Thread Massimo Di Cosimo
Thank you Adam.
It was my first option and I'm doing some experiments.
Are you aware of any tutorial or sample code that could simplify my work?
Thank you,
Max

Il giorno sabato 11 aprile 2015 00:56:51 UTC+2, Adam ha scritto:
>
> In this case you would generally want to use a task queue [1]. Sending a 
> message to many clients with retry would be considered background work and 
> not something to fit into a request window which needs to complete quickly. 
> Your endpoints methods can kick off tasks asynchronously and then return a 
> response before the deadline.
>
> Its good to remember that the "request" timer is due to need for a 
> relative fast response to an HTTP request, but this does not mean all of 
> your app logic needs to fit inside these request / response windows. This 
> is where async processing like task queues comes in to help your apps scale.
>
> [1] https://cloud.google.com/appengine/docs/java/taskqueue/
>
> On Friday, April 3, 2015 at 10:05:44 AM UTC-4, Massimo Di Cosimo wrote:
>>
>> Hello there,
>> I found the tutorial about App Engine Backend with Google Cloud Messaging 
>> 
>>  
>> and I successfully tested it.
>> Now I would like to extend it to something closer to a real application.
>> For example I would like to send a notification or a message to thousands 
>> of clients (my Android app is installed on thousands of tablet/phones).
>> If I understand correctly, Endpoints undergoes time limits of App Engine (
>> https://cloud.google.com/appengine/docs/java/requests#Java_The_request_timer
>> ). 
>> So, what is the most proper way to do this?
>>
>> For examples, sometimes sending through GCM requires retries with 
>> exponential backoff and this could occasionally lead to exceed the maximum 
>> time allowed for handing a request in GAE.
>> I have some solutions in mind, but before reinventing the wheel, I would 
>> like to know if there is some tutorial or code already existing that could 
>> lead me to the correct approach.
>>
>> Thank you,
>> Max
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/89b52fcf-2302-49ff-872b-09504dc3ba5d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Adam
Details of the incident are available at 
https://status.cloud.google.com/incident/appengine/15010, and a full 
incident report should be available on this page within one business day.

On Friday, April 10, 2015 at 3:38:09 PM UTC-4, Matija wrote:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b7852a70-b7b7-4af1-9c9c-4b491a072fed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Fabio Bacarin
Here same problem. Nothing is updated or inserted on datastore, through our 
app or gae datastore console. Somebody have news!?!? Please :O 

Em sexta-feira, 10 de abril de 2015 16:38:09 UTC-3, Matija escreveu:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/8670a59a-cfc7-43fe-aba7-01560e8cd55e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Endpoints and GCM: is it possible to send notifications to thousands of clients dealing with time limits?

2015-04-10 Thread Adam
In this case you would generally want to use a task queue [1]. Sending a 
message to many clients with retry would be considered background work and 
not something to fit into a request window which needs to complete quickly. 
Your endpoints methods can kick off tasks asynchronously and then return a 
response before the deadline.

Its good to remember that the "request" timer is due to need for a relative 
fast response to an HTTP request, but this does not mean all of your app 
logic needs to fit inside these request / response windows. This is where 
async processing like task queues comes in to help your apps scale.

[1] https://cloud.google.com/appengine/docs/java/taskqueue/

On Friday, April 3, 2015 at 10:05:44 AM UTC-4, Massimo Di Cosimo wrote:
>
> Hello there,
> I found the tutorial about App Engine Backend with Google Cloud Messaging 
> 
>  
> and I successfully tested it.
> Now I would like to extend it to something closer to a real application.
> For example I would like to send a notification or a message to thousands 
> of clients (my Android app is installed on thousands of tablet/phones).
> If I understand correctly, Endpoints undergoes time limits of App Engine (
> https://cloud.google.com/appengine/docs/java/requests#Java_The_request_timer
> ). 
> So, what is the most proper way to do this?
>
> For examples, sometimes sending through GCM requires retries with 
> exponential backoff and this could occasionally lead to exceed the maximum 
> time allowed for handing a request in GAE.
> I have some solutions in mind, but before reinventing the wheel, I would 
> like to know if there is some tutorial or code already existing that could 
> lead me to the correct approach.
>
> Thank you,
> Max
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c968d545-33eb-4c3a-aa3e-5d988193afb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Matija
Yes, we are back up to date also.

On Friday, April 10, 2015 at 10:37:18 PM UTC+2, Diego Borges wrote:
>
> Our app is back up, anyone else?
>
> On Friday, April 10, 2015 at 5:31:56 PM UTC-3, Henry Liu wrote:
>>
>> Something switched over and I've been getting 500 responses for stuff 
>> too. Seems like the best thing to do right now is to not cause any 
>> additional damage and let them sort it out.
>>
>> On Friday, April 10, 2015 at 1:27:28 PM UTC-7, Gilberto Torrezan Filho 
>> wrote:
>>>
>>> I'm having problems with my Datastore as well. I tried to rebuild my 
>>> index with vacuum_indexes (didn't know it was a general problem) and got:
>>>
>>> Apr 10, 2015 5:17:53 PM 
>>> com.google.appengine.tools.admin.AbstractServerConnection send1
>>> WARNING: Error posting to URL: 
>>> https://appengine.google.com/api/datastore/index/delete?app_id=myid&;
>>> 500 Internal Server Error
>>> >> content="text/html;charset=utf-8">500 Server 
>>> ErrorError: Server 
>>> ErrorThe server encountered an error and could not complete your 
>>> request.Please try again in 30 seconds.
>>> This is try #0
>>>
>>>
>>> On Friday, April 10, 2015 at 4:38:09 PM UTC-3, Matija wrote:

 Are we only one with this problem? For the last one hour it is like HR 
 datastore is in some kind read only state but datastore put statements 
 don't return any errors?

 We have noticed that they are testing 1.9.19 java GAE version on some 
 instances.

 Anybody??? What to do? Where to report? Koju posluku porati?

>>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/74278344-85db-48a4-ab49-e534f90c966a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Diego Borges
Our app is back up, anyone else?

On Friday, April 10, 2015 at 5:31:56 PM UTC-3, Henry Liu wrote:
>
> Something switched over and I've been getting 500 responses for stuff too. 
> Seems like the best thing to do right now is to not cause any additional 
> damage and let them sort it out.
>
> On Friday, April 10, 2015 at 1:27:28 PM UTC-7, Gilberto Torrezan Filho 
> wrote:
>>
>> I'm having problems with my Datastore as well. I tried to rebuild my 
>> index with vacuum_indexes (didn't know it was a general problem) and got:
>>
>> Apr 10, 2015 5:17:53 PM 
>> com.google.appengine.tools.admin.AbstractServerConnection send1
>> WARNING: Error posting to URL: 
>> https://appengine.google.com/api/datastore/index/delete?app_id=myid&;
>> 500 Internal Server Error
>> > content="text/html;charset=utf-8">500 Server 
>> ErrorError: Server 
>> ErrorThe server encountered an error and could not complete your 
>> request.Please try again in 30 seconds.
>> This is try #0
>>
>>
>> On Friday, April 10, 2015 at 4:38:09 PM UTC-3, Matija wrote:
>>>
>>> Are we only one with this problem? For the last one hour it is like HR 
>>> datastore is in some kind read only state but datastore put statements 
>>> don't return any errors?
>>>
>>> We have noticed that they are testing 1.9.19 java GAE version on some 
>>> instances.
>>>
>>> Anybody??? What to do? Where to report? Koju posluku porati?
>>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/bcdc9598-5cfa-4f5b-a2a6-83b0d12518da%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Rodrigo Ha
We already got an official answer by phone. They are on it.
An as someone said... their own customer support is on AppEngine so it does 
not work atm.

On Friday, April 10, 2015 at 2:38:09 PM UTC-5, Matija wrote:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/5bec0ddc-3787-4a72-b305-3c7cfa80665c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Henry Liu
Something switched over and I've been getting 500 responses for stuff too. 
Seems like the best thing to do right now is to not cause any additional 
damage and let them sort it out.

On Friday, April 10, 2015 at 1:27:28 PM UTC-7, Gilberto Torrezan Filho 
wrote:
>
> I'm having problems with my Datastore as well. I tried to rebuild my index 
> with vacuum_indexes (didn't know it was a general problem) and got:
>
> Apr 10, 2015 5:17:53 PM 
> com.google.appengine.tools.admin.AbstractServerConnection send1
> WARNING: Error posting to URL: 
> https://appengine.google.com/api/datastore/index/delete?app_id=myid&;
> 500 Internal Server Error
>  content="text/html;charset=utf-8">500 Server 
> ErrorError: Server 
> ErrorThe server encountered an error and could not complete your 
> request.Please try again in 30 seconds.
> This is try #0
>
>
> On Friday, April 10, 2015 at 4:38:09 PM UTC-3, Matija wrote:
>>
>> Are we only one with this problem? For the last one hour it is like HR 
>> datastore is in some kind read only state but datastore put statements 
>> don't return any errors?
>>
>> We have noticed that they are testing 1.9.19 java GAE version on some 
>> instances.
>>
>> Anybody??? What to do? Where to report? Koju posluku porati?
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b367f278-13fe-407d-aaa0-3b64631b2b51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Andrew Greene
I was just told:

The engineering team believes they have identified the cause of the issue, 
> and are working on remediation now. I will share the status of that when I 
> have news, but no later than 14:00 Pacific Time.


On Friday, April 10, 2015 at 4:27:28 PM UTC-4, Gilberto Torrezan Filho 
wrote:
>
> I'm having problems with my Datastore as well. I tried to rebuild my index 
> with vacuum_indexes (didn't know it was a general problem) and got:
>
> Apr 10, 2015 5:17:53 PM 
> com.google.appengine.tools.admin.AbstractServerConnection send1
> WARNING: Error posting to URL: 
> https://appengine.google.com/api/datastore/index/delete?app_id=myid&;
> 500 Internal Server Error
>  content="text/html;charset=utf-8">500 Server 
> ErrorError: Server 
> ErrorThe server encountered an error and could not complete your 
> request.Please try again in 30 seconds.
> This is try #0
>
>
> On Friday, April 10, 2015 at 4:38:09 PM UTC-3, Matija wrote:
>>
>> Are we only one with this problem? For the last one hour it is like HR 
>> datastore is in some kind read only state but datastore put statements 
>> don't return any errors?
>>
>> We have noticed that they are testing 1.9.19 java GAE version on some 
>> instances.
>>
>> Anybody??? What to do? Where to report? Koju posluku porati?
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b61ad144-1cd8-4acb-b6eb-5986727f489a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Gilberto Torrezan Filho
I'm having problems with my Datastore as well. I tried to rebuild my index 
with vacuum_indexes (didn't know it was a general problem) and got:

Apr 10, 2015 5:17:53 PM 
com.google.appengine.tools.admin.AbstractServerConnection send1
WARNING: Error posting to URL: 
https://appengine.google.com/api/datastore/index/delete?app_id=myid&;
500 Internal Server Error
500 Server 
ErrorError: Server 
ErrorThe server encountered an error and could not complete your 
request.Please try again in 30 seconds.
This is try #0


On Friday, April 10, 2015 at 4:38:09 PM UTC-3, Matija wrote:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b7b3c73d-e15b-4234-aa86-85574feb3351%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Andrew Greene
They say they will update me by 13:30 Pacific Time.

On Friday, April 10, 2015 at 4:08:50 PM UTC-4, cloudpre wrote:
>
> We are also facing same issue for last 30 mins. If there are any updates 
> from Google that anyone has got, please share here.
>
> On Saturday, April 11, 2015 at 1:08:09 AM UTC+5:30, Matija wrote:
>>
>> Are we only one with this problem? For the last one hour it is like HR 
>> datastore is in some kind read only state but datastore put statements 
>> don't return any errors?
>>
>> We have noticed that they are testing 1.9.19 java GAE version on some 
>> instances.
>>
>> Anybody??? What to do? Where to report? Koju posluku porati?
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/184803e6-949b-4f11-b4c4-3f8cf8186920%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Henry Liu
This is happening for me too.

On Friday, April 10, 2015 at 12:38:09 PM UTC-7, Matija wrote:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a399ffcf-d026-434c-9950-b21dd7881fcd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread aloo
In fact, their own premium customer support site that lists your open cases 
is also affected by this. My most recent case I opened with them about this 
issue doesn't show up. 

On Friday, April 10, 2015 at 1:05:58 PM UTC-7, aloo wrote:
>
> Anyone heard anything from Google?
>
> On Friday, April 10, 2015 at 1:04:09 PM UTC-7, Rodrigo Ha wrote:
>>
>> We are seeing this too.
>>
>> We can query any model by ID, but not by any other property. ( an hour 
>> and a half ago.)
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b10dfc31-d9e7-4a24-a0a6-a1a30b6d8109%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread cloudpre
We are also facing same issue for last 30 mins. If there are any updates 
from Google that anyone has got, please share here.

On Saturday, April 11, 2015 at 1:08:09 AM UTC+5:30, Matija wrote:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/08a1e36a-1523-42bf-a66e-223cd6651127%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread Diego Borges
We are seeing the same issue since about an hour ago :/

Just got in touch with the support team, they will dig into the problem and 
let us know ASAP what has happened.

On Friday, April 10, 2015 at 4:59:49 PM UTC-3, Thomas Schranz wrote:
>
> Same here, since about 10-15 minutes.
> Status page is all green though :/
>
> https://code.google.com/status/appengine
>
> On Friday, April 10, 2015 at 9:50:45 PM UTC+2, Andrew Greene wrote:
>>
>> I am seeing this too.
>>
>> On Friday, April 10, 2015 at 3:41:49 PM UTC-4, Joshua Smith wrote:
>>>
>>> I’m seeing something, too.
>>>
>>> It appears the entities are being updated but the indexes aren’t.
>>>
>>> That is, I updated a record but I’m not seeing the change. But if I 
>>> click through to the entity, I do see the change. So basically like what 
>>> would happen during the “inconsistent” phase of a HR database put. But it’s 
>>> not getting consistent.
>>>
>>> On Apr 10, 2015, at 3:38 PM, Matija  wrote:
>>>
>>> Are we only one with this problem? For the last one hour it is like HR 
>>> datastore is in some kind read only state but datastore put statements 
>>> don't return any errors?
>>>
>>> We have noticed that they are testing 1.9.19 java GAE version on some 
>>> instances.
>>>
>>> Anybody??? What to do? Where to report? Koju posluku porati?
>>>
>>> -- 
>>> 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.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/google-appengine/42a9ecd3-3ee4-4c8b-a64b-d01ab9b519d8%40googlegroups.com
>>>  
>>> 
>>> .
>>> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/0038f6a0-bd23-489a-beb5-fa29647a95f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread aloo
Anyone heard anything from Google?

On Friday, April 10, 2015 at 1:04:09 PM UTC-7, Rodrigo Ha wrote:
>
> We are seeing this too.
>
> We can query any model by ID, but not by any other property. ( an hour and 
> a half ago.)
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/972eb045-36b3-4488-a56c-9de7d48dc766%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread Rodrigo Ha
We are seeing this too.

We can query any model by ID, but not by any other property. ( an hour and 
a half ago.)

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/06469c3e-135e-486a-9099-2618fc53fa92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread Thomas Schranz
Same here, since about 10-15 minutes.
Status page is all green though :/

https://code.google.com/status/appengine

On Friday, April 10, 2015 at 9:50:45 PM UTC+2, Andrew Greene wrote:
>
> I am seeing this too.
>
> On Friday, April 10, 2015 at 3:41:49 PM UTC-4, Joshua Smith wrote:
>>
>> I’m seeing something, too.
>>
>> It appears the entities are being updated but the indexes aren’t.
>>
>> That is, I updated a record but I’m not seeing the change. But if I click 
>> through to the entity, I do see the change. So basically like what would 
>> happen during the “inconsistent” phase of a HR database put. But it’s not 
>> getting consistent.
>>
>> On Apr 10, 2015, at 3:38 PM, Matija  wrote:
>>
>> Are we only one with this problem? For the last one hour it is like HR 
>> datastore is in some kind read only state but datastore put statements 
>> don't return any errors?
>>
>> We have noticed that they are testing 1.9.19 java GAE version on some 
>> instances.
>>
>> Anybody??? What to do? Where to report? Koju posluku porati?
>>
>> -- 
>> 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.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-appengine/42a9ecd3-3ee4-4c8b-a64b-d01ab9b519d8%40googlegroups.com
>>  
>> 
>> .
>> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a36c7b2a-acde-402c-9fce-397ba342955d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread Andrew Greene
I am seeing this too.

On Friday, April 10, 2015 at 3:41:49 PM UTC-4, Joshua Smith wrote:
>
> I’m seeing something, too.
>
> It appears the entities are being updated but the indexes aren’t.
>
> That is, I updated a record but I’m not seeing the change. But if I click 
> through to the entity, I do see the change. So basically like what would 
> happen during the “inconsistent” phase of a HR database put. But it’s not 
> getting consistent.
>
> On Apr 10, 2015, at 3:38 PM, Matija > 
> wrote:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>
> -- 
> 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.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-appengine/42a9ecd3-3ee4-4c8b-a64b-d01ab9b519d8%40googlegroups.com
>  
> 
> .
> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/7144a569-46b9-4df2-89b5-36e2e7cfdf14%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread aloo
Seeing this too (indexes not being updated)

On Friday, April 10, 2015 at 12:41:49 PM UTC-7, Joshua Smith wrote:
>
> I’m seeing something, too.
>
> It appears the entities are being updated but the indexes aren’t.
>
> That is, I updated a record but I’m not seeing the change. But if I click 
> through to the entity, I do see the change. So basically like what would 
> happen during the “inconsistent” phase of a HR database put. But it’s not 
> getting consistent.
>
> On Apr 10, 2015, at 3:38 PM, Matija > 
> wrote:
>
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements 
> don't return any errors?
>
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
>
> Anybody??? What to do? Where to report? Koju posluku porati?
>
> -- 
> 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.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-appengine/42a9ecd3-3ee4-4c8b-a64b-d01ab9b519d8%40googlegroups.com
>  
> 
> .
> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/f1197b1d-2b07-4439-b9a0-31abde93705a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] HR datastore is in readonly but there are no errors?

2015-04-10 Thread Joshua Smith
I’m seeing something, too.

It appears the entities are being updated but the indexes aren’t.

That is, I updated a record but I’m not seeing the change. But if I click 
through to the entity, I do see the change. So basically like what would happen 
during the “inconsistent” phase of a HR database put. But it’s not getting 
consistent.

> On Apr 10, 2015, at 3:38 PM, Matija  > wrote:
> 
> Are we only one with this problem? For the last one hour it is like HR 
> datastore is in some kind read only state but datastore put statements don't 
> return any errors?
> 
> We have noticed that they are testing 1.9.19 java GAE version on some 
> instances.
> 
> Anybody??? What to do? Where to report? Koju posluku porati?
> 
> -- 
> 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 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-appengine/42a9ecd3-3ee4-4c8b-a64b-d01ab9b519d8%40googlegroups.com
>  
> .
> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/A081FDAB-5E2F-419E-BC93-88571DC5724C%40gmail.com.
For more options, visit https://groups.google.com/d/optout.