[appengine-java] Re: Debug Local var.

2010-06-02 Thread ww34ww34
Yes ,you're right... I got it! Dummy problem, thank's a lot! On 2 Giu, 00:54, Ikai L (Google) ika...@google.com wrote: Try setting your default logging level to .INFO or .FINE. You're probably seeing some of the info printed to your console, but not all. On Mon, May 24, 2010 at 4:37 AM,

[appengine-java] Re: JSONMarshaller on GAE

2010-06-02 Thread François
This is happening locally. I'm using eclipse galileo. I tested all the tips i found on this page http://groups.google.com/group/google-appengine-java/browse_thread/thread/67cb7cdaefc8429f but i'm still stuck. Thank you for your time. On 2 juin, 00:42, Ikai L (Google) ika...@google.com wrote:

[appengine-java] Re: node allocation

2010-06-02 Thread theresia freska
Yes, I mean the node as computational unit, the JVM. Thanks for the clear explanation! On Jun 1, 4:28 pm, Wilson MacGyver wmacgy...@gmail.com wrote: I think he wants to control how many JVMs GAE spawn up to run your app. obviously the answer is no. On Tue, Jun 1, 2010 at 10:17 AM, Tristan

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

2010-06-02 Thread Toby Reyelts
It looks like you have a version of ASM that is incompatible with the dev_appserver's version hanging around. Do you have ASM in your JRE's lib/ext folder? On Tue, Jun 1, 2010 at 10:56 PM, Andrew am2...@gmail.com wrote: Hi, I'm trying to get spring 3.0 up and running as per the blog post at

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

2010-06-02 Thread Bill
I am stuck at precisely the same point. Which version of asm are you using? I've tried 3.3 and 2.1. I'm assuming you're using the latest Spring? That article uses the old M2 from a year back. It almost appears that the ClassLoader is doing some on-the-fly rewriting of class code, but that

[appengine-java] simple relation

2010-06-02 Thread RAVINDER MAAN
Hello all can anybody please tell me how to implement simple one many relation in java.I have user table and work table .Any user can do many type of works.In user table i have userid but it is not primary key of the user table.Then i have work table which has workid it is also not primary key

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

2010-06-02 Thread Bill
Okay, a few things I found out -- 1. The suggestion at http://code.google.com/p/googleappengine/issues/detail?id=2527 works quite well. You'll find the afflicted appengine-agent.jar in your eclipse plugins folder under com.google.appengine.eclipse.sdkbundle.version/appengine-java-sdk-

[appengine-java] Re: JSP code debug: Compiled JSP location in local environment

2010-06-02 Thread Philip Tucker
FYI, on a Mac I found it in /var/folders/zz/zzzivhrRnAmviuee++-ZXU+ +NMs/-Tmp-/Jetty_127_0_0_1__war.g0qk00/jsp/org/apache/jsp -- 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] Failure to write objects to HttpSession - NotSerializableException : LazyResult

