[google-appengine] Re: Avoiding races when using memcache to back datastore queries

2016-03-18 Thread Greg Jones
It probably doesn't surprise you that how NDB handles caching is more complicated (and sensible) than the docs summarise: Specifically, to avoid the problem you highlight, NDB puts sentinel '_LOCKED' value into memcache at certain points, to signal to other readers that an update is taking place

[google-appengine] Re: Content-Length response header

2016-03-18 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
According to this article , the 'Content-Length' and 'Transfer-Encoding' headers are remove from responses your application may serve. Those headers are then added by the Google Front End and finally, the response is serv

[google-appengine] Re: Avoiding races when using memcache to back datastore queries

2016-03-18 Thread Joel Holveck
Thanks for the help! It looks like if memcache evicts the _LOCKED sentinel between steps 3 and 4 of Greg's sequence (for example, resets the shard in a maintenance or migration event), this algorithm could still cache stale data. Greg, you mentioned that it uses CAS to prevent problems with me

[google-appengine] App Engine SDK to login with username and password while deploying

2016-03-18 Thread Dmitry V.
In the old version of SDK you have to type e-mail and password each time you upload the application. In the new version it stores your credentials so it is not easy to swtich account. Each time have to press clear deployment credential, login as another user on google, etc. Is there a way to re

[google-appengine] Re: New Cloud Console

2016-03-18 Thread johnP
I suppose the 'constructive suggestion' in this case is to include a 'refresh' button on all screens :) On Friday, March 18, 2016 at 10:16:09 AM UTC-7, johnP wrote: > > > Glad this issue is getting lots of attention. Another major issue for me > is the Instances viewer. The original console

[google-appengine] Re: Help a Noob create an endpoints project in eclipse

2016-03-18 Thread Jim Craft
So I have an endpoint project created in Eclipse. I have the Google App Engine server created (localhost:), and it is Stopped. When I go to my project and right-click and drop down to "Run As ..." I would expect to see "Run on Server". That is not there, however, so I choose "Run Configu

[google-appengine] Is GAE still being supported?

2016-03-18 Thread Michael Giroux
There has not been an update of com.google.appengine.orm : datanucleus-appengine since Feb, 2013. And the Servlet is still 2.0. I would like to use A

[google-appengine] Re: Datastore ancestor filters

2016-03-18 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Louise, The specific details required to diagnose this specific issue are not provided, so it's difficult to reason about the issue. And while I'm happy to assist, I feel I should take a moment to emphasize that this is a specific technical issue, and not so much a general discussion on the

[google-appengine] Datastore ancestor filters

2016-03-18 Thread Louise Elmose Hedegaard
Hi, I am trying to use ancestor filters, but it does not work as I expect it to. I have a shop entity with an id generated by the datastore. I have an order entity with an id I set myself, and the parent of the order is the shop. I have a transaction entity with an id I set myself, and the paren

[google-appengine] Re: Using gdata with google app engine

2016-03-18 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Kajal, If you encounter a specific technical issue such as this, the better place to post would be Stack Overflow . We monitor there, and there is a much larger community of people to help. This question is simply off topic for this forum here, which is meant more

[google-appengine] Re: urlfetch.fetch reporting inconsistent results?

2016-03-18 Thread 'Luciano Pacheco' via Google App Engine
Hello Diego, I'm Luciano from Google Cloud Support. The issue mentioned on the email you that received yesterday has been fixed. So the error you're experiencing is unrelated. I searched online for "facebook graphapi GraphMethodException" and it seems related to some permissions on the Faceboo

[google-appengine] Architecture question

2016-03-18 Thread Rajesh Gupta
Hi, We are using java appengine. We have already using 160 indexes. We plan to expand further with more functionality, but we will hit the 200 index limit. Our current architecture is servlets/jsp, with several GWT modules. What are my architecture options to add more functionality, with out hit

[google-appengine] Re: C# System.DllNotFoundException: MonoPosixHelper,

2016-03-18 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Hello. Thanks for posting to the community here. In order to help here, I would need some more information, assuming you're still experiencing this issue: - The error mentioned may have a few different causes. Can you provide the full stack trace? - Can you provide the request and resp

[google-appengine] Re: Avoiding races when using memcache to back datastore queries

2016-03-18 Thread Joel Holveck
By the way, feel free to say this should be on Stack Overflow if that's more appropriate. I still don't have a good feel for what should be posted here vs. elsewhere. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from th

[google-appengine] Re: Architecture question

2016-03-18 Thread Janne Savukoski
Hi Rajesh, I'd suggest to consider moving some queries over to Search API (https://cloud.google.com/appengine/docs/java/search/). For example, we use the custom datastore indexes (indices) primarily only for queries which have strong consistency requirements. After we adopted this approach of