Re: [google-appengine] cant create new entity, java

2015-02-03 Thread Vinny P
On Thu, Jan 29, 2015 at 10:48 AM, Lukas Plazovnik wrote: > now, when i try to upload sample data i get the following log: > > KeyError: 'GroupDatabase' > > > I'm sure the problem is prettya trivial, but i can't find it somehow... > what kind of key error? cant find the entity on the server? > (w

Re: [google-appengine] Custom status

2015-02-03 Thread Vinny P
On Sat, Jan 31, 2015 at 12:09 AM, wrote: > I am working on RESTful web services using java. We all love > REST-full-ness, so I'd like to return more REST-ful status codes from my > endpoints. (Example: 201 CREATED along with JSON contents in response body. > But I can't find any way to set the HT

Re: [google-appengine] Re: Datastore: how to design for huge time-series data

2015-02-03 Thread Vinny P
On Sun, Feb 1, 2015 at 4:00 PM, Shailendra Singh wrote: > This might be a question out of track. Somehow i figured out how to store > multiple values in NDB i.e. using repeated properties. Now my next step is > to create google chart. Can some one guide me for the same. I hadn't found > much tuto

Re: [google-appengine] Flooded with traffic, and it appears to be local IP addresses... ?

2015-02-03 Thread Vinny P
On Mon, Feb 2, 2015 at 2:05 PM, Clark Van Oyen wrote: > > > > > I'm receiving a huge number of requests from IP addresses starting with > 10. Afaik, this is a local IP. So, my question is why wo

Re: [google-appengine] Google App Engine Background threads

2015-02-03 Thread Vinny P
On Thu, Jan 29, 2015 at 10:57 PM, Fredrik Enestad < fredrik.enes...@soundtrackyourbrand.com> wrote: > This comparison: > https://cloud.google.com/appengine/docs/managed-vms/#managed_vm_considerations > > It compares "Background threads", it says "Yes, restricted" for regular > gae, and "Yes" for m

Re: [google-appengine] Endpoints work fine in local server, not when deployed

2015-02-03 Thread Vinny P
On Sat, Jan 31, 2015 at 12:30 PM, Steve P wrote: > I've tried to communicate with the deployed Web app from the android app > running in the emulator and get the below error stream in the log. > > It looks to me like the android app tries to connect and the app engine > refuses the connection. >

Re: [google-appengine] Re: Datastore: how to design for huge time-series data

2015-02-03 Thread Nickolas Daskalou
+1 for BigQuery if you only need to add records (not edit or delete them). We use BigQuery to store analytic data for FollowUs.com . Best thing about it is that it works as advertised. Biggest downside is that queries can take a few seconds to return with results. If you can

[google-appengine] app engine traffic IPs & Hostnames

2015-02-03 Thread Pavel Sokolovsky
One of my sites has seen a significant amount of traffic from four IPs owned by Google. The hostnames all resolve to D.C.B.A.bc.googleusercontent.com (where d.c.b.a. is the ip address backwards). I suspect this traffic is from an app running on google app engine, rather than google itself. Can

Re: [google-appengine] app engine traffic IPs & Hostnames

2015-02-03 Thread Barry Hunter
It could also be Compute Engine. In general AppEngine have UrlFetch, which clearly identifies Apps in the User-Agent. But there is Socket API which makes direct http requests possible. Not sure if the Compute and App engine can be clearly seperated from the IP. .. but the googleusercontent.com

[google-appengine] Re: Flooded with traffic, and it appears to be local IP addresses... ?

2015-02-03 Thread Clark Van Oyen
Thanks for your replies. In my panic I seemed to miss some obvious evidence, and only had to look at the user agent to see that the requests are coming from Google's own crawlers. Adding the url to robots.txt seems to put an end the local requests. I'm still getting some from "Feedfetcher-Googl

[google-appengine] Re: Flooded with traffic, and it appears to be local IP addresses... ?

2015-02-03 Thread Clark Van Oyen
I forgot to mention, htmlcommentbox.com is actually the site I'm running! It's a comment service (like Disqus) that started around the same time but was just a small side project of mine to try out GAE. On Monday, 2 February 2015 12:05:04 UTC-8, Clark Van Oyen wrote: > > > Hi everyone. I'm stump