2010-06-02 Thread Shawn Draper
I am storing user-profile information in the data store and retrieving with the following code: public static User getUserByID ( String userName ) throws Exception { PersistenceManager mgr = PMF.getInstance ( ).getPersistenceManager ( ); Query query = mgr.newQuery ( User.class

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

2010-06-02 Thread Bill Milligan
Originally, I'd thought something along the same lines, but this isn't the case. In my running server there's no asm running in my application classpath, environment, or lib/ext. It's only in GAE and my application. On Wed, Jun 2, 2010 at 12:04 PM, Toby Reyelts to...@google.com wrote: It

Re: [appengine-java] MemCache expiring around once a day

2010-06-02 Thread Ikai L (Google)
There's very little cost to connecting to the datastore. If this is an issue, I'd look at the low-level API for anything that could be a warm-up request. The expensive part of this is initializing your PersistenceManagerFactory/EntityManagerFactory, not establishing a datastore connection. On

Re: [appengine-java] Using Task Queue while storing entities

2010-06-02 Thread Ikai L (Google)
Move method1() to a method inside a servlet invoked by the Task Queue, then inside your servlet call queue.add(). On Tue, Jun 1, 2010 at 8:49 PM, drift elysium drift2elys...@gmail.comwrote: hi, I'd like to know how exactly I should include the code for TaskQueue. I saw this line in the

Re: [appengine-java] guest book appln throws exception

2010-06-02 Thread Ikai L (Google)
You're using a JRE instead of a JDK. There are a couple of posts about these: http://www.google.com/search?sourceid=chromeie=UTF-8q=Caused+by:+java.lang.ClassNotFoundException:com.sun.tools.javac.Main+servletqscrl=1 On Tue, Jun 1, 2010 at 10:37 PM, shanthi ramabhadran 77can...@gmail.comwrote:

Re: [appengine-java] simple relation

2010-06-02 Thread Bill Milligan
Are you trying one-to-many or many-to-many? By using a third table it sounds like you're trying to do many-to-many, not one-to-many. As best I can determine, the only real way to do this in GAE is to have a User class with a collection of string properties, containing the list of all Work ids.

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

2010-06-02 Thread Ikai L (Google)
The User isn't serializable. Are you using the standard User class or a custom User class? On Tue, Jun 1, 2010 at 8:03 PM, Shawn Draper smd0...@hotmail.com wrote: I am storing user-profile information in the data store and retrieving with the following code: public static User getUserByID (

[appengine-java] Dev Server: response.setHeader() has no effect

2010-06-02 Thread keyurva
On the dev server I call setHeader() on the response but it doesn't seem to set it - coz when I call containsHeader() immediately after calling setHeader() it returns false. response.setHeader(Content-Encoding, gzip); logger.info(response.containsHeader(Content-Encoding)); //prints false Is this

Re: [appengine-java] simple relation

2010-06-02 Thread RAVINDER MAAN
Thank you so much for your answer Bill yes you are rite the way i wrote its many to many relation.Actually I want relation as below class User{ Long id; String username; ListWork workList; } class Work{ Long id; String workname; String username; } you can see work class has username and

Re: [appengine-java] simple relation

2010-06-02 Thread Bill Milligan
I believe you're going to have to change this to class User { String name; List String workNames; // or List Long workIds; } class Work { String name; String userName; // or Long userId; } This is actually you'd design this under the MDA paradigm, actually. You need to be able to change each

Re: [appengine-java] MemCache expiring around once a day

2010-06-02 Thread Rahul Juneja
Ikai, Yes you are right the expensive part is initializing the EntityManagerFactory in my case. Is there any way we can improve the performance on that. Thanks, Rahul -- Rahul Juneja http://techlabs.thoughtclicks.com On Wed, Jun 2, 2010

[appengine-java] Re: Problems enabling Second-level cache with JPA

2010-06-02 Thread Erik Bengtson
Fixed in datanucleus 2.1 http://www.jpox.org/servlet/jira/browse/NUCCORE-539 On 4 mai, 21:22, Sérgio Lopes slo...@gmail.com wrote: Thanks for the reply. And about citing GAE caveats: maybe that's a good idea to promote your product (I can speak for myself: I never heard about datanucleus

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-02 Thread Bill Milligan
If you've gotten past point 2, I'd love to see it. Redeploying every time I make a change is driving me batty. On Wed, Jun 2, 2010 at 7:38 PM, Andrew am2...@gmail.com wrote: Thank you very much Bill. The suggestion in point 1 worked a treat. To answer your other questions, I am using asm

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

2010-06-02 Thread Andrew
Hi Bill, Can you send me the steps to reproduce it so I can see if I am observing the same thing please? Regards, Andrew. On Jun 3, 10:32 am, Bill Milligan bill.milli...@gmail.com wrote: If you've gotten past point 2, I'd love to see it.  Redeploying every time I make a change is driving me

[appengine-java] timestamp check failed error

2010-06-02 Thread iodsfjoipsdfi ijsdpfijd
Hi, I deployed some of my GAE apps to the production server some months ago and it worked perfectly. Recently I haven't been using GAE but now I have to. When I try to deploy my app to the production server I always get this error log: Unable to update: javax.net.ssl.SSLHandshakeException:

Re: [appengine-java] timestamp check failed error

2010-06-02 Thread Ikai L (Google)
If I had to guess: your system clock is off. Try syncing it with a network time server and try again. On Wed, Jun 2, 2010 at 6:57 PM, iodsfjoipsdfi ijsdpfijd gaefjga...@gmail.com wrote: Hi, I deployed some of my GAE apps to the production server some months ago and it worked perfectly.

[appengine-java] Re: Spring Roo + GWT Demo

2010-06-02 Thread Roger Itai
You can search Deploy to Google App Engine on this post http://blog.springsource.com/2010/06/02/using-springsource-tool-suite-2-3-3-m1-with-roo-and-gwt/ On 28 maio, 15:44, caritos ecari...@gmail.com wrote: Looking for documentation to deploy Spring Roo + GWT + STS on GAE. On May 28, 11:03 am,

[appengine-java] the support to JPA

2010-06-02 Thread Tao
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 google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email

[appengine-java] Uploading to blobstore gives OutOfMemoryError

2010-06-02 Thread Jean Hsu
Hi all, I am trying to set up a basic file upload to blobstore, but I get this OutOfMemoryError: WARNING: Error for /_ah/upload/ aghvbWdkcmVzc3IcCxIVX19CbG9iVXBsb2FkU2Vzc2lvbl9fGMACDA java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Arrays.java:2786) at

[appengine-java] Re: Spring Roo + GWT Demo

2010-06-02 Thread EN
Scroll down for the Deploy to Google App Engine section: http://blog.springsource.com/2010/06/02/using-springsource-tool-suite-2-3-3-m1-with-roo-and-gwt/ On May 30, 11:42 am, Marcel Overdijk marceloverd...@gmail.com wrote: Yes would be cool if they finally share the code. It was a big

[appengine-java] Nested Embedded Classes do not work with GAE 1.3.4?

2010-06-02 Thread Johnny
I have a simple 3 class example: @PersistenceCapable public class MyUser { @Persistent @Embedded private ContactDetails contactInfo; ... } @PersistenceCapable @EmbeddedOnly public class ContactDetails { @Persistent @Embedded private MyPostalAddress address ... } @PersistenceCapable

[appengine-java] stuck indexes ?

2010-06-02 Thread Bruce
Hi, I have an app at 'omwatcher.appspot.com' with a very small database, yet two indexes seem to be stuck with Status=Building. Can someone help? Thanks. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

Re: [appengine-java] simple relation

2010-06-02 Thread RAVINDER MAAN
Thanks Bill I have experience with hibernate thats why i thought it could be possible. On Thu, Jun 3, 2010 at 12:00 AM, Bill Milligan bill.milli...@gmail.comwrote: I believe you're going to have to change this to class User { String name; List String workNames; // or List Long workIds;

Re: [appengine-java] stuck indexes ?

2010-06-02 Thread RAVINDER MAAN
I see same problem it takes hours to build indexes.is there any faster way? On Thu, Jun 3, 2010 at 10:03 AM, Bruce h...@alum.rpi.edu wrote: Hi, I have an app at 'omwatcher.appspot.com' with a very small database, yet two indexes seem to be stuck with Status=Building. Can someone help?

Re: [appengine-java] simple relation

2010-06-02 Thread John Patterson
You will need to use an ObjectDatastore instead of JDO if you want to use direct references as in your example. http://code.google.com/p/twig-persist/ If you @Embed Work in User you can retrieve all in a single query http://code.google.com/p/twig-persist/wiki/Configuration#Storage_Options

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

2010-06-02 Thread Millisecond
Even though you're not using transactions, I think it's trying to make the .close() call atomic (maybe with an internal implicit transaction), failing or succeeding as a whole. And as I understand it, entities not in the same group can be stored on separate machines so can't be operated on

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

2010-06-02 Thread Tin
Hi all: We're using GAE to develop our project, but I found I have a performance issue, when checking the logs I found the GAE will auto- restart every 30-60 sec. Someone tell me this's because if the web app wasn't used much, GAE will dispose the instances, and after that made a load request to

Re: [google-appengine] Re: Can't enable billing

2010-06-02 Thread Kazuki Kyakuno
thanks! I'll wait to fix it. 2010/6/2 Jason (Google) apija...@google.com: There was a substantial backlog in the billing pipeline starting late last week, which caused some discrepancies between the billing status that was reported in the Admin Console and the quotas that were actually being

[google-appengine] Re: Updating Google App Engine datastore

2010-06-02 Thread Víctor Mayoral
Hey Tristan! Thanks for your answer. I will check the docs again and take a look at the low level API. The notification + trigger method seems pretty intelligent i will also check that too. But I was just wondering, isn't there something like a framework for this types of jobs?. Again, thanks

[google-appengine] tasks and queues in google app engine

2010-06-02 Thread Sandeep Arneja
How do i cancel a task / queue which has already been scheduled? What is the point of the task handler? -- 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

[google-appengine] Re: Updating Google App Engine datastore

2010-06-02 Thread Tristan
I haven't seen a framework that does data versioning like that.. but I haven't looked very hard as I rolled my own abstraction layer with the datastore... Here's an excerpt from some stuff I wrote a while back and never got around to publishing. It's a little outdated from what I do nowadays, but

[google-appengine] Re: Unscheduled downtime/problems lately

2010-06-02 Thread Bay
Yes! A lot! Further someone with admin rights over this group has removed several threads regarding these issues. Do you want us to report them or not? You can look at any random app with 10k dynamic-page visitors or more per day and you'll find a lot of dropped requests. Some of them go to the

[google-appengine] Datastore high latency

2010-06-02 Thread Xiaad.com
Hi, Since yesterday, the latency of the datastore is very high and no message at all either on http://code.google.com/status/appengine; or in the group http://groups.google.com/group/google-appengine-downtime- notify. Could someone give some infos ? My service is getting some problems with

[google-appengine] Re: Unscheduled downtime/problems lately

2010-06-02 Thread Xiaad.com
Hi, My apps got the same problems and so timeout returning 500 errors... And no message at all either on http://code.google.com/status/ appengine (even if the graph is red) or in the group http://groups.google.com/group/google-appengine-downtime- notify. Could someone work on it ? Thanks,

[google-appengine] Another easy question

2010-06-02 Thread Massimiliano
Dear All, in filter(property_operator, value) could the property_operator be a var? Could you please tell me how it must be done? http://code.google.com/intl/it-IT/appengine/docs/python/datastore/queryclass.html#Query_filter I can't find more details. Regards Massimiliano -- My email:

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

2010-06-02 Thread Prashant Gupta
Hi, I have to buy a new domain and link to my apps. I want to know pro or cons of buying a domain from Apps and Godaddy. If I buy a domain from Google Apps can I change my domain settings in GoDaddy? Thanks, Prashant -- You received this message because you are subscribed to the Google

[google-appengine] Re: Video of App Engine sessions from Google I/O 2010 are up!

2010-06-02 Thread Herbert
oh my god, i was planning to sleep early tonite :P thank you guys!!! On Jun 2, 6:03 am, Ikai L (Google) ika...@google.com wrote: Hey guys, I just wanted to let everyone know that the App Engine sessions from Google I/O 2010 are now online for your viewing pleasure. Check them out here:

[google-appengine] Re: Video of App Engine sessions from Google I/O 2010 are up!

2010-06-02 Thread Brandon Thomson
Really fantastic stuff in here, every GAE dev should watch them. -- 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] Static files in newly deployed version not available in the apps domain. (Major problem)

