[appengine-java] Re: How to query user in the datastore

2009-12-15 Thread Leon
USER('@gmail.com') can be used in GQL. I have tried user.getemail, user.getnickname, etc. They don't work either... On Dec 14, 4:26 am, Rusty Wright rwright.li...@gmail.com wrote: The   USER('@gmail.com') part looks strange to me.  That syntax says to me that there's a database

[appengine-java] Re: Timeout using GData API

2009-12-15 Thread Vinay
Any progress on this issue? I've been seeing the same exact thing. I tried setting the service read and connect timeouts to 0 (which is supposed to disable timeouts), as well as very large numbers, but I continue to get the same error. I am doing batch operations. The operations appear to

[appengine-java] Re: Lazy Loading, Spring MVC and PersistenceManager Closing

2009-12-15 Thread Al
Interesting - thanks to both, will check out both options. On Dec 14, 8:52 pm, abhi abhishek9...@gmail.com wrote: Hey , why do you want to close the persistance manager here, you are not saving or updating any entities. You should use a static PMF class to get the entity manager und you

[appengine-java] Re: How to query user in the datastore

2009-12-15 Thread datanucleus
USER('@gmail.com') can be used in GQL. And JDO doesn't use GQL, it provides JDOQL, as per the JDO spec http://jcp.org/aboutJava/communityprocess/mrel/jsr243/index2.html To add a filter in JDOQL comparing objects you would do SELECT ... FROM ... WHERE user = :user and pass in a parameter of

[appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Peter Ondruska
Consider this early Xmas present :-) On Dec 15, 10:29 am, Rusty Wright rwright.li...@gmail.com wrote: The Google Boys are cooking!  It hasn't even been 2 weeks since the last release. Jason (Google) wrote: Hi Everyone. We just released version 1.3.0 of the App Engine SDK for both

[appengine-java] Custom pre-deploy or post-build step in Eclipse

2009-12-15 Thread Shane
Hi, I would like to copy data from another build phase into my WAR directory either prior to deploy, or even better, whenever a compile completes (i.e. post-build). I'm coding for Google App Engine using Java, using the latest Google plugin. Eclipse version Build id: 20090920-1017. How can I

Re: [appengine-java] Custom pre-deploy or post-build step in Eclipse

2009-12-15 Thread Prashant
put a soft link in war pointing to the other build, if you are using vista, *mklink /j link-name target-location *is the command. -- 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] Where is jdoconfig.xml? Ref:JDO PersistanceManagerFactory transactions-optional failure

2009-12-15 Thread Blessed Geek
When I read the java section of http://code.google.com/appengine/docs/java/datastore/overview.html, there is no mention of jdoconfig.xml and the need of it being in war/WEB-INF/classes/META-INF/ . I followed this document as recommended, get the pmf factory singleton and then bam! I am hit with

[appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread George Moschovitis
This is a long awaited feature. Some problems though: - Instead of the serve() helper I would expect access to the blobs through a url, something like: http://my-app.appenginebs.com/blob-key - No support for organization in directories - A method to manipulate the uploaded blobs is missing

Re: [appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Guillaume Laforge
On Tue, Dec 15, 2009 at 12:34, George Moschovitis george.moschovi...@gmail.com wrote: [...] - No free quota Even just a small free quota would be really nice, for small apps, prototypes, for experimenting with the feature, etc.! -- Guillaume Laforge Groovy Project Manager Head of Groovy

Re: [appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Prashant
+1, please do that. -- 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 to

Re: [appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Nick Johnson (Google)
Hi George, On Tue, Dec 15, 2009 at 11:34 AM, George Moschovitis george.moschovi...@gmail.com wrote: This is a long awaited feature. Some problems though: - Instead of the serve() helper I would expect access to the blobs through a url, something like:

[appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread George Moschovitis
is interpreted by the infrastructure to cause it to send the blob back to the user. What does 'interpreted' mean? is the actual file served from a separate infrastructure optimized for static files (in the future maybe from a CDN)? I would like to skip the dynamic request to the application,

[appengine-java] Re: eclipse plugin and maven?

2009-12-15 Thread a.maza
On 14 Dez., 10:35, drone andr...@gmail.com wrote: I see now, that they can be found inhttp://www.mvnsearch.org/maven2/ repository, so I will try updating maven-gae-plugin as soon as I have some free time. Are you sure? I just checked that but I've found no appengine-related libs there. --

[appengine-java] Re: Running queries in the Data Viewer of the Datastore

2009-12-15 Thread kor
I would like to suggest trying AppWrench(http:// appwrench.onpositive.com). It's Data Store viewer provides comprehensive support for editing and adding new entities to data store. Regards, Pavel On 7 дек, 06:45, Scott gocards...@gmail.com wrote: Is it possible to run update/insert queries in

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-15 Thread Don
Hi Ikai, So does the order of setDataHandler + setFileName cause problems as I wrote above? Regards On Dec 1, 5:25 am, Ikai L (Google) ika...@google.com wrote: Interesting, so this did not work? attachment.setDataHandler(new DataHandler(mimePartDataSource));

Re: [appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Nick Johnson (Google)
On Tue, Dec 15, 2009 at 1:55 PM, George Moschovitis george.moschovi...@gmail.com wrote: is interpreted by the infrastructure to cause it to send the blob back to the user. What does 'interpreted' mean? is the actual file served from a separate infrastructure optimized for static files (in

[appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread George Moschovitis
Part of the infrastructure between the user and your code sees the blobstore header in your response, and replaces the response with the contents of that blob. OK, Another thing, how could I use the Images api on an uploaded image before storing it to the blobstore. Would I have to emulate a

[appengine-java] Re: eclipse plugin and maven?

2009-12-15 Thread datanucleus
Are you sure? I just checked that but I've found no appengine-related libs there. http://www.mvnsearch.org/maven2/com/google/appengine/ -- 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: java.lang.RuntimeException: Unable to replace JPACallbackHandler - Unit Testing

2009-12-15 Thread Thierry Golvanig
Thank you Max. Yes, I didn't include correctly datanucleus-jpa-1.1.5.jar in the classpath. It works now! That's perfect. On Dec 11, 6:59 pm, Max Ross (Google) maxr+appeng...@google.com wrote: I suspect datanucleus-jpa-1.1.5.jar isn't on your classpath.  Is that possible? On Fri, Dec 11,

[appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread George Moschovitis
The release also includes some performance tweaks to the Java runtime. I *think* the new runtime is considerably faster when running Rhino (JavaScript) applications. Great job! -g. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group.

Re: [appengine-java] Re: eclipse plugin and maven?

2009-12-15 Thread Miguel Méndez
Here are somethings, that I'm aware of, that make it hard to use maven and the Google Plugin for Eclipse together: 1. Require users to use an SDK (classpath container in eclipse) instead of regular jars 2. Force the war directory to be named war and appear at the project root 3. No

[appengine-java] TaskQueue and null host name

2009-12-15 Thread Millisecond
Hello, I'm just testing out super basic TaskQueue stuff in the dev environment and running into an exception I just can't seem to shake. Code: Queue queue = QueueFactory.getQueue(mail-queue); queue.add(url(/api/RunMonitor)); Exception: java.lang.IllegalArgumentException: Host name may not be

[appengine-java] Directions for Search Engine Vertical using the GAE.

2009-12-15 Thread SmartSIP Team
Hi I am interested in creating a Search Engine Vertical using the GAE. Since google already indexes the internet, I would like to use google for getting the information. Then my application would crawl the url returned by google, get the needed infromation from that url and save it in Database.

[appengine-java] App Engine SDK 1.3.0 maven repo

2009-12-15 Thread Rusty Wright
Here I am, yet another maven user whining about some new release not being correct in the maven repo. The appengine-api-1.0-labs directory has a 1.3.0 directory, but in it are jars named with 1.2.8:

Re: [appengine-java] Re: where I should put the Task Queue code?

2009-12-15 Thread Rusty Wright
At this point I'd suggest that you don't do it with GWT; step into the wayback machine and write a plain java servlet and do the necessary configuration/mapping with your web.xml. Can you say old school? There should be plenty of tutorials and samples on the web. I'm thinking that you'd

[appengine-java] Retrieving an entity using a different key type than the key field in the class

2009-12-15 Thread a.maza
According to the documentation on http://code.google.com/appengine/docs/java/datastore/creatinggettinganddeletingdata.html#Keys it should be possible to retrieve an entity using a different key type than the key field in the class. Assuming the following entity having a key (encoded string) and a

[appengine-java] Datastore Quota

2009-12-15 Thread James H
Is space consumed by datastore for secondary and tertiary backups of production Entities reflected in the quota for billing purposes? Or, is only the spaced used for the primary Entities used for billing? In other words, are we charged for 1 copy of the data or 3 copies? Thanks, J -- You

Re: [appengine-java] Re: Cache stops returning results under heavy load

2009-12-15 Thread Ikai L (Google)
Martin, Let us know if there's a pattern. I'd like to be able to track this down. On Mon, Dec 14, 2009 at 2:58 AM, Martin Caslavsky mcaslav...@gmail.comwrote: There are only several objects in the cache (up to 10), each about 10kb. But there is also a bigger one (about 260kb) which I suspect

[appengine-java] Re: Can we use Enums as fields in Data classes

2009-12-15 Thread David Chandler
See http://turbomanage.wordpress.com/2009/12/04/persisting-enums-with-appengine-datastore/ HTH, /dmc On Dec 14, 5:35 pm, dantuluri pdantul...@gmail.com wrote: Hi,    Can we use java enums as @Persistent data fields in the Data classes? There is no tutorial that talks about java enums being

[appengine-java] Re: where I should put the Task Queue code?

2009-12-15 Thread David Chandler
Vince Bonfanti's Deferred.defer() makes using task queues very easy, as there's only one servlet needed and he's already written it! There's an example of using it and a reference to the forum thread in which Vince posted the code here:

Re: [appengine-java] Datastore Quota

2009-12-15 Thread Ikai L (Google)
You're not charged for backups. You are, however, charged for indexes, and more likely than not the space taken up by your indexes will be several times that of your data (unless you use blobs/textfields heavily). We're looking at ways to add more transparency to the admin console so developers

[appengine-java] Re: Inherit one-to-many relationship

2009-12-15 Thread Pierre Lavignotte
Hi Max, I'm sorry but I missed your answer... Anyway, I just tryed with the 1.3.0 release that includes your fix and everything seems ok now. Thank you, Pierre -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

[appengine-java] redirection using post action

2009-12-15 Thread Bruce M
Hi, I'm running an app on the development server that posts data to a remote site. The remote site replies with a 302 - object moved and a Location header. With setInstanceFollowRedirects() set to true, the connection object appears to be following the redirect with a POST. Shouldn't it be using a

Re: [appengine-java] com.google.appengine.api.datastore.DatastoreNeedIndexException

2009-12-15 Thread Jason (Google)
Hi Dmitry. What's your app ID? Indexes are auto-generated by the SDK when you run a query locally that requires a custom index. If you don't run a particular query locally and it uses multiple sort orders or otherwise requires a custom index, then the index won't be generated in

[appengine-java] BlobstoreService, No image data is available.

2009-12-15 Thread andy
I'm trying to scale an image after upload (in the doPost method). The blob key seems to be ok and the image is served after the upload. Image oldImage = ImagesServiceFactory.makeImageFromBlob(bk); double aspectRatio = (double) oldImage.getWidth() / (double) oldImage.getHeight(); -

[appengine-java] BlobstoreService, No image data is available.

2009-12-15 Thread Andreas Oesterer
I'm trying to scale an image after upload (in the doPost method). The blob key seems to be ok and the image is served ok after the upload. Image oldImage = ImagesServiceFactory.makeImageFromBlob(bk); double aspectRatio = (double) oldImage.getWidth() / (double) oldImage.getHeight(); -

Re: [appengine-java] TaskQueue and null host name

2009-12-15 Thread Max Ross (Google)
Where is your code that adds the task to the queue? Is it being run during server initializaiton, perhaps as part of a static block or a LoadOnStartup servlet? Thanks, Max On Tue, Dec 15, 2009 at 8:27 AM, Millisecond millisec...@gmail.com wrote: Hello, I'm just testing out super basic

[appengine-java] Re: TaskQueue and null host name

2009-12-15 Thread Millisecond
It's in a normal doGet method of a servlet. Re-enabled it to double-check that I was failing on the version in doGet (originally I had it in an init() method) and ran into something that may be the cause. If I request the servlet from http://localhost:8080/ it fails, the same servlet also

[appengine-java] Re: Custom pre-deploy or post-build step in Eclipse

2009-12-15 Thread Shane
I created symbolic links (as opposed to OSX's alias's) for the external files that need to be packaged into my WAR directory, and it worked. Thanks for the tip. Beyond this simple example, is there a way to actually run script as part of a post build process? Shane On Dec 15, 9:38 pm, Prashant

[appengine-java] Re: Looking for Bulk Loader beta testers

2009-12-15 Thread stephan
Thanks Mathew -- The --dump --restore is exactly what I've been looking for. However... While I was able to export some of my entities (mostly those with only a handful of items), for entities with a LOT of items I'm seeing the following: on the command line from bulkloader.py: HTTPError: HTTP

[appengine-java] Cannot deploy files because of space(s) in file path

2009-12-15 Thread tha
I have the following files in my webapp: myappname\WEB-INF\web.xml myappname\WEB-INF\appengine-web.xml myappname\publish\Application Files\index.html myappname\publish\Application_Files\index.html ... When I use appcfg.cmd to upload, everything seems OK, I see no error. But when I try to access

[appengine-java] Re: What does precompilation-enabledtrue/precompilation-enabled do?

2009-12-15 Thread Jorge
I have the same issue. My app id is wcondominios: Unable to update: java.io.IOException: Precompilation failed. Consider adding precompilation-enabledfalse/precompilation-enabled to your appengine-web.xml and trying again. at com.google.appengine.tools.admin.AppVersionUpload.precompile

[appengine-java] Re: Looking for Bulk Loader beta testers

2009-12-15 Thread stephan
Nevermind... Playing around with the options, I got it to work setting: --batch_size=5 On Dec 15, 9:09 pm, stephan smor...@gmail.com wrote: Thanks Mathew -- The --dump --restoreis exactly what I've been looking for. However... While I was able to export some of my entities (mostly those

[appengine-java] Dynamically create classes using JPA/JDO and bytecode instrumentation

2009-12-15 Thread Bombay Goose
Hello All, I am doing a feasibility study of whether we can develop our application on appengine or not. Our application has a requirement where we have to create tables dynamically, without restarting the application. Is that possible in Appengine? Datanucleus supports this through JDO, with

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread ajaxer
my suggestions on appengine: enable entities deleted by one click. cancel the limit on offset index. remain the limit on data fetched. On Dec 15, 12:00 pm, Jason (Google) apija...@google.com wrote: Hi Everyone. We just released version 1.3.0 of the App Engine SDK for both Python and Java. The

[google-appengine] Re: Is it possible to deploy Wave server on GAE ( will it be wihin free limits)

2009-12-15 Thread yadoo
Guys, where can I get the source code for the wave??? On Dec 8, 11:04 pm, mdipierro mdipie...@cs.depaul.edu wrote: I am not sure if this is what you are asking but here is a google wave service running on google app engine: http://wavedirectory.appspot.com Here is some howto:

[google-appengine] Re: Is it possible to deploy Wave server on GAE ( will it be wihin free limits)

2009-12-15 Thread yadoo
Guys, where can I get the source code for the wave google project ?? On Dec 6, 11:00 am, saurabh sagarwal1...@gmail.com wrote: Hi , I am trying o make an application based on wave server functionality ( I dont want to use the Wave GUI ) just the wave server functionality of realtime

[google-appengine] Re: Cron jobs fail with error Request was aborted after waiting too long to attempt to service your request.

2009-12-15 Thread fhtino
I have the same problem. In my case 1 req/min. Normally the execution time is 100 ms or less. Sometimes time is more than 1 ms and I get http error 500 and Request was aborted after waiting too long to attempt to service your request. I don't understand the reason. fabrizio On Dec

[google-appengine] Blob Store PUT

2009-12-15 Thread oli
It's nice that it's now possible to upload files larger than 1MB. Do you have any plans to support PUT uploads for Blob Store? e.g. for implementing a S3-like interface on appengine. Would the appengine infrastructure allow this or is it impossible? -- You received this message because you are

[google-appengine] Billing Setup Started for about 2 weeks

2009-12-15 Thread Peter Ondruska
I have setup billing for my application at Nov 30 and since then it is still not activated and no other change in status since then. Can please anybody at Google have a look, appid kaibo-www? Thank you -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: Blob Store PUT

2009-12-15 Thread G
Perhaps this ancient PUT bug is part of the problem? http://code.google.com/p/googleappengine/issues/detail?id=170 If so, try the workaround. -if self.method != 'POST': +if self.method not in ['POST','PUT']: -- G On Dec 15, 2:08 am, oli oliver@gmail.com wrote: It's nice

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Tim Hoffman
Hi There does not appear to be any provision for creating blobs via remote_api. Any thoughts on this ? T On Dec 15, 12:00 pm, Jason (Google) apija...@google.com wrote: Hi Everyone. We just released version 1.3.0 of the App Engine SDK for both Python and Java. The most notable change is the

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Stephen Mayer
Hi Jason, Looks like an exciting new feature! My concern after looking thru the docs is how we tell what file the user actually uploaded ... was it an image, a video, etc ... for validation and sanity checks? It seems like you could use the fetch api to get the actual file and work on it in

[google-appengine] Re: Manually entering ReferenceProperty Keys into the DataStore Viewer?

2009-12-15 Thread kor
Hi Scott, I would like to recommend to perform a quick look on AppWrench(http:// appwrench.onpositive.com). AppWrench has full support for editing relations as well as lists and other data types supported by Google App Engine. Regards, Pavel On Nov 9, 11:03 pm, DarkMarmot

[google-appengine] Re: Blob Store PUT

2009-12-15 Thread oli
Unfortunately it's not that simple. For a Blob Store upload you have to generate a temporary URL like http://localhost:8080/_ah/upload/agN3b3hyGwsSFV9fQmxvYlVwbG9hZFNlc3Npb25fXxgUDA With a raw PUT request / S3-like API you don't even use multipart/form- data, just send the blob in the body of the

[google-appengine] Re: Is it possible to deploy Wave server on GAE ( will it be wihin free limits)

2009-12-15 Thread Stephen
On Dec 15, 6:46 am, yadoo yado...@gmail.com wrote: Guys, where can I get the source code for the wave google project ?? http://code.google.com/p/wave-protocol/ -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

Re: [google-appengine] Index updating time as number of entities grows

2009-12-15 Thread Nick Johnson (Google)
Hi Nickolas, On Tue, Dec 15, 2009 at 6:39 AM, Nickolas Daskalou n...@daskalou.comwrote: I've read that the time for a Datastore query is independent of the number of entities in an app, which is great. However, does index updating take longer as the number of entities increases? No, the

[google-appengine] Unable to Delete Blobs in Admin Console

2009-12-15 Thread jorge
I have a few blobs that I have uploaded using the new blob feature, but I am unable to delete them via the Blob Viewer in the admin console, I am getting 500 errors. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

Re: [google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Barry Hunter
Stephen, have you seen? http://code.google.com/appengine/docs/python/blobstore/blobinfoclass.html looks like you should be able to query that to get the mime-type (admittedly it is the client provided one, not a server-side verified one. ) 2009/12/15 Stephen Mayer stephen.ma...@gmail.com: Hi

[google-appengine] Re: Request was aborted after waiting too long followed by random DeadlineExceededError on import.

2009-12-15 Thread Jason C
Ikai, We see daily DeadlineExceededErrors on app id 'steprep' from 6.30am to 7.30am (log time). Can you look into that as well? Thanks, j On Dec 14, 3:32 pm, Ikai L (Google) ika...@google.com wrote: Do you see that it's consistent at the same times? What's your application ID? I'll look into

[google-appengine] Re: Is it possible to deploy Wave server on GAE ( will it be wihin free limits)

2009-12-15 Thread yadoo
Wait, I think this is just the Protocol, am I right? I need GUI(to be more specific GWT) codes also... On Dec 15, 7:32 pm, Stephen sdea...@gmail.com wrote: On Dec 15, 6:46 am, yadoo yado...@gmail.com wrote: Guys, where can I get the source code for the wave google project ??

[google-appengine] Java or Python; Which should I recommend to others who are very sensitive to costs?

2009-12-15 Thread Takashi Matsuo
Hello, Today I noticed that App Engine Java environment became much faster then before. The spin up cost is about 700cpu_ms with the simplest servlet. Additionally, when it comes to serving with a hot instance, the cost reduces to 0-2cpu_ms, while python environment takes about 5-7cpu_ms even

[google-appengine] Re: Blob Store PUT

2009-12-15 Thread G
Ah, my bad. Without reading the docs The Blobstore API allows your app to serve data objects, called blobs, that are much larger than the size allowed for objects in the Datastore service. Apps never access blob data directly; instead, blobs are created indirectly, by a submitted web form or

[google-appengine] Re: Java or Python; Which should I recommend to others who are very sensitive to costs?

2009-12-15 Thread trung
How about jruby with rails? :) On Dec 15, 10:02 am, Takashi Matsuo matsuo.taka...@gmail.com wrote: Hello, Today I noticed that App Engine Java environment became much faster then before. The spin up cost is about 700cpu_ms with the simplest servlet. Additionally, when it comes to serving

[google-appengine] Trouble creating an application

2009-12-15 Thread Steve S.
1. I begin at the page https://appengine.google.com/start and click Create an application and am taken to https://appengine.google.com/ start/createapp?. 2. I check the availability of a domain. It is available (I've tried random URLS, so domain availability is not the issue.) 3. I am taken back

Re: [google-appengine] Java or Python; Which should I recommend to others who are very sensitive to costs?

2009-12-15 Thread Michael Langford
If your app exceeds free quota, this deference can impact total amount of costs significantly. As can the difference in price/productivity between the two languages as far as total cost of development goes. The incremental costs on appengine between the two technologies are dwarfed by the

[google-appengine] Re: Index updating time as number of entities grows

2009-12-15 Thread Nickolas Daskalou
Hi Nick, Thanks for your incredible continued support in these groups! Re: put() returning after indexes are updated - I confused myself with the milestone A/B scenario from the transaction isolation article (http://code.google.com/appengine/articles/ transaction_isolation.html), thanks for

[google-appengine] Re: Trouble creating an application

2009-12-15 Thread Steve S.
Problem resolved: The apps were created in my Google Apps account. I wish the sign-up page would have told me this, though! -- 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: Request was aborted after waiting too long followed by random DeadlineExceededError on import.

2009-12-15 Thread Dave Peck
Hi Ikai, Any further details on your end? I get the feeling we're not the only ones, and we've experienced very serious downtime in the last ~48 hours. This is a critical issue for us to resolve, but at the same time we lack key pieces of data that would help us solve it on our own... Thanks,

Re: [google-appengine] Java or Python; Which should I recommend to others who are very sensitive to costs?

2009-12-15 Thread Jesaja Everling
Maybe the people asking if it's possible to run Jython on App Engine were on to something, after all! ;) I also think choosing the toolkit that works best for the task at hand is more important. Furthermore I'm confident the App Engine team will speed up the Python runtime further; maybe that's

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Matthew Blain
While the limit for passing data directly to the Images (or other) APIs has not changed, you can pass a Blob key to the Images API to do exactly what you want: convert a 50MB uploaded image to a smaller image. More information here:

Re: [google-appengine] Re: Request was aborted after waiting too long followed by random DeadlineExceededError on import.

2009-12-15 Thread Ikai L (Google)
Dave, You're correct that this is likely affecting other applications, but it's not a global issue. There are hotspots in the cloud that we notice are being especially impacted during certain times of the day. We're actively working on addressing these issues, but in the meantime, there are

[google-appengine] Re: Request was aborted after waiting too long followed by random DeadlineExceededError on import.

2009-12-15 Thread Dave Peck
Ikai, We'll keep an eye on our app for the next ~24 hours and report back. At what time did you make the changes to our instance? We had substantial downtime earlier today, alas. Can you provide any details about what sort of change was made? Thanks, Dave On Dec 15, 11:26 am, Ikai L (Google)

[google-appengine] Re: Google App Engine for a huge website

2009-12-15 Thread Rafe
Felix, The timing of your question is excellent. Last night we just released App Engine 1.3.0 which adds the BlobStore API. This new API supports file upload and download up to 50MB. http://googleappengine.blogspot.com/2009/12/app-engine-sdk-130-released-including.html At least

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Dave Peck
Well, that gets us partway there. Looking at the docs, it looks like the output image must still be less than 1MB -- certainly fine for thumbnailing, but possibly for not all types of tasks. Also: right now (unless I've missed an API somewhere) to validate images you must pass them to the Image

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Dave Peck
and see if execute_transforms() succeeds. So if I want to validate a 1++MB image, I still have the issue with the output side of the image. (I realize that, when validating, you can always resize the image so that it's likely to be less than 1MB when finished. I just wish there were a

Re: [google-appengine] Re: Request was aborted after waiting too long followed by random DeadlineExceededError on import.

2009-12-15 Thread Ikai L (Google)
I made the change right before I sent the email. Let me know how it works for you. Jason, I also made the change to your application. Please report back after tomorrow if you continue to experience issues. On Tue, Dec 15, 2009 at 11:39 AM, Dave Peck davep...@gmail.com wrote: Ikai, We'll keep

Re: [google-appengine] Billing Setup Started for about 2 weeks

2009-12-15 Thread Ikai L (Google)
What specifically is wrong with the application? It can be accessed at kaibo-www.appspot.com and the admin console seems to be working. On Tue, Dec 15, 2009 at 2:13 AM, Peter Ondruska peter.ondru...@gmail.comwrote: I have setup billing for my application at Nov 30 and since then it is still

[google-appengine] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread mably
For Backup/Restore tools, please vote for issue http://code.google.com/p/googleappengine/issues/detail?id=776 Already 174 people have starred it. François On 15 déc, 22:21, yadoo yado...@gmail.com wrote: Excellent job Google... Hopefully, google provides us Backup/Restore tools in the future

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

2009-12-15 Thread Jason (Google)
Adding Lollysite and JobTracker 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

Re: [google-appengine] Java or Python; Which should I recommend to others who are very sensitive to costs?

2009-12-15 Thread Michael Langford
Jython works just fine on App Engine. There is even a list of popular API's that do. I don't know about speed differentials there. http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine?pli=1 --Michael On Tue, Dec 15, 2009 at 2:01 PM, Jesaja Everling

[google-appengine] Blob Store Post/Redirect/Get Django Forms

2009-12-15 Thread Dave Peck
Hi, This morning I started to modify the code to CityGoRound to use the blobstore for user-uploaded screenshots. We use Django forms in our app. One of our forms (http:// citygoround.org/apps/add/) allows users to upload a new transit app to our app gallery. They must include one screenshot;

[google-appengine] Re: AppWrench 1.0 released: App Engine Profiler, Data Store Viewer and more

2009-12-15 Thread Erem
Hey, has anyone tried this out? From the screenshots and vidcaps It actually seems really cool. Unfortunately I'm working on some more businessy aspects of my startup right now and haven't had a chance to use it. AppWrench guys: have you considered hiring a designer for your webpage? It

[google-appengine] bulkloader/index bug: random number of results returned

2009-12-15 Thread bsb
I'm downloading data from the bulkloader using the command: appcfg.py download_data --config_file=ExporterFormat.py -- filename=prices.csv --kind Model_price . The command finishes without errors, but I only get 39820 entities. A quick look into the statistics on the website tells me there are

[google-appengine] Re: Blob Store Post/Redirect/Get Django Forms

2009-12-15 Thread Dave Peck
I suppose the clean way to do this is to add stuff to the user's session in the blob handler, and then pick it up in the GET request that we redirect to. Not too hard, though from the perspective of the Django forms API not a natural fit. Cheers, Dave On Dec 15, 2:17 pm, Dave Peck

[google-appengine] Keeping an updated dictionary list of over 1000 in App Engine

2009-12-15 Thread killer barney
I have a question that perhaps someone can give me some insight on. I have a list of thousands of keywords in my website that I am going to constantly need to query and iterate through. So I thought rather than querying for every keyword in the datastore everytime, I should store it in the

[google-appengine] Re: Java or Python; Which should I recommend to others who are very sensitive to costs?

2009-12-15 Thread Andy Freeman
Having said that, today it turns out for me that Java runtime is much more cost effective than Python runtime in some cases The question is not whether the Java or Python runtime is more cost effective in some cases, it's whether it which is more cost effective in your cases. Suppose that your

[google-appengine] Application ID

2009-12-15 Thread Marco Antonio da Silva Castanheira
Hi, I'm new on App Engine. I developed my first application, called *artezel*, but when I tried create the application on App Engine, an error has ocurred. The application was not created, but the id, artezel, is now unavailable. How I can turn this id available again? -- You received this

[google-appengine] Bug with blobstore internal redirect in dev_appserver.py

2009-12-15 Thread Dave Peck
On the local server, when the blobstore code performs the internal redirect to whatever URL you specified in create_upload_url(), the POST contents are not properly encoded. According to the RFCs, you must end lines with CRLF, but dev_appserver (and, perhaps, the production environment?) ends

[google-appengine] Re: Application ID

2009-12-15 Thread Nickolas Daskalou
Are you using a Google Apps account? If so, visit the home page of this group: http://groups.google.com/group/google-appengine Read the bold paragraph that starts with If you've created an application. Nick On Dec 16, 11:20 am, Marco Antonio da Silva Castanheira mcastanhe...@globo.com wrote:

[google-appengine] How to determine top 10 scoring users from last 24 hours?

2009-12-15 Thread Amir Michail
Hello, I asked this question before but perhaps this is more feasible now with the latest version of the GAE? http://groups.google.com/group/google-appengine/browse_thread/thread/e7f892a2efabed59/2ced4b6790ce1f1b Amir -- You received this message because you are subscribed to the Google