[appengine-java] Re: cron: AppEngineConfigException: schedule every 5 mins from 00:04 to 23:59 failed to parse

2011-04-07 Thread Mickey Kataria (Google Employee)
Are you seeing this error when you try to upload your app? Are you using the latest released (1.4.3) SDK? On Apr 6, 5:40 am, epure filip.god...@gmail.com wrote: Ping -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

[appengine-java] unable to update app:Failed to compile jsp files

2011-04-07 Thread Eric Wu
I got problem when I deploy my project to Google App Engine. The project works ok on localhost. When deploying, there was a error message I post below: How to solve it? Creating staging directory Scanning for jsp files. Compiling jsp files.

[appengine-java] Re: Could Not Verify SSL Certificate

2011-04-07 Thread Mathieu Clavel
Hello everybody, I have a similar problem, but with the version 1.4.3 The site I'm connecting to (web services) has a bad ssl certificat (not right for the domain). I added it successfully to the cacerts of the jdk. Using v1.4.2, the ssl connection is working. When trying to use the v1.4.3, the

[appengine-java] JDO - Updating a One-to-one child

2011-04-07 Thread Luca Matteis
I have a Recipe. Each Recipe has an image. So my entity looks something like @PersistenceCapable public class Recipe { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Key key; @Persistent private MyImage myImage; When I create the Recipe the

[appengine-java] Failed to compile jsp files.

2011-04-07 Thread Eric Wu
I use the new version of sdk1.4.3. The problem still unsolved. here is the error message Creating staging directory Scanning for jsp files. Compiling jsp files. com.google.appengine.tools.admin.JspCompilationException: Failed to compile jsp files. 2011/4/7 下午 04:17:10

[appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Simon Knott
Hi, I don't personally use JDO, but don't you have to re-put your object? I don't know how JDO does its dirty checking - I doubt very much that it will persist modified entities just because you're closing the Persistence Manager. Cheers, Simon -- You received this message because you are

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Luca Matteis
Hello Simon, even if I persist it doing try { r.setImage(newImage); pm.makePersistent(newImage); } finally { pm.close(); } I still get the same results. The interesting thing is that if I delete the image entity from the datastore, the recipe

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Simon Knott
If you look in the datastore admin tool, can you see whether the Recipe is being updated with the new image reference? Are you seeing this problem on Dev or Prod? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Simon Knott
Have you tried deploying to GAE? You can only see child fields in the datastore viewer in Production. -- 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-java@googlegroups.com. To

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Luca Matteis
It's the same when deployed to GAE. From the live datastore viewer I don't see the children when viewing the Recipe entity itself. The images get stored in another table called Image. Was I suppose to see a reference to the image object directly in the Recipe entity? On Thu, Apr 7, 2011 at 11:08

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Luca Matteis
I don't see the actual Recipe being update with anything. I just see the Image being added in the Image 'table'. But from the datastore viewer there's no attribute in the Recipe 'table'. Hope that's clear. On Thu, Apr 7, 2011 at 10:58 AM, Simon Knott knott.si...@gmail.com wrote: If you look in

[appengine-java] Re: Group Welcome Read Me

2011-04-07 Thread skone
hello boys and girl my level in engilsh is very poor but i try to explain my problems clearly i use the extention for GWT who call GXT i create my project and i try to deploy with Google App Engine but i have one error GWT compilation failed and on my console Compiling module

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Simon Knott
Yes, that's what I would have expected - how else would a recipe ever retain which image it is related to? Is the relationship purely stored within the key of the Image? I must admit that without any knowledge of JDO and its relationship management, I'm just making wild guesses! -- You

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Luca Matteis
Well, I would think the Key has relationship information. The thing is that I'm able to fetch the image for the recipe, so the relationship is there somehow. It seems as if setImage() isn't enough for the linkage to update to the latest image. On Thu, Apr 7, 2011 at 11:29 AM, Simon Knott

[appengine-java] Re: Integrating Flex/Flash/Silverlight/AJAX/Android with Java classes in GAE

2011-04-07 Thread Mike Lawrence
Mark, if I write a simple servlet that accepts JSON it supports any client too, for free with no external dependencies. I watched your entire video. Sorry, not sure I understand your value proposition. On Apr 5, 3:45 pm, Mark Piller mpil...@gmail.com wrote: Hey guys, I am not sure what the

[appengine-java] My application works well in eclipse but when I deploy the same code in GAE it shows the following error while opening the homepage

2011-04-07 Thread Rajesh KN
Error: Server ErrorThe server encountered an error and could not complete your request. If the problem persists, please reporthttp://code.google.com/appengine/community.html your problem and mention this error message and the query that caused it. -- You received this message because you are

[appengine-java] fetching of children JDO

2011-04-07 Thread Neto
Hi, I am new to JDO! Sorry if this is a repeated post, but i could not find out nothing with an answer to my problem. I am trying to model the following strutucre: class A{ private ArrayList B listB; } class B{ private LinkedListC listC; } Note: the fields (listB and listC) are marked with

[appengine-java] Re: fetching of children JDO

2011-04-07 Thread Neto
I have a mistake above: by I retrieve a A object and than detach it. I can acess the listB field just fine, but when i try to acess the* working hours*, i get the following error: e mean I retrieve a A object and than detach it. I can acess the listB field just fine, but when i try to

Re: [appengine-java] My application works well in eclipse but when I deploy the same code in GAE it shows the following error while opening the homepage

2011-04-07 Thread Amit Pandey
Please copy and paste your google app engine console to identify the exact problem. Thanks. On Thu, Apr 7, 2011 at 5:31 PM, Rajesh KN knra...@gmail.com wrote: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please

[appengine-java] How to read large files from the Blobstore using the file API ?

2011-04-07 Thread DanielP
Hi, I am trying to read some 5MB XML files I have saved into the Blobstorevia the new APIs introduced in Version 1.4.3. The problem is that the read is so slow that I get a DeadlineExceededException :( I'm folowing the example provided in the docs here:

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Luca Matteis
This is really weird. I cannot find anything on the internet that could help me. It seems such a simple thing to be editing child objects and I find it ridiculous that I can't find a solution. please help On Thu, Apr 7, 2011 at 11:53 AM, Luca Matteis lmatt...@gmail.com wrote: Well, I would

Re: [appengine-java] Best practice for multithreaded access/update to entity

2011-04-07 Thread Peter Backx
Hi Ikai, Could you expand your answer a little? Do you mean that I don't need to manage a timestap/version if I use transactions? Or do you mean I should use transactions to combine a read (to check for a changed timestamp/version) with a write? If I don't manage the timestamp myself, how

[appengine-java] Re: Happy Birthday Google App Engine !!

2011-04-07 Thread gjs
+1 Regards On Apr 7, 3:52 pm, Thomas Wiradikusuma wiradikus...@gmail.com wrote: I agree with Rajkumar, GAE/J is a very important service, especially for indie Java developers like me. The service is getting better, and the developer groups are vibrant. Happy Birthday GAE! regards,

[appengine-java] Re: fetching of children JDO

2011-04-07 Thread Ian Marshall
The problem could be due to fetch depth. In my jdoconfig.xml file, I have property name=datanucleus.maxFetchDepth value=1/ which is the default value. I use transactions for my data exchange with the datastore using JDO for everything except queries which can return entities from more than

[appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Ian Marshall
Do you use transactions? Instead of your PersistenceManager pm = PMF.get().getPersistenceManager(); Recipe r = pm.getObjectById(Recipe.class, recKey); try { r.setImage(newImage); } finally { pm.close(); } have you tried PersistenceManager pm =

Re: [appengine-java] Re: JDO - Updating a One-to-one child

2011-04-07 Thread Luca Matteis
Hello Ian, I tried using your exact piece of code. Still same results. The recipe still points to the first image instead of the most recently added one. On Thu, Apr 7, 2011 at 5:20 PM, Ian Marshall ianmarshall...@gmail.com wrote: Do you use transactions? Instead of your  PersistenceManager

Re: [appengine-java] Re: Happy Birthday Google App Engine !!

2011-04-07 Thread Don Schwarz
Thanks for the nice thoughts, everyone. We're excited about what all of you have built on App Engine as well! On Thu, Apr 7, 2011 at 10:13 AM, gjs garyjamessi...@gmail.com wrote: +1 Regards On Apr 7, 3:52 pm, Thomas Wiradikusuma wiradikus...@gmail.com wrote: I agree with Rajkumar,

[appengine-java] How much cpu should a page use

2011-04-07 Thread WillSpecht
I just installed appstats. I have been looking at the breakdown of a few of my pages. Some, pages where many different models are being displayed on one page, seem like they are making a lot of RPC's. Is there a good benchmark I should try and set my pages to? What are good numbers for RPC

Re: [appengine-java] Re: Happy Birthday Google App Engine !!

2011-04-07 Thread JT
Happy birthday! Best platform ever! My own reasons http://goo.gl/IaiPS On Apr 7, 2011 11:13 AM, gjs garyjamessi...@gmail.com wrote: -- 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] Best practice for multithreaded access/update to entity

2011-04-07 Thread Jeff Schnitzer
This video will help you immensely: http://sites.google.com/site/io/under-the-covers-of-the-google-app-engine-datastore You can skip to the end if you just want to grok the transactions, but the rest of it is extraordinarily helpful as well. You are correct, if you use transactions, you do not

Re: [appengine-java] Best practice for multithreaded access/update to entity

2011-04-07 Thread Jeff Schnitzer
This inspired me to add a little snippet to Objectify's BestPractices document: http://code.google.com/p/objectify-appengine/wiki/BestPractices#Use_Pythonic_Transactions Basically, to run an automatically repeated transaction that updates a (non-sharded to make the example simple) counter, I

[appengine-java] Detecting orphaned blobs in the Blobstore

2011-04-07 Thread lorenoolive...@gmail.com
Hi there. One of the features of my application requires the upload of image files along with other data in a form. That is, my entity is composed of both some fileds (text, currency, dates, etc) and an image file. As far as I could see, to deal with the blob store service is a two phase

[appengine-java] Unable to delete entities

2011-04-07 Thread Ben
Hello, I have a strange problem in the app engine data viewer (admin tools). I have entities in my app that have an email property, but the value of email is ''... blank. This is apparently invalid, as when I browse all entities with the email property, I get an error. I then try to query:

[appengine-java] Deployment Problems Today

2011-04-07 Thread RDS
Anyone else having deployment problems today? Unable to update: java.io.IOException: Error posting to URL: https://appengine.google.com/api/appversion/clonefiles?app_id=smart-call-trackerversion=4; 500 Internal Server Error htmlhead meta http-equiv=content-type content=text/html;charset=utf-8

Re: [appengine-java] Best practice for multithreaded access/update to entity

2011-04-07 Thread Peter Backx
Perfect, exactly the info I needed! Thanks a lot Jeff. Peter -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: eclipse shows error in .jsp but tutorial project runs

2011-04-07 Thread Thoob Vaj
@IKai what was your fix for this guestbook.jsp error? I get a red x over the file name itself, but don't see a red square to indicate what the error is. I'm able to run it locally, but when I try to upload it following the last steps in the tutorial Eclipse throws an error: Unable to update:

[appengine-java] Re: Unable to delete entities

2011-04-07 Thread Didier Durand
Hi, You should try querying them all (so that you don't have to create an invalid query) via a Java program and then check the value of the property once the object is instantiated in order to issue a delete if the prop value is wrong. You may have to do this via chained queued tasks if your

[appengine-java] Re: Detecting orphaned blobs in the Blobstore

2011-04-07 Thread Didier Durand
Hi, You get the key of your blob via BlobKey blobKey = blobs.get(myFile) (see http://code.google.com/appengine/docs/java/blobstore/overview.html) So, I would personally store all the myFile ids that I distributed from the server side and in an asynchronous queue task would do to see if the get()

Re: [google-appengine] API to read Logs inside my application

2011-04-07 Thread Robert Kluin
Hi Sérgio, I'm not sure if you'll be able to make this work or not, but you could look at the source of the Python SDK's appcfg tool. I'm not sure if you'll be able to get it to work or not.

[google-appengine] Re: Datastore Admin

2011-04-07 Thread Greg
I've figured out that it should be the second configuration - with the : on. After using firebug to see what was going on in the blank iframe, I saw service login requests. So I logged out and logged back in, and it started working. I'm guessing that the new accounts system is introducing some

Re: [google-appengine] Channel API ClientID error

2011-04-07 Thread Robert Kluin
Hi Ania, It sounds like you are trying to use the token returned by createChannel as the client id. Instead you should pass that token to the client, the client should use that token to open the channel. You should instead use the same string that you originally passed to createChannel. You

[google-appengine] Re: Please help me delete indexes

2011-04-07 Thread Shaun Budhram
Bumping. Can someone please help me clear out these indexes, or give tips on if it's possible to do it myself? I really need to fix this in order to progress on my project. Thanks, Shaun On Apr 2, 3:18 pm, Shaun Budhram shaunbudh...@gmail.com wrote: Hello, I recently spun off an app from my

Re: [google-appengine] Re: Please help me delete indexes

2011-04-07 Thread Robert Kluin
File a production issue: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue On Thu, Apr 7, 2011 at 02:42, Shaun Budhram shaunbudh...@gmail.com wrote: Bumping.  Can someone please help me clear out these indexes, or give tips on if it's possible to do it

Re: [google-appengine] Re: Task queue execution and Admin

2011-04-07 Thread Robert Kluin
This is a total guess, but what if you run your tasks from a subpath such as /tasks? So the url for that task would be /tasks/sendInvitation. Then secure the /tasks/* path. Perhaps another security constraint is defined that conflicts with your task. Robert On Wed, Apr 6, 2011 at

[google-appengine] Problem creating new application

2011-04-07 Thread Rex Johnson
I have one app published just fine. Now I want to publish another but the Admin Console takes me to that one-time registration page, which (well known) rejects my phone number as previously used. What to do? -- You received this message because you are subscribed to the Google Groups Google

[google-appengine] XMPP Service

2011-04-07 Thread Justin
I'm interested in using the XMPP Service for app to app communication. The main application will not be built on Google App Engine. Can the XMPP Service be used on its own without using the rest of App Engine? How many users can the XMPP Service support? Basically I'm looking for a hosted XMPP

[google-appengine] remote file download

2011-04-07 Thread fstof
Hi, I'm looking for a way that I can open a URLConnection to a file on the internet and serve it directly to the browser. something like this (normal servlet) String urlStr = req.getParameter(dl); URL url = new URL(urlStr);

Re: [google-appengine] Violation of Terms - A Google App Engine Is Trying to Defraud My Customers

2011-04-07 Thread László Török
Hi, Id be interested how can a 3rd party website listen to Your website traffic. Las sent from my mobile device On Apr 6, 2011 10:47 AM, Ben Munoz benjaminmunoz...@gmail.com wrote: There is a web site that is listening to my web site's traffic and trying to send my customers to their web

[google-appengine] Scheduled Downtime Woes

2011-04-07 Thread Kyle Mulka
Dear App Engine Team, No web application platform should have hour-long scheduled downtime periods in the middle of the day. Why does Google App Engine have these, and when will this no longer happen? And, while one response might be to switch to the high replication datastore, this should

Re: [google-appengine] Violation of Terms - A Google App Engine Is Trying to Defraud My Customers

2011-04-07 Thread Massimiliano
Yes, we are all thinking about that! 2011/4/6 László Török ltoro...@gmail.com Hi, Id be interested how can a 3rd party website listen to Your website traffic. Las sent from my mobile device On Apr 6, 2011 10:47 AM, Ben Munoz benjaminmunoz...@gmail.com wrote: There is a web site that

Re: [google-appengine] Scheduled Downtime Woes

2011-04-07 Thread László Török
Hi Kyle, GAE is a global service. Terms like in the middle of the day are quite dependent on where you are on the globe. That being said, if Google is using distributed data centers around the globe (if think they should as AWS), they should consider scheduling they down-times in such a way that

Re: [google-appengine] remote file download

2011-04-07 Thread Phil Young
Why don't you just redirect them to the file and let the hosting server serve it directly? i.e. self.redirect(urlStr) Phil On 6 April 2011 14:47, fstof frans.stofb...@gmail.com wrote: Hi, I'm looking for a way that I can open a URLConnection to a file on the internet and serve it directly to

Re: [google-appengine] Re: CSV in Appengine!

2011-04-07 Thread Phil Young
I think he's already got the data he want, just needs to extract the individual fields from the CSV data. The split function will be a simple way to achieve this. e.g. strArray = strInputLine.split(',') strPlace = strArray[0] strXcoord = strArray[1] etc. HTH Phil On 6 April 2011 18:13, Barry

Re: [google-appengine] Re: SDK 1.4.3 has been released!

2011-04-07 Thread Ikai Lan (Google)
Wow, thanks for the feedback. Does anyone here have a negative experience with thread-safe? I'm asking because we had received some feedback that this resulted in poorer performance. We don't believe this should be the case at all and want to track down if and why this happens. One huge benefit

Re: [google-appengine] Scheduled Downtime Woes

2011-04-07 Thread Simon Knott
Hi, As Las has said, it's a global service - the middle of the day downtime for you was early morning downtime for me! I guess it would be better if the scheduled downtime was staggered, so that it impacted a different set of applications each time, but I'm guessing Google are constrained

Re: [google-appengine] Re: SDK 1.4.3 has been released!

2011-04-07 Thread Simon Knott
Hi, It all appears very good so far from my experience - I haven't personally noticed any drop-off in performance, only a massive decrease in the number of instances spun-up and therefore a large drop-off of warm-up requests. A big win! Cheers, Simon -- You received this message because

[google-appengine] Google App Engine facebook community page

2011-04-07 Thread mova77
Hi everybody! I'm happy to announce the brand new Google App Engine community page for facebook addicted dudes! :) http://on.fb.me/fb-gae Enjoy it! mova77 -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email

Re: [google-appengine] Scheduled Downtime Woes

2011-04-07 Thread László Török
2011/4/7 Simon Knott knott.si...@gmail.com Hi, As Las has said, it's a global service - the middle of the day downtime for you was early morning downtime for me! I guess it would be better if the scheduled downtime was staggered, so that it impacted a different set of applications each

Re: [google-appengine] Scheduled Downtime Woes

2011-04-07 Thread Simon Knott
On Thursday, April 7, 2011 9:41:55 AM UTC+1, Las wrote: 2011/4/7 Simon Knott knott...@gmail.com Hi, As Las has said, it's a global service - the middle of the day downtime for you was early morning downtime for me! I guess it would be better if the scheduled downtime was staggered,

[google-appengine] dev_appserver.py datastore in Python SDK 1.4.3

2011-04-07 Thread Justin
Hi, I have an app which uses the traditional [non-sql] datastore. I've just migrated from 1.4.2 to 1.4.3 and noticed the following info message on dev_appserver.py startup rdbms_sqlite.py:58] Connecting to SQLite database '' with file '/tmp/ dev_appserver.rdbms' rdbms_sqlite.py seems to be a

[google-appengine] Datastore admin stuck

2011-04-07 Thread Greg
Hi - I'm deleting all entities from a new app using the datastore admin page. It has been stuck with a status of Active (9 steps completed, 5 active) for several hours now. Can someone from Google please reset it, or tell me what I need to do to reset it? Cheers Greg. -- You received this

[google-appengine] Re: queue.xml does not validate against .xsd

2011-04-07 Thread nischalshetty
Thanks! It helped me. -N On Mar 17, 10:25 am, Christopher Hilla christopher.hi...@gmail.com wrote: I found adding the total-storage-limit element without newlines resolved this issue for me. For example: queue-entries   total-storage-limit50M/total-storage-limit   queue    ... may

[google-appengine] Blocked in China?

2011-04-07 Thread Mikko O
Hi, Our friends in China have problems to access *.appspot.com domains. Is this temporary problem or does China tend to ban Google stuff with a big hand? Also Google Groups seem to be unreachable from the location. -- You received this message because you are subscribed to the Google Groups

Re: [google-appengine] Blocked in China?

2011-04-07 Thread Barry Hunter
does China tend to ban Google stuff with a big hand? Yes. They can't block one (or few) specific applications, so end up blocking every application. -- 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: remote file download

2011-04-07 Thread fstof
I want the app to work like a kind of proxy. The whole point is for the client not to actually hit the remote site as I say, I'm quite happy to make this a 2 phase thing where: Phase 1: With the first request to pull the file from the remote server and store it via BlobStore (maybe display a blob

Re: [google-appengine] Re: CSV in Appengine!

2011-04-07 Thread Ikai Lan (Google)
Python has a CSV reader that does things like escape characters: http://docs.python.org/library/csv.html Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Thu,

Re: [google-appengine] Re: CSV in Appengine!

2011-04-07 Thread Massimiliano
Thanks Ikai, but the problem is to obtain the city and the country from the coordinates. Max 2011/4/7 Ikai Lan (Google) ika...@google.com Python has a CSV reader that does things like escape characters: http://docs.python.org/library/csv.html Ikai Lan Developer Programs Engineer, Google

Re: [google-appengine] Re: CSV in Appengine!

2011-04-07 Thread Ross M Karchner
As long as you're only interested in *displaying* the city, and not querying on it, one sneaky solution would be to do the lookup in Javascript, using the clients processing power and not your App, using an API like SimpleGeo's or Google's reverse geocoder:

[google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Geoffrey Spear
On Apr 7, 4:41 am, László Török ltoro...@gmail.com wrote: This is a good idea and my gut feeling is telling me it should be possible. You could basically specify your apps geographical availability (say by continent) and Google could group apps onto a set of nodes using these hints.

[google-appengine] Getting a lot of commit failures

2011-04-07 Thread nischalshetty
org.datanucleus.transaction.Transaction commit: Operation commit failed on resource: org.datanucleus.store.appengine.DatastoreXAResource@153170a, error code UNKNOWN and transaction: [DataNucleus Transaction, ID=Xid= I'm getting a lot of the above error in my logs. I'm on the master/ slave

Re: [google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread László Török
On Apr 7, 4:41 am, László Török ltoro...@gmail.com wrote: This is a good idea and my gut feeling is telling me it should be possible. You could basically specify your apps geographical availability (say by continent) and Google could group apps onto a set of nodes using these hints.

Re: [google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Ikai Lan (Google)
Yes, we'd love to do that at some point in the future - pick a general area where your apps would exist, and we'd run them from those nodes. I suspect that if we ever did this feature and you wanted to move to a new cluster, that you would have to run the datastore migration tool (similar to what

Re: [google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Simon Knott
The next scheduled maintenance period is in ~2 weeks time apparently - Wednesday, 2011 April 20, 5pm (1700) PDT/ 12m () Thursday, 2011 April 21 GMT (from https://groups.google.com/d/msg/google-appengine-downtime-notify/sRTOF2ErN1E/_NU4r-DsUPYJ) -- You received this message because you

Re: [google-appengine] Re: SDK 1.4.3 has been released!

2011-04-07 Thread Robert Kluin
Hey Ikai, Thanks for the explanation about the pending queue, I think that may be the most information I've ever seen about how that process works. It would be great to have that information included somewhere in the docs. At the minimum it can help understand certain behaviors we see

[google-appengine] Re: Google App Engine facebook community page

2011-04-07 Thread Claude Vedovini
Is that page endorsed by the GAE team? I think it should be clearly stated, on the page info, who manages it! On Apr 7, 10:25 am, mova77 marco.vana...@gmail.com wrote: Hi everybody! I'm happy to announce the brand new Google App Engine community page for facebook addicted dudes! :)

RE: [google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Brandon Wirtz
If you are actively developing, moving to HR is definitely the way to go. Everyone talks about the cost, but most of that is on the storage side of the house, which in most apps shouldn't be the majority of your bill. (there are exceptions). Across my sets of applications we are now serving 100

Re: [google-appengine] Re: How do I change to the High Replication datastore and keep my app id?

2011-04-07 Thread Jeff Schnitzer
Oh, right. Duh. Carry on :) Jeff On Wed, Apr 6, 2011 at 4:18 PM, Greg g.fawc...@gmail.com wrote: On Apr 7, 11:03 am, Jeff Schnitzer j...@infohazard.org wrote: How did you get appids less than 6 characters? I'm guessing 'X' and 'Y' are replaced with longer words. -- You received this

RE: [google-appengine] Re: How do I change to the High Replication datastore and keep my app id?

2011-04-07 Thread Brandon Wirtz
Or he was an early adopter, did you see the thread a few days back with an app named d. Even the Google Guys didn't believe it. -Original Message- From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Jeff Schnitzer Sent: Thursday, April 07, 2011

Re: [google-appengine] Re: SDK 1.4.3 has been released!

2011-04-07 Thread Sérgio Lopes
Hi Ikai! I didn't notice any performance issue here. However I'm experiencing a lot of errors lately during instance startup. I've AlwaysOn and the Instances panel clearly shows that 2 instances are always ok, with a large Age. But one of those instances is constantly being shut down and

Re: [google-appengine] Re: SDK 1.4.3 has been released!

2011-04-07 Thread Andrei Cosmin Fifiiţă
Are you using Master/Slave or HR? 2011/4/7 Sérgio Lopes slo...@gmail.com: Hi Ikai! I didn't notice any performance issue here. However I'm experiencing a lot of errors lately during instance startup. I've AlwaysOn and the Instances panel clearly shows that 2 instances are always ok, with a

Re: [google-appengine] Re: SDK 1.4.3 has been released!

2011-04-07 Thread Sérgio Lopes
Master/Slave. But the exceptions don't seem to be related do datastore. Most errors are with /_ah/warmup requests, and my startup process doesn't touch the datastore. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group,

Re: [google-appengine] Channel API ClientID error

2011-04-07 Thread Ania
Thanks!I was indeed using token instead of clientId. -- 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@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: Google App Engine facebook community page

2011-04-07 Thread Kaan Soral
is it google appengine community page on facebook or google appengine facebook community page, is it a community for people who use appengine for facebook, its a bit misleading this way too On Apr 7, 8:06 pm, Claude Vedovini cla...@vedovini.net wrote: Is that page endorsed by the GAE team? I

Re: [google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Robert Kluin
Well, I'd say the 3x increase in CPU time is a pretty important factor. Probably a much more important factor than the storage cost increase. On Thu, Apr 7, 2011 at 13:10, Brandon Wirtz drak...@digerat.com wrote: If you are actively developing, moving to HR is definitely the way to go.

[google-appengine] Re: How to block Google App Engine?

2011-04-07 Thread Kaan Soral
lol On Apr 7, 8:46 am, Sudhir sudhi...@gmail.com wrote: Yeah, I think this is trolling. I think the easiest and most efficient way to solve the problems he's facing is to block all IPs that match the 0.0.0.0 mask, and also blacklist all user agents that have  length 0. Should work like a

[google-appengine] Re: Happy Birthday Google App Engine !!

2011-04-07 Thread Kaan Soral
+1 On Apr 7, 7:17 am, Rajkumar Radhakrishnan r.rajku...@gmail.com wrote: Hi, It is now 3 years since Google App Engine was first released. *Happy Birthday Google App Engine !!* A warm thanks to folks at Google, for continuing to make Google App Engine better and for your support in the

[google-appengine] Re: Query.count(1) vs. Query.get()

2011-04-07 Thread Jordon Wii
Ah, thanks. You're also introducing a potential synchronization/concurrency issue. What do you mean? On Apr 6, 9:08 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Jordon, Calling .get() and checking if the result is None is more efficient. Calling count executes the query, and

RE: [google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Brandon Wirtz
I'll do a case study later, but we got rid of $3k a month of hosting from Atlas and replaced it with $.40 a day worth or Appengine on HR. -Original Message- From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Robert Kluin Sent: Thursday, April

Re: [google-appengine] How to read byte by byte from a Datastore Entity Object

2011-04-07 Thread Kayode Odeyemi
Here is my summary after series of trials 1. I can't use the Blobstore api because I'm using GWT for the view 2. From my understanding of the Fileservice API, it requires that I need to have gotten the bytes of the data before it can be written to the FileWriteChannel. One option is through the

Re: RE: [google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread vlad
Agree with Robert CPU 3x cost is definitely what gets most of us in the end. Although 0.45c/GB on storage side is expensive too. Also remember we are in an introductory pricing period according to initial HR announcement. Permanent pricing will be announced in summer 2011. -- You received

[google-appengine] Re: HItting query limit using Geocoding API from App Engine

2011-04-07 Thread nickmilon
IMHO a proxy will complicate things. What about if GAE team gets in touch with maps V3 team and explain to them the issue so may be they can rate limit all GAE originated appls by app id which is a very secure method since app id can't be hacked ? @Joe sorry my api isn't that useful in your case.

RE: [google-appengine] Re: HItting query limit using Geocoding API from App Engine

2011-04-07 Thread Brandon Wirtz
you get what you pay for I mean the GeoCoding API, not GAE. I think the more ideal scenario is GeoCoding and other Google API's should require registration and authentication. Similar to another thread about blocking all of GAE, in many cases GAE doesn't work with Free API's because of the IP

Re: [google-appengine] Urlfetch CSV data and storing in Datastore entity is consuming too much CPU and Deadline Exceed Errors

2011-04-07 Thread Nick Johnson (Google)
Hi Sarfaraz, If you need to perserve existing properties, you should write your own transaction function, and do all the work in there. get_or_insert is simply a convenience function for this: entity = cls.get(key_name) if not entity: entity = cls(key_name, **kwargs) entity.put() return

[google-appengine] HTTP Error 403: Forbidden

2011-04-07 Thread Ben
I've got tons of tasks stuck in my queues that are getting a HTTPError: HTTP Error 403: Forbidden error. Is anyone else getting these? I'm not seeing anything in the system status that is a problem. -- You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Being rate limited at twitter due to some rogue app on GAE, can u shift my app to different ip range?

2011-04-07 Thread nischalshetty
Hi, My app has been facing limit issues with the twitter API and under regular circumstances this should not have happened. I've been in talks with the twitter API team from the last 36 hours and they checked things on their end. They say that the most probable cause is some app on the same ip

[google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Kyle Mulka
On Apr 7, 10:20 am, Ikai Lan (Google) ika...@google.com wrote: Yes, we'd love to do that at some point in the future - pick a general area where your apps would exist, and we'd run them from those nodes. I suspect that if we ever did this feature and you wanted to move to a new cluster, that

[google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread Kyle Mulka
PS: I'm also worried about all the extra code I'm going to have to write to deal with the fact that the datastore may be inconsistant at times. On Apr 7, 9:50 pm, Kyle Mulka kyle.mu...@gmail.com wrote: On Apr 7, 10:20 am, Ikai Lan (Google) ika...@google.com wrote: Yes, we'd love to do that at

RE: [google-appengine] Being rate limited at twitter due to some rogue app on GAE, can u shift my app to different ip range?

2011-04-07 Thread Brandon Wirtz
Use a Proxy. -Original Message- From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of nischalshetty Sent: Thursday, April 07, 2011 6:34 PM To: Google App Engine Subject: [google-appengine] Being rate limited at twitter due to some rogue app on

[google-appengine] Re: Scheduled Downtime Woes

2011-04-07 Thread JH
Maintenance is nothing new. It has been around since day 1. Today we have a choice, so if you are that worried about maintenance use HR. Consistency can be dealt with by using ancestor queries. Also, remember a .get() will have Strong Consistency, only queries must have ancestors to have strong

Re: [google-appengine] Scheduled Downtime Woes

2011-04-07 Thread Will
I cannot agree more. Had I known this kind of downtime before, I would have not chosen GAE, at least not on MS datastore. Yes, I can switch to HR. Right now, my app costs about $2 a day, 1.99 is cpu charge. Plus, I need to create a new app, make the current datastore readonly, copy data over, do

  1   2   >