2010-06-02 Thread Tim Hoffman
Hi We have been trying to deploy a major revision of one of our apps. Under the specific version 2-0-0.latest... all the new css/js and static images are available. When we make the new version default, the css, js and static files are accessible via appid.appspot.com However when accessing

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

2010-06-02 Thread François Masurel
I've the same problem here. I just added an extra parameter at the end of my urls (ex : ?v=1) to be able to load them correctly. François On 2 juin, 14:19, Tim Hoffman zutes...@gmail.com wrote: Hi We have been trying to deploy a major revision of one of our apps. Under the specific version

Re: [google-appengine] Another easy question

2010-06-02 Thread Robert Kluin
As the page you link to says, it takes a string as the first argument -- so, yes. It can take a variable. myvar = prop Kind.all().filter(myvar, 5) Robert On Jun 2, 2010, at 3:39, Massimiliano massimiliano.pietr...@gmail.com wrote: Dear All, in filter(property_operator, value) could

[google-appengine] Status page not working

2010-06-02 Thread François Masurel
The App Engine status page doesn't display fine for me ? Anybody having the same problem ? http://code.google.com/status/appengine -- 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: DeadlineExceeded on cold hits.

2010-06-02 Thread dloomer
I've been seeing increased DeadlineExceededErrors, and suspecting that it's an issue outside of my app but not sure. I'm not sure if a three- post thread of somewhat similar experiences proves anything or not; when you refer to the increasingly poor datastore performance is this something that's

