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

2013-08-13 Thread Martin Trummer
I'm a newbie to the AppEngine datastore and like to know how to best design this use case: there may be some time-series with huge amount of data: e.g. terra-bytes for one time-series the transacations docsays about entit

[google-appengine] Lack of error raise on blobstore delete

2013-08-13 Thread rdodev
Hey all, Me and a co-worker just spent the better part of one work day trying to figure out why some of our unit tests were not failing when they should have been. After trying all sort of work-arounds to no avail, we saw in the app engine source code that when attempting to delete a non-exist

[google-appengine] Re: Number Found Accuracy on Search API Affecting Cursor Results

2013-08-13 Thread Brent Yates
The new 1.8.3 documentation addresses my question, the behavior is as designed: To sort or not to sort If you do not specify any sort options, your search results are automatically returned sorted by descending rank. There is no limit to the number of documents that are returned in this case.

[google-appengine] GAE BILLING IS SERIOUSLY MESSED UP

2013-08-13 Thread James Gilliam
My BILLING ID is 4517-8352-4265 Gae billing sent me email saying my checking account didn't clear and returned no status for the Aug 1st bill. It has been working for months. Called bank, they said the latest request was never presented to them -- probably the reason no status was returned, eh

[google-appengine] How is it possible to get access to contacts?

2013-08-13 Thread Artem Savateev
Hello. I am writing an application on the platform of Google Engine for my company. The application should work with corporate contacts that are created within the account compnet.supervi...@compnet.ru. The application is built from account artem.savat...@compnet.ru. Is it possible to access

[google-appengine] [Java] Unable to update data in datastore with no error.

2013-08-13 Thread Brandon
Hi, I have a problem appears recently. There is a MailQueue table in my system and a column is named STATUS to mark up whether this queue is sent or not. But on Saturday(8/10 UTC+8) this queue sent the same mail with 105 times(and another for about 60 times). There are no any error was found in

[google-appengine] Re: [java] Setting up HRD with WTP (web tools platform) in Eclipse 4.3

2013-08-13 Thread Rajeev Dayal
On Monday, August 12, 2013 7:33:38 PM UTC-4, Nick wrote: > > The GPE has been pretty buggy over its lifetime, particularly wrt the HRD > config. > Sorry about this. We're going to make a change to default the HRD config to "on". We're also going to clean up the launch config logic. There are

[google-appengine] Re: [java] Setting up HRD with WTP (web tools platform) in Eclipse 4.3

2013-08-13 Thread Rajeev Dayal
Jon, Sorry - this stuff is still in preview, and I guess we didn't make that clear. We'll update the docs appropriately. We haven't added the HRD stuff in for the Google App Engine runtime that's part of WTP as yet. We'll do that shortly. You shouldn't be using the Web Application launch con

[google-appengine] Google Search

2013-08-13 Thread Just Curious
Does anyone know the app ID for the Google Search application -- 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.

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

2013-08-13 Thread Jay
In my opinion, your biggest take away from this should be to avoid having a mega entity group and you do this by simply *not* having all the entities in question have the same parent. Or perhaps more pointedly, any parent at all. Unless there is a really strong case to put many thousands of enti

[google-appengine] Re: GAE BILLING IS SERIOUSLY MESSED UP

2013-08-13 Thread James Gilliam
Was told to go to the following link to report billing errors --- https://support.google.com/code/bin/request.py?contact_type=cloud_platform_billing It wants to know the ORDER ID ... There is no ORDER ID on the GAE DASHBOARD anywhere I can find. Exactly how am I to fill out a form that wants an

[google-appengine] Re: GAE BILLING IS SERIOUSLY MESSED UP

2013-08-13 Thread Rae Wang
James, the order ID is not a required field. Can you leave it empty and submit the support request? On Tuesday, August 13, 2013 2:36:07 PM UTC-7, James Gilliam wrote: > > Was told to go to the following link to report billing errors --- > > > https://support.google.com/code/bin/request.py?conta

[google-appengine] Re: GAE BILLING IS SERIOUSLY MESSED UP

2013-08-13 Thread Joakim
The ORDER ID field is not marked as mandatory. Even if it was, you could just enter N/A. The only time I've had reason to use that form, my issue was responded to within 2 days, and from that point they were very quick to reply to the following emails. I was not disappointed. On Tuesday, Augus

[google-appengine] Re: GAE BILLING IS SERIOUSLY MESSED UP

2013-08-13 Thread James Gilliam
Thanks for pointing that out. I didn't notice that it was not required. I am so frustrated dealing with GAE and GOOGLE as well. There is nobody to call even when there is a serious problem. Instead, FAQ and FORMS and frequently ... NO RESPONSE. I did get a response on the forum saying not to r

[google-appengine] Re: GAE BILLING IS SERIOUSLY MESSED UP

2013-08-13 Thread Rae Wang
I understand your frustration. We want to balance making it easy to report issues with protecting your information and not crowding GAE dashboard. We can look into if there are ways to make the support form more easily accessible. Now you have submitted the support request, our support team sho

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

2013-08-13 Thread Rafael
i implemented this by having these components: - TimeSeriesIndex - different rows for hour, day, week, month, year, etc. You can squeeze a lot of data in 1mb :) - DataPoint - unprocessed data point data. thousands of rows per minute. - cron that process the datapoints inside the indexes - the ui r

Re: [google-appengine] How is it possible to get access to contacts?

2013-08-13 Thread Vinny P
On Tue, Aug 13, 2013 at 6:24 AM, Artem Savateev wrote: > I am writing an application on the platform of Google Engine for my > company. The application should work with corporate contacts that are > created within the account compnet.supervi...@compnet.ru. > > When trying to get contacts so: > ht

Re: [google-appengine] Re: [java] Setting up HRD with WTP (web tools platform) in Eclipse 4.3

2013-08-13 Thread Jon Stevens
No apologies necessary... I'm pretty aware that I'm probably one of the only people outside of Google actually using this stuff. I'm no longer using the WebApp launch config... it doesn't work at all with WTP anyway. The Run on Server stuff is really great except for the inability to override the

[google-appengine] Problems with session shared attributes.

2013-08-13 Thread Nelson Paz y MiƱo
Hello, I have a problem with session attributes shared across two servlets In the first servlet (doGet method) I set the attributes like this: req.getSession().setAttribute("FBCurrID", fbcurrency); req.getSession().setAttribute("FBUserID", fname1); I have checked an

Re: [google-appengine] [Java] Unable to update data in datastore with no error.

2013-08-13 Thread Vinny P
On Tue, Aug 13, 2013 at 1:19 AM, Brandon wrote: > There are no any error was found in GAE logs, and my own logs neither. > > Are you sure there aren't any logs? If you're deploying multiple version or backends, make sure to look at those logs as well. Go to the Logs page, on the very top there'