[appengine-java] dashboard history

2010-06-03 Thread Philip Tucker
is it possible to see history beyond 18 hours in the dashboard? or at least to export data periodically so I can analyze longer trends? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
There are three common approaches. 1. Use App Engine for Business. 2. Wait for 'paid to reserve JVM feature'. 3. Use lightweight framework. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
Sorry! I made a mistake. The GAE for Business page ( http://code.google.com/intl/en/appengine/business/ ) doesn't mention anything about loading request. The No#1 approach is void. On 6月3日, 下午5時08分, Thomas mylee...@gmail.com wrote: There are three common approaches. 1. Use App Engine for

[appengine-java] Using a Custom Domain

2010-06-03 Thread Sudhir Ramanandi
I don't see any way to map my app engine application to the base custom domain but just the sub domains. Lets say, I want to map my application to example.com not any subdomain of example.com Is it possible? -- Sudhir Ramanandi http://www.ramanandi.org -- You received this message because you

Re: [appengine-java] TransientFailureException

2010-06-03 Thread Viðar Svansson
I am adding tasks to the defautl queue and frequently get this exception frequently. What is happening? Can I do anything about it? Viðar com.google.appengine.api.labs.taskqueue.TransientFailureException: Unknown at

[appengine-java] Re: Using a Custom Domain

2010-06-03 Thread Sudhir Ramanandi
Just found - Naked domain are not supported Sad On Thu, Jun 3, 2010 at 2:42 PM, Sudhir Ramanandi sramana...@gmail.comwrote: I don't see any way to map my app engine application to the base custom domain but just the sub domains. Lets say, I want to map my application to example.com not any

[appengine-java] Provisioning API and JPA

2010-06-03 Thread sathish
Hi my idea is to retrieve users from domain using java and to store results in table using JPA. I had retrieve the users using Provisioning API and when i store the valuse only 130 values are stored in table within 30 sec... what shall i do for this issue please Help me.. This is the code i tried

[appengine-java] Re: Provisioning API and JPA

2010-06-03 Thread fvisticot
I have the same kind of performance pb but no answer/solution found actually... It seems that this kind of provisioning feature is not available with JPA... On 3 juin, 13:12, sathish sathish.sha...@gmail.com wrote: Hi my idea is to retrieve users from  domain using java and to store results in

[appengine-java] Re: the support to JPA

2010-06-03 Thread fvisticot
+1 On 2 juin, 18:49, Tao rocka...@gmail.com wrote: Hi everyone in the tuto, why there is so few articles with JPA? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Andrew
Hi Bill, I can see what you mean now. I have actually jumped over to a Struts 2 app at the moment, and whenever I change Java code I need to stop the development server and restart it. Very painful. Is this just the way it is, or are we missing something? Regards, Andrew. On Jun 3, 10:32 am,

[appengine-java] Re: Transaction exception when not using a transaction ?

2010-06-03 Thread JD
I added a call to flush() after every change on the PM-managed object, but that did not help. Also doing a pm.flush() does not throw this exception, but doing a pm.close() does - which seems to be contrary to your reasoning (I would expect flush to throw the same exception if multiple entity

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Thomas: Thanks for your quickly reply very much !!! 2. Wait for 'paid to reserve JVM feature'. Do you have more information about this ? 3. Use lightweight framework. What lightweight framework did you mean for ? In this testing we just using Servlet and JSP that's recommend by GAE.

Re: [appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Bill Milligan
Actually, that sounds different. The trouble I have is when Spring tries to locate the view thusly: 1. HelloController returns hello/hello. 2. InternalResourceViewResolver attempts to map this to /WEB-INF/views/hello/hello.jsp 3. Jetty's web container attempts to find this resource in the URL

[appengine-java] Restoring backup

2010-06-03 Thread Christian Goudreau
Is it possible ? I want to have this monday data inside my datastore : apapulintranet Christian Goudreau -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com.

[appengine-java] java.sql.Time is not a supported property type

2010-06-03 Thread Sudhir Ramanandi
I got this error when querying for an entity that has @Temporal(TemporalType.TIME) *Field* @Basic @Temporal(TemporalType.TIME) private Date time; *Query * Query q = em.createQuery(select from + entity.class.getName() + entity where entity.time=?1); q.setParameter(1, date,

[appengine-java] Re: the support to JPA

2010-06-03 Thread datanucleus
Perhaps because JPA is an API and query language designed solely around and for RDBMS. And this is not RDBMS. JDO and JDOQL, on the other hand, were designed to be datastore agnostic, and object-centric -- You received this message because you are subscribed to the Google Groups Google App

Re: [appengine-java] Failure to write objects to HttpSession - NotSerializableException : LazyResult

2010-06-03 Thread Ifnu bima
You need to implements serializable interface to User class, something like : public class User implements Serializable { } -- regards -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

Re: [appengine-java] Re: Security restrictions may not be entirely emulated errors in Dev mode with Spring 3.0 on 1.3.4

2010-06-03 Thread Bill Milligan
Let me clarify: I get a 404 error reported on /WEB-INF/views/hello/hello.jsp when I try this. I've tried moving the views directory elsewhere, outside of WEB-INF but still cannot find it. On Thu, Jun 3, 2010 at 9:43 AM, Bill Milligan bill.milli...@gmail.comwrote: Actually, that sounds

[appengine-java] Re: Transaction exception when not using a transaction ?

2010-06-03 Thread Millisecond
Hmmm. How is your object model structured? Do entities have other entities as direct references? If you have class A { B b } and setting b to an instance of B that already existed might throw the error you're seeing. I changed my structure to be class A { String bKey } for a variety of other

[appengine-java] Hi anybody pls help me

2010-06-03 Thread Goodwin
im new for GAE. I read gae doc and develop a blog useing jsp. but when i run it in my pc it shows only the page index.jsp. others like wirtearticle.jsp, edit.jspand so on not are showed... why? anyone can help me? tks -- You received this message because you are subscribed to the Google

Re: [appengine-java] Hi anybody pls help me

2010-06-03 Thread Bill Milligan
That's rather very vague. Can you be a lot more specific? On Thu, Jun 3, 2010 at 9:22 AM, Goodwin weizhao1...@gmail.com wrote: im new for GAE. I read gae doc and develop a blog useing jsp. but when i run it in my pc it shows only the page index.jsp. others like wirtearticle.jsp,

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Christian Goudreau
I need some answers, it's really important for my business. Regards, Christian On Tue, Jun 1, 2010 at 10:20 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: Oh I forgot one question that my administrators asked me. If I delete an objet from my datastore, how long this data is

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Ikai L (Google)
No, we do not allow selection of where data is physically stored. This feature is not scheduled in our roadmap http://code.google.com/appengine/docs/roadmap.html On Thu, Jun 3, 2010 at 10:17 AM, Christian Goudreau goudreau.christ...@gmail.com wrote: I need some answers, it's really important

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Jake
Hello, If you don't like this general behavior, please star this issue: http://code.google.com/p/googleappengine/issues/detail?id=2931 I see comments like this pop up all the time, but we must be a rarity. Anyways, regarding the pay to reserve JVM see this issue:

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Bill Milligan
Hi Christian, For that kind of control on physical security, you really need dedicated servers that you can physically touch in a data center. This is really very not cheap. Some kinds of applications require this security, such as banking, investment, or credit tracking software, where you are

Re: [appengine-java] Beginner help

2010-06-03 Thread Bill Milligan
Is this what you're looking for? http://code.google.com/appengine/docs/java/javadoc/index.html http://code.google.com/appengine/docs/java/javadoc/index.htmlYou may want to google for answers to simple questions like this. I'd also suggest you look for google app engine hello world to see many

Re: [appengine-java] Restoring backup

2010-06-03 Thread Bill Milligan
One of the ideas of google app engine is that you don't have to manage this sort of thing. Google does it for you. If you need a more fine-grained level of control, if you *want* to be answering pagers in the middle of the night when everything breaks (and believe me, they do) then perhaps

Re: [appengine-java] Re: Question about security of my data on AppEngine and Guarentee.

2010-06-03 Thread Christian Goudreau
I also think they are exagerated. But what I'm thinking is not important lol :D Christian On Thu, Jun 3, 2010 at 4:27 PM, Bill Milligan bill.milli...@gmail.comwrote: Hi Christian, For that kind of control on physical security, you really need dedicated servers that you can physically

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Hi Jack: Thanks for your reply very much !!! If you don't like this general behavior, please star this issue: http://code.google.com/p/googleappengine/issues/detail?id=2931 YES I have stared this issue, I think every body who uses GAE should star this issue ^^|| I personally don't like

[appengine-java] Re: App Engine cold starts and overly aggressive cycling

2010-06-03 Thread Tin
Hi all: I think every body who uses GAE should star this issue : http://goo.gl/juDy -- PLEASE HELP !! Thank you very much ~ -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
IMHO, 'Pay to reserve a JVM' is much more reasonable. Although everybody likes free lunch, but the resources will be wrongly allocated eventually. For example, the rival company of Google can legally eat up all its RAM by submitting tremendous amount of huge size application if there is no

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
    I use struts 1.2.x + Spring 2.0 initially. But quickly I realized I had to get rid of Spring in order to decrease the startup time. So I wrote a TidyDelegationProxy (tidy means TIny DependencY injector) to replace Spring's struts proxy. I successfully reduced the startup CPU time from 12+

[appengine-java] Cloud2db for Amazon SimpleDB

2010-06-03 Thread Sandeep Sathaye
Hi Everyone, Cloud2db http://www.cloud2db.com/ is pleased to announce the support for Amazon SimpleDB platform in addition to Google Bigtable platform which it already supports. With this new release you will be able to transparently choose between Amazon SimpleDB and Google Bigtable as your

[appengine-java] Re: I need facebook to connect with my dev server, how i configure jetty?

2010-06-03 Thread Thomas
See my post in the http://groups.google.com/group/google-appengine-java/browse_thread/thread/dce94c4deedd88e1/d506eebfd526b893 thread. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread badcluster
Hi! Without Roo i had to implement a lot of workaround code on my project to work with Spring Security 3 and GWT on AppEngine. I had to deal with some RPC issues. Do you know if Roo implements Spring Security + GWT on AppEngine ? Thanks in advance -- You received this message because you are

Re: [appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread Shahzada Hatim
Nothing that I know of, and even ROO's current security setup (for non GWT/HTML-only apps) is very basic (just gives you static admin and user with passwords in XML). You have to customize the system if you want to use spring security extensively. There is a need for plugins for Spring ROO which

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Jake
I understand that there can be problems with everyone having a full- time reserved JVM. My problem is simply that the instance restarts too frequently. I mean, honestly, one SINGLE page request results in TWO application restarts? Even if you get it down to 4 seconds, that's 8-10 seconds just

Re: [appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread Cleber Dantas Silva
Shahzada, thanks for your information. The issues that i had with rpc: 1) when i made an rpc call and the auth session ended, the rpc went to failure function with a 404 not found message. So, i had to implement a method to get the error message and if 404, show login screen. Very very dirty

Re: [appengine-java] Roo + GWT + Security on AppEngine

2010-06-03 Thread Shahzada Hatim
Well I think you can streamline spring security to forward you to a proper location once you are not logged in, ofcourse you will have to tell your GWT app to redirect (or show a differrent state) for your login. Spring secrity has a very extnesive declarative security mechaniism, it can protect

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Thomas:    Correct some mistakes.    I use struts 1.2.x + Spring 2.0 + JDO initially. But quickly I realized I had to get rid of Spring and JDO in order to decrease the startup time. So I used slim3 and wrote a TidyDelegationProxy to replace Spring's struts proxy. I successfully

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Jack: I understand that there can be problems with everyone having a full- time reserved JVM.  My problem is simply that the instance restarts too frequently.  I mean, honestly, one SINGLE page request results in TWO application restarts?  Even if you get it down to 4 seconds, that's

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
Hi Tin: I'm VERY VERY agree with this, the instance restarting is TOO frequently, even we just use Servlet + JSP the performance still can't be accepted. I don't think this'e a reasonable behavior of a production web container. In your case, the problem is due to JAP. If you want to have

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Thomas
On 6月4日, 下午12時02分, Jake jbrooko...@cast.org wrote: I understand that there can be problems with everyone having a full- time reserved JVM.  My problem is simply that the instance restarts too frequently.  I mean, honestly, one SINGLE page request results in TWO application restarts?  Even if

[appengine-java] Re: Performance issue for GAE auto-restart

2010-06-03 Thread Tin
Dear Thomas: In your case, the problem is due to JAP. If you want to have quick startup time, you MUST get rid of JPA/JDO and use some other lightweight persistence api (Slim3, Objectify, Twig, ...) or use low level datastore api directly to access the datastore. Thanks for this important

[appengine-java] Re: Failure to write objects to HttpSession - NotSerializableException : LazyResult

2010-06-03 Thread Shawn Draper
Attached is the User object... package com.gcf.core; import java.util.*; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.NotPersistent; import javax.jdo.annotations.PersistenceCapable; import javax.jdo.annotations.Persistent; import

[google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-03 Thread Aurelian
I was trying to send 1200 emails using a task queue, but it doesn't work, giving a error. I think you should split the list of receivers every 5000, and send 2 o 3 emails. Happy coding. On Jun 3, 7:45 am, Sandeep Arneja sandee...@gmail.com wrote: I am trying to send an email with about 10K+

[google-appengine] Re: Status page not working

2010-06-03 Thread François Masurel
It's ok now, thanx. On 2 juin, 19:30, Wesley C (Google) wesc+...@google.com wrote: thanks barry, you're right. there's a configuration issue that the team is working on, so we should have it working soon. apologies for crude CSS-less status page! -- wesley - - - - - - - - - - - - - - - - -

Re: [google-appengine] Re: Buying a new domain...

2010-06-03 Thread Timofey Danshin
You can by one from webnames.ru, i suppose. They have a free DNS service, which can be configured to point your domain to your webapp in just (sic!) one click. You can certainly configure your dns the way you want as well. I'm not quite sure if non-russian citizens can use it, though. But it's

Re: [google-appengine] Re: Buying a new domain...

2010-06-03 Thread Massimiliano
Dear Prashant, there are many providers that can fit your needs. I'm using name.com and it works great. Regards Massimiliano 2010/6/3 Timofey Danshin rus.mcdevelo...@gmail.com You can by one from webnames.ru, i suppose. They have a free DNS service, which can be configured to point your

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
I need just something like *myvar* so I will accept any carachters before and after the var... Or I have to divide the strings in list (each word an elment of the list) and use the operator IN. Thinking 2010/6/3 Rafael Sierra rafaeljs...@gmail.com On Wed, Jun 2, 2010 at 5:06 PM, Massimiliano

Re: [google-appengine] Re: Buying a new domain...

2010-06-03 Thread Prashant Gupta
I want to know if there is any drawback of buying domain from Google Apps? If I buy a domain from Google Apps will I be able to setup cnames to services other than Google services? Will I be able to set up A field? On 3 June 2010 14:26, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear

Re: [google-appengine] Re: Buying a new domain...

2010-06-03 Thread VTR Ravi Kumar
i guess Google gets you the domain thru GoDaddy and you should be able to do the setups from there.. I would urge you to try http://is.gd/cATyQ On Thu, Jun 3, 2010 at 4:55 PM, Prashant Gupta nextprash...@gmail.comwrote: I want to know if there is any drawback of buying domain from Google

[google-appengine] Eclipse, AppEngine, Java.

2010-06-03 Thread Timofey Danshin
Hi. I've tried to split my AppEngine project in two in Eclipse and reference one project from the main one. The project compiles well, but when i try to Debug it as a web application it fails with the java.lang.NoClassDefFoundError. It cant't find the definition of one of my abstract classes i put

[google-appengine] Re: Questions concerning Datastore Growing Pains

2010-06-03 Thread bFlood
+1, well said. On Jun 2, 7:29 pm, Bill Edwards twmaf...@gmail.com wrote: I would personally like more information on these datastore growing pains.  As a startup, that has been strongly considering building solely on Google App Engine, we are very, very concerned with these instances of

[google-appengine] Re: Another easy question

2010-06-03 Thread Geoffrey Spear
On Jun 3, 4:58 am, Massimiliano massimiliano.pietr...@gmail.com wrote: I need just something like *myvar* so I will accept any carachters before and after the var... Or I have to divide the strings in list (each word an elment of the list) and use the operator IN. Thinking Building a

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
So there isn't a scalable solution! 2010/6/3 Geoffrey Spear geoffsp...@gmail.com On Jun 3, 4:58 am, Massimiliano massimiliano.pietr...@gmail.com wrote: I need just something like *myvar* so I will accept any carachters before and after the var... Or I have to divide the strings in list

[google-appengine] Template Does Not Exist exceptions 7:15 - 7:25 am Thursday

2010-06-03 Thread jeffroloff
I've been using my app (savingeveryweek) as normal this morning, and suddenly every page on the site comes back blank. I view source in the browser and there is nothing there. (As I'm writing this, I see the problem has been resolved.) Here is the traceback indicating the home.html template does

[google-appengine] GAE is down again.

2010-06-03 Thread Tom Wu
Unable to appcfg.py update to my app. -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Exempting Blobs from JSON

2010-06-03 Thread uo
Hello people, I'm developing an app on GAE using Django and I run into a problem. I'm trying to return json to the front end and the serializer is trying to serialize binary content in the form of a PNG, consequently I get this error: Traceback: File

[google-appengine] Re: Exempting Blobs from JSON

2010-06-03 Thread uo
I did a temporary hack... I edited encoder.py and changed s = s.decode('utf8') to s = s.decode('utf-8','ignore') and it works.. but Im not sure it will work on the google servers. . Any advice ? – yonny 18 mins ago On Jun 3, 6:16 pm, uo yon...@googlemail.com wrote: Hello people,       I'm

[google-appengine] project structure

2010-06-03 Thread kaliopi
Hello, I'm trying to create directories that are practical to a python google app engine project structure. For instance the directory structure I'm trying to implement is as follows: src | includes | stylesheets |

[google-appengine] Review my App

2010-06-03 Thread yhook7
I recently created http://buzzviasms.appspot.com I would appreciate if I could get some feedback, and/or suggestions 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-appengine] Can't edit entities in production datastore viewer

2010-06-03 Thread Nathan Kieffer
I'm having a problem with the production datastore viewer. I can see all the data for each entity but when I try to edit something, the change refuses to take effect. It doesn't seem to matter what property I edit either. They all refuse to change. Should this behavior surprise me? Thanks,

[google-appengine] View this page Google App Engine Open Source Projects

2010-06-03 Thread Jason (Google)
Added Vosao Click on http://groups.google.com/group/google-appengine/web/google-app-engine-open-source-projects - or copy paste it into your browser's address bar if that doesn't work. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

Re: [google-appengine] Datastore Statistics

2010-06-03 Thread Ikai L (Google)
Datastore statistics are updated asynchronously. It's not a real time count. On Wed, Jun 2, 2010 at 8:38 PM, prgmratlarge yossiele...@gmail.com wrote: I noticed that after deleting entities, the statistics don't update with the new numbers (even after the last updated time becomes current).

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Rafael Sierra
Massimiliano, the point is that there's no way to create an index that can be used to avoid a full-scan into the database in that kind of query, so, even if you can do ILIKE '%anything%' in PgSQL or LIKE '%anotherthing%' in MySQL, it will result in a full-scan on every record at database. But, if

[google-appengine] Re: Static files in newly deployed version not available in the apps domain. (Major problem) - issue raised

2010-06-03 Thread Tim Hoffman
Hi Not to bad an idea. At the moment all of our templates use '/css/some_file.css' rather than including hosts. So we don't need to make changes between code bases or have to lookup what the host should be, (in light of the issue we may well have to change that strategy) For the moment we

[google-appengine] Datastore API calls

2010-06-03 Thread ae
Is there a programmatic way to measure how many datastore API calls a function makes in the dev environment? -- 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-appeng...@googlegroups.com. To

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
Dear Ikai, I want to search in the datastore Pizza and obtain Pizza with tomatoes, Pizza with Mushrooms, I don't care about abcpizza or 123pizza. Massimiliano 2010/6/3 Ikai L (Google) ika...@google.com The reason search engines work is because they do stemming on terms. For instance, when you

Re: [google-appengine] Re: Static files in newly deployed version not available in the apps domain. (Major problem) - issue raised

2010-06-03 Thread Ikai L (Google)
Tim, can you provide 2 URLs that are doing this? I'm still trying to reproduce the problem. Could an ISP be caching these files? On Thu, Jun 3, 2010 at 10:02 AM, Tim Hoffman zutes...@gmail.com wrote: Hi Not to bad an idea. At the moment all of our templates use '/css/some_file.css' rather

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Ikai L (Google)
In that case, tokenize your string and use a list property. On Thu, Jun 3, 2010 at 10:40 AM, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear Ikai, I want to search in the datastore Pizza and obtain Pizza with tomatoes, Pizza with Mushrooms, I don't care about abcpizza or 123pizza.

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Rafael Sierra
On Thu, Jun 3, 2010 at 2:40 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear Ikai, I want to search in the datastore Pizza and obtain Pizza with tomatoes, Pizza with Mushrooms, I don't care about abcpizza or 123pizza. Those you can obtain by the filter told some messages ago, but

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Rafael Sierra
On Thu, Jun 3, 2010 at 2:51 PM, Rafael Sierra rafaeljs...@gmail.com wrote: On Thu, Jun 3, 2010 at 2:40 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear Ikai, I want to search in the datastore Pizza and obtain Pizza with tomatoes, Pizza with Mushrooms, I don't care about abcpizza

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
Which one? 2010/6/3 Rafael Sierra rafaeljs...@gmail.com On Thu, Jun 3, 2010 at 2:51 PM, Rafael Sierra rafaeljs...@gmail.com wrote: On Thu, Jun 3, 2010 at 2:40 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear Ikai, I want to search in the datastore Pizza and obtain Pizza

Re: [google-appengine] Re: Another easy question

2010-06-03 Thread Massimiliano
I was thinking to tokenize the elments. 2010/6/3 Massimiliano massimiliano.pietr...@gmail.com Which one? 2010/6/3 Rafael Sierra rafaeljs...@gmail.com On Thu, Jun 3, 2010 at 2:51 PM, Rafael Sierra rafaeljs...@gmail.com wrote: On Thu, Jun 3, 2010 at 2:40 PM, Massimiliano

Re: [google-appengine] Datastore API calls

2010-06-03 Thread Robert Kluin
Try AppStats. It is a wonderful tool. Python http://code.google.com/appengine/docs/python/tools/appstats.html Java http://code.google.com/appengine/docs/java/tools/appstats.html Robert On Thu, Jun 3, 2010 at 12:33 PM, ae gappengin...@gmail.com wrote: Is there a programmatic way to

[google-appengine] Re: Questions concerning Datastore Growing Pains

2010-06-03 Thread ten_foot_ninja
App engine is in google beta. I don't think you'll get the kind of answer you are looking for. Certainly you won't get any one guessing as to how many serious problems will occur a year. I can say though as another startup business, we decided to go with app engine and I can't say we run into any

[google-appengine] Re: Can't edit entities in production datastore viewer

2010-06-03 Thread oth
I have noticed this on one of our entities also. Its a big one, and what I noticed is that the fields at the end dont change value but the fields on the top do. Go figure! On Jun 3, 3:35 am, Nathan Kieffer nathankief...@gmail.com wrote: I'm having a problem with the production datastore viewer.

[google-appengine] Re: Datastore API calls

2010-06-03 Thread ae
Yes, thank you! On Jun 3, 11:23 am, Robert Kluin robert.kl...@gmail.com wrote: Try AppStats.  It is a wonderful tool. Pythonhttp://code.google.com/appengine/docs/python/tools/appstats.html Javahttp://code.google.com/appengine/docs/java/tools/appstats.html Robert On Thu, Jun 3, 2010 at

[google-appengine] Re: Static files in newly deployed version not available in the apps domain. (Major problem)

2010-06-03 Thread Donovan
Another technique for cache busting is URL rewriting within the path to the resources, which has some benefits over the query string usage in certain cases. The Python AE runtime supports URL mapping for static resources which can make this even less painful and allows long expire times - so for

Re: [google-appengine] Re: Static files in newly deployed version not available in the apps domain. (Major problem)

2010-06-03 Thread Ross M Karchner
Partially off-topic--- if GFE serves a cached resource, do we get billed for the bandwidth? On Wed, Jun 2, 2010 at 3:27 PM, Ikai L (Google) ika...@google.com wrote: Okay, looks like the Google Front-End is kicking in to cache your stuff Server Google Frontend Content-Length 2834 Age

[google-appengine] High Latency causing high errors and high CPU usage

2010-06-03 Thread Travis
Hi, My app, alexsink2010contacts has been using an unusually high amount of CPU power today even though no changes were made and no new users were added. This appears to be a trend that has been increasing over the past week. The most prevalent error I see is Request was aborted after waiting

[google-appengine] Re: project structure

2010-06-03 Thread kaliopi
Eclipse does not take issue with anything being wrong the way I import my class files e.g. from x import y. Also when I debug the project in Eclipse as Google App Engine, everything works great. However when I run the project through Google App Engine Launcher (Mac osx) or when I upload my

Re: [google-appengine] Re: project structure

2010-06-03 Thread Robert Kluin
Hi, I am sure this is just a typo, but you say there error is ImportError: No module named model.y but in your post you list the name as models. Also, I assume that you have a blank __init__.py file in the models directory? Robert On Thu, Jun 3, 2010 at 3:40 PM, kaliopi

[google-appengine] Re: Questions concerning Datastore Growing Pains

2010-06-03 Thread Aaron
+1, the 'relatively slow data store performance' is unusable for us. we are hitting the soft memory limit on every request. this causes an instance to respawn on every request (5+ seconds of latency). Any mission-critical application running on GAE would be dead in the water right now. On Jun

[google-appengine] Performance related to ReferenceProperty and datastore API calls

2010-06-03 Thread ae
If I have a data model like this... class Type(db.Model): name = db.StringProperty() class Status(db.Model): name = db.StringProperty() class Employee(db.Model): name = db.StringProperty() type = db.ReferenceProperty(Type) status = db.ReferenceProperty(Status) ... and I want to

[google-appengine] Re: project structure

2010-06-03 Thread kaliopi
sorry, i may have sent an email, but to answer both your questions: yes! On Jun 3, 4:45 pm, Robert Kluin robert.kl...@gmail.com wrote: Hi,   I am sure this is just a typo, but you say there error is ImportError: No module named model.y but in your post you list the name as models.  Also, I

[google-appengine] Re: project structure

2010-06-03 Thread hawkett
I'm guessing its the blank __init__.py - if you are coming to python from another language (everyone I've encountered runs into this issue) then it is petty non-obvious. Once you work out what's going on it makes lots of sense :) - @kaliopi - the __init__.py is a bunch of code that is run when the

[google-appengine] Re: DeadlineExceeded on cold hits.

2010-06-03 Thread Dave Peck
Can someone from the AppEngine team help us understand whether these issues are related to recent data store problems? In theory, I don't think they should be, because at least for me I'm seeing DeadlineExceeded very early on -- somewhere in Django before any of my code is run. But that's

[google-appengine] Re: Update on datastore performance

2010-06-03 Thread hawkett
I can appreciate the hassle that these issues are causing (me too), but I was thinking as I read the blog post that I appreciated the candour. App engine has always struck me as a pretty amazing public offering, with some fairly significant technical hurdles that I doubt anyone else would consider

[google-appengine] Status Site latency information going away?

2010-06-03 Thread Mike Wesner
I noticed that the farthest back I can look today is http://code.google.com/status/appengine/detail/datastore/2008/12/08#ae-trust-detail-datastore-query-latency I assume by tomorrow that link wont work and

[google-appengine] Quota Error!!

2010-06-03 Thread Jairo Vasquez
Hi, I'm getting this error: The API call datastore_v3.Get() required more quota than is available Is there a way to get more quota? I have billing enabled but this is a very low quota. Please help appID: paymentez -- Jairo Vasquez Moreno www.mentez.com -- You received this message because

Re: [google-appengine] Performance related to ReferenceProperty and datastore API calls

2010-06-03 Thread djidjadji
Why not denormalize the model and put just StringProperties in the class Employee? You could give the Type and Status key names that are the same as the name property. You can then get the name with emp = Employee.all().get() typeName = Employee.type.get_value_from_datastore(emp).name() Or use

[google-appengine] Re: Static files in newly deployed version not available in the apps domain. (Major problem) - issue raised

2010-06-03 Thread Tim Hoffman
Hi Ikae We couldn't leave the production environment in place with the broken urls. So have already deployed a version with args on the end of all css/js urls. I don't believe it was an ISP issue. We tried accessing the site from 5 different ISP's in Australia when we first discovered the

[google-appengine] Cloud2db for Amazon SimpleDB

2010-06-03 Thread Sandeep Sathaye
Hi Everyone, Cloud2db http://www.cloud2db.com/ is pleased to announce the support for Amazon SimpleDB platform in addition to Google Bigtable platform which it already supports. With this new release you will be able to transparently choose between Amazon SimpleDB and Google Bigtable as your

[google-appengine] App Engine Datastore Error: A server error has occurred

2010-06-03 Thread Kimia
Hi: When i upload a new PICTURE to my app last night, i update another at the same time. then the datastore error arrived, it just told me A server error has occurred. I think there was some problem with the new Entity but I can't find the ERROR LOG about this in Datastore View... Does anyone

[google-appengine] Using GAE as external storage

2010-06-03 Thread Maaartin
I'm very new to GAE. I'm thinking about using GAE for storing huge quantities of data, sent and retrieved by a client. What I mean looks more like a remote file system then like a web app. Do I have to use https for the communication or is there something better? How can I store it most

[google-appengine] Data Migration

2010-06-03 Thread Guilherme Defreitas
If i decide to move away from App Engine, are there any way to export all my appengine data bypassing the 1mb limit size? How can i export all data? -- 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-appengine] Re: project structure

2010-06-03 Thread kaliopi
well i've been intermittently been working with python for over a year, and am pretty comfortable with the language. you are right in that developers transitioning from typical language do like to keep class files separate - and this includes me. my __init__.py files are empty and my from/import

[google-appengine] Re: If you host appengine apps under a google apps domain mapping you should probably star this issue.

2010-06-03 Thread Tim Hoffman
Hi Yep Agreed on the strategy for solving this for now on css and js files. However static images are a bit harder to manage there are more of them and possibly used in more than a few places. The fact that a certain behaviour has changed in the last few weeks is probably more the issue and has

  1   2   >