Re: [google-appengine] Status page not working

2010-06-02 Thread Barry Hunter
The page content itself is there and looks normal. Just that the CSS is messed up, this URL: http://code.google.com/status/appengine/css/compiled.staging.342374464972914085.css is a 404. 2010/6/2 François Masurel fm2...@mably.com: The App Engine status page doesn't display fine for me ?  

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

2010-06-02 Thread bFlood
+1 On Jun 2, 11:19 am, dloomer dloo...@gmail.com wrote: I've been seeing increased DeadlineExceededErrors, and suspecting that it's an issue outside of my app but not sure.  I'm not sure if a three- post thread of somewhat similar experiences proves anything or not; when you refer to the

[google-appengine] Unusually slow appengine performance

2010-06-02 Thread ten_foot_ninja
I have noticed during the last couple weeks my appengine app being slower than usual. My login routine gets maybe 20-30 records from 4 calls to the datastore. This takes about 10 seconds which isn't acceptable from a user experience point of view. Also, I know enabling billing increases your

[google-appengine] app engine datastore seems to be down

2010-06-02 Thread gauri
cannot update my indexes. Is someone else facing the same issue? Any idea how long this will take to get resolved? -- 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

[google-appengine] Anomaly at Datastore

2010-06-02 Thread Rafael SDM Sierra
Hi, we are with a ver high latency at datastore since yesterday, and I don't see any message in the system status. Is there someone take care of it? It's related in some way with Google I/O? I have an application that handle hundreds of requests per second during some minutes (some time hours), I

[google-appengine] Verifying Account

2010-06-02 Thread David Grant
Hi, I use Google Apps at work and at home. I've already verified my account for using Google App Engine for my home domain, but when attempting to verify for my work domain, I am given the following error message: The phone number has been sent too many messages or has already been used to

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

2010-06-02 Thread J
Thanks, Tim, for letting me know I'm not going insane. To the Google guys, this problem seems to have started yesterday afternoon (1:30-ish PM, EDT) in case it helps you track down the cause. On Jun 2, 8:19 am, Tim Hoffman zutes...@gmail.com wrote: Hi We have been trying to deploy a major

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

2010-06-02 Thread Roy Lo
Well. I think you can use some free domains first such as cz.cc. Try it! Very useful and completely free! On 6月2日, 下午5時23分, Prashant Gupta nextprash...@gmail.com wrote: Hi, I have to buy a new domain and link to my apps. I want to know pro or cons of buying a domain from Apps and Godaddy.

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

2010-06-02 Thread Prashant Gupta
I have tried it with a co.cc domain and it worked fine for me. I want to know if buying a domain with Google Apps will give me more or less flexibility. As it is powered by GoDaddy, do we get a GoDaddy account for the domain we buy? Thanks, Prashant -- You received this message because you are

Re: [google-appengine] Another easy question

2010-06-02 Thread Massimiliano
In my file I have: food = self.request.get('food') field = self.request.get('field') lista = db.Query(FOOD).filter(field, food).order('-Date').fetch(limit=30) I need field to be *Myfieldvar=* * * How can I do this? Max 2010/6/2 Robert Kluin robert.kl...@gmail.com As the page you link to

Re: [google-appengine] Another easy question

2010-06-02 Thread Robert Kluin
I suggest you have a look an introductory programming resouce. For starters, see the python getting started guide: http://www.python.org/about/gettingstarted/ Robert On Jun 2, 2010, at 11:40, Massimiliano massimiliano.pietr...@gmail.com wrote: In my file I have: food =

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

2010-06-02 Thread ten_foot_ninja
+1 On Jun 2, 11:36 am, bFlood bflood...@gmail.com wrote: +1 On Jun 2, 11:19 am, dloomer dloo...@gmail.com wrote: I've been seeing increased DeadlineExceededErrors, and suspecting that it's an issue outside of my app but not sure.  I'm not sure if a three- post thread of somewhat

Re: [google-appengine] Anomaly at Datastore

2010-06-02 Thread Waleed Abdulla
Same here. Also, the App Engine status page is broken! the first page seems to be missing it's CSS files, and if you click on Anomaly to see the datastore performance, you'll see the graph missing: http://code.google.com/status/appengine Regards, Waleed On Wed, Jun 2, 2010 at 6:27 AM,

Re: [google-appengine] Another easy question

2010-06-02 Thread andreas schmid
i think what you are missing in your code is the operator after the field var in the filter. (= , , ,...) you use it like .filter('field =', 'value') On Jun 2, 2010, at 12:57 PM, Massimiliano wrote: I have read it. And i was serching where he is talking about this, but I can't find!!! I'm

Re: [google-appengine] Unusually slow appengine performance

2010-06-02 Thread Ikai L (Google)
No, we don't prioritize billed applications. There's an ongoing effort regarding the increased latency developers are seeing. We'll post updates when we have something concrete. On Wed, Jun 2, 2010 at 8:56 AM, ten_foot_ninja spitko...@gmail.com wrote: I have noticed during the last couple weeks

Re: [google-appengine] Verifying Account

2010-06-02 Thread Ikai L (Google)
Add yourself to the SMS issues waitlist - you'll be manually verified. https://appengine.google.com/waitlist/sms_issues Put your other account information in the request body. On Wed, Jun 2, 2010 at 3:06 AM, David Grant da...@grant.org.uk wrote: Hi, I use Google Apps at work and at home.

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

2010-06-02 Thread Ikai L (Google)
Thanks for bringing this up, Tim. Anyone else seeing this problem? If so, please post details. Are you guys setting any kind of cache headers? I'm going to try to reproduce these issues, so any information will be helpful. On Wed, Jun 2, 2010 at 9:14 AM, J j.si...@earlystageit.com wrote:

Re: [google-appengine] Status page not working

2010-06-02 Thread Wesley C (Google)
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 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Core Python Programming, Prentice Hall, (c)2007,2001 Python

Re: [google-appengine] Re: Updating Google App Engine datastore

2010-06-02 Thread Jeff Schnitzer
There are two distinctions to be made - do your properties change dynamically with program code or do they just evolve rapidly over time? Ie: Do you need a dynamic interface to properties (MapString,Object) or do you just need a more flexible way to deal with schema evolution? For a fully

Re: [google-appengine] Anomaly at Datastore

2010-06-02 Thread Wesley C (Google)
the status page should be working again... there was a configuration issue this morning regarding that which has been resolved. as far as performance goes, there's an active and ongoing effort to address the increased latency developers are seeing... we'll post updates when we have something

Re: [google-appengine] Anomaly at Datastore

2010-06-02 Thread Rafael Sierra
On Wed, Jun 2, 2010 at 2:53 PM, Wesley C (Google) wesc+...@google.com wrote: the status page should be working again... there was a configuration issue this morning regarding that which has been resolved. as far as performance goes, there's an active and ongoing effort to address the

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

2010-06-02 Thread J
To reproduce the problem, go to http://qa.connectscholar.com/stylesheets/caSkin.css and also to http://charityaxis-qa.appspot.com/stylesheets/caSkin.css. Both URLs point to the same file but one returns the old content and appspot.com returns the new content. On Jun 2, 1:18 pm, Ikai L (Google)

Re: [google-appengine] Another easy question

2010-06-02 Thread Massimiliano
Oh sorry, it was really easy... field = field + = lista = db.Query(FOOD).filter(field,food).order('-Date').fetch(limit=30) Now it's working thanks Massimiliano 2010/6/2 andreas schmid a.schmi...@gmail.com i think what you are missing in your code is the operator after the field var

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

2010-06-02 Thread Rafael Sierra
On Wed, Jun 2, 2010 at 3:37 PM, J j.si...@earlystageit.com wrote: To reproduce the problem, go to http://qa.connectscholar.com/stylesheets/caSkin.css and also to http://charityaxis-qa.appspot.com/stylesheets/caSkin.css. Both URLs point to the same file but one returns the old content and

Re: [google-appengine] Another easy question

2010-06-02 Thread Rafael Sierra
On Wed, Jun 2, 2010 at 3:49 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: Oh sorry, it was really easy... field = field + = lista = db.Query(FOOD).filter(field,food).order('-Date').fetch(limit=30) Or: lista = db.Query(FOOD).filter('%s ='%field,food).order('-Date').fetch(limit=30)

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

2010-06-02 Thread Ikai L (Google)
I wonder if there is some layer of the infrastructure that is performing caching without you guys having opted-in, hence the reason why a cache-buster like ?v=something works. Can you guys confirm? Also - are you guys setting any headers? Which headers get returned? I've personally always used

Re: [google-appengine] Another easy question

2010-06-02 Thread Massimiliano
Thanks! But... The = checks if the string is equal of what I have in the datastore. I need to check if the string is in the string in the datastore. Uhm. Can you help me? Massimiliano 2010/6/2 Rafael Sierra rafaeljs...@gmail.com On Wed, Jun 2, 2010 at 3:49 PM, Massimiliano

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

2010-06-02 Thread J
That's interesting, Rafael. I wonder why it serves correctly for you. They are still different from my PoV. The bad side headers: Etag74EQOA DateTue, 01 Jun 2010 18:12:57 GMT Expires Sat, 05 Jun 2010 02:12:57 GMT Content-Typetext/css Content-Encodinggzip Server Google

[google-appengine] Re: Another easy question

2010-06-02 Thread Geoffrey Spear
On Jun 2, 3:10 pm, Massimiliano massimiliano.pietr...@gmail.com wrote: Thanks! But... The = checks if the string is equal of what I have in the datastore. I need to check if the string is in the string in the datastore. Uhm. Can you help me? The datastore can't do substring searches. The

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

2010-06-02 Thread Ikai L (Google)
Okay, looks like the Google Front-End is kicking in to cache your stuff Server Google Frontend Content-Length 2834 Age 41 Cache-Control public, max-age=600 Are you guys setting this header anywhere? Unfortunately, there's no way to invalidate items in the frontend cache, so you'll have

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

2010-06-02 Thread Ikai L (Google)
Okay, looks like the Google Front-End is kicking in to cache your stuff Server Google Frontend Content-Length 2834 Age 41 Cache-Control public, max-age=600 Are you guys setting this header anywhere? Unfortunately, there's no way to invalidate items in the frontend cache, so you'll have

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

2010-06-02 Thread Massimiliano
I'm using this filter() to build a search engine in the datastore. So I don't only want to show the exact result. 2010/6/2 Geoffrey Spear geoffsp...@gmail.com On Jun 2, 3:10 pm, Massimiliano massimiliano.pietr...@gmail.com wrote: Thanks! But... The = checks if the string is equal of

[google-appengine] Referenced projects in Eclipse with App Engine.

2010-06-02 Thread Timofey Danshin
Hi. I have a number of projects, and they share a certain part, which i would like to extract into a separate project. To this end i tried to create a project containing that shared part only, and create a project with a project-specific part only. It compiles well, the classes in one project see

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

2010-06-02 Thread J
Thanks, Ikai, for your help. It is much appreciated. We'll use a cache buster for now. On Jun 2, 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     41 Cache-Control  

Re: [google-appengine] mapreduce

2010-06-02 Thread Waldemar Kornewald
Hi, On Tue, Jun 1, 2010 at 11:13 PM, Ikai L (Google) ika...@google.com wrote: Hi, The first release of the mapper API will require a manual invocation of the task. If you need to map all entities, you will have to run the task. There's no continuous process monitoring changed entities. You

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

2010-06-02 Thread Rafael Sierra
On Wed, Jun 2, 2010 at 4:34 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: I'm using this filter() to build a search engine in the datastore. So I don't only want to show the exact result. There's already some full text solutions, google it and you may found (hosted at code.google.com)

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

2010-06-02 Thread Rafael Sierra
http://gae-full-text-search.appspot.com/ On Wed, Jun 2, 2010 at 4:50 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: I can't find nothing. 2010/6/2 Rafael Sierra rafaeljs...@gmail.com On Wed, Jun 2, 2010 at 4:34 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: I'm using

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

2010-06-02 Thread Massimiliano
I can't find nothing. 2010/6/2 Rafael Sierra rafaeljs...@gmail.com On Wed, Jun 2, 2010 at 4:34 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: I'm using this filter() to build a search engine in the datastore. So I don't only want to show the exact result. There's already some

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

2010-06-02 Thread Ikai L (Google)
In the meantime, I'll investigate whether these headers are being implicitly or incorrectly set. On Wed, Jun 2, 2010 at 12:37 PM, J j.si...@earlystageit.com wrote: Thanks, Ikai, for your help. It is much appreciated. We'll use a cache buster for now. On Jun 2, 3:27 pm, Ikai L (Google)

[google-appengine] Re: Updating Google App Engine datastore

2010-06-02 Thread Víctor Mayoral
Thanks Tristan and Jeff, Both of you have been really kind and your suggestions were really clear and understandable. I'll start with both approaches and see what fits me better. My best reggards, Víctor. On 2 jun, 19:46, Jeff Schnitzer j...@infohazard.org wrote: There are two distinctions

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

2010-06-02 Thread Massimiliano
It sounds strange to me that there isn't nothing in GAE to check this, without using a third part class... 2010/6/2 Rafael Sierra rafaeljs...@gmail.com http://gae-full-text-search.appspot.com/ On Wed, Jun 2, 2010 at 4:50 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: I can't find

Re: [google-appengine] mapreduce

2010-06-02 Thread Ikai L (Google)
It's not on our roadmap. My suspicion is no, but it depends on how developers end up using map-reduce. On Wed, Jun 2, 2010 at 12:39 PM, Waldemar Kornewald wkornew...@gmail.comwrote: Hi, On Tue, Jun 1, 2010 at 11:13 PM, Ikai L (Google) ika...@google.com wrote: Hi, The first release of the

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

2010-06-02 Thread Ikai L (Google)
I can't reproduce this. Here's my YAML file: application: ikailan-com version: 1 runtime: python api_version: 1 default_expiration: 1d handlers: - url: / script: main.py - url: /assets static_dir: assets Can you guys post your app.yaml? On Wed, Jun 2, 2010 at 1:04 PM, Ikai L (Google)

Re: [google-appengine] mapreduce

2010-06-02 Thread Justin Sanders
Take a look at Brett Slatkin's session from GoogleIO: http://code.google.com/events/io/2010/sessions/high-throughput-data-pipelines-appengine.html He specifically shows how to build materialized views on changing data using the task queue. I haven't tried it out but it is impressive and seems

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

2010-06-02 Thread scarlac
+1 We've been having way too many of these errors for two weeks. Downtime is acceptable but this is ridiculous. This can't keep up or we'll have to rewrite our app and stop using appengine. We choose Google and expected stability and scalability so I'm very disappointed at the moment. On Jun 2,

[google-appengine] Re: Anomaly at Datastore

2010-06-02 Thread Aaron
The status page says the datastore is back to normal. However, I'm still hitting the soft memory limit on every request. Is the datastore really back to normal operation? Best, Aaron On Jun 2, 11:01 am, Rafael Sierra rafaeljs...@gmail.com wrote: On Wed, Jun 2, 2010 at 2:53 PM, Wesley C

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

2010-06-02 Thread Jason (Google)
Added jappstart 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.

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

2010-06-02 Thread Rafael Sierra
On Wed, Jun 2, 2010 at 5:06 PM, Massimiliano massimiliano.pietr...@gmail.com wrote: It sounds strange to me that there isn't nothing in GAE to check this, without using a third part class... That's everybody thought considering that Google is mainly known as Search Engine. But thats ok, GAE

[google-appengine] Re: Video of App Engine sessions from Google I/O 2010 are up!

2010-06-02 Thread hawkett
Agreed, some really great stuff in there - haven't watched everything yet, but the additions to the query capabilities look awesome - great work guys. On Jun 1, 11:03 pm, Ikai L (Google) ika...@google.com wrote: Hey guys, I just wanted to let everyone know that the App Engine sessions from

  1   2   >