[google-appengine] Re: how to upgrade my sdk from 1.3.0 to 1.3.1 in eclipse

2010-02-19 Thread Seth
For some reason, I also continue to get this warning from my Eclipse. I have run the upgrade via the normal Eclipse software update, and it claims I have the latest 1.3.1 version. However, I still see the following notice when I start up the embedded server via Eclipse: **

[google-appengine] Re: how to upgrade my sdk from 1.3.0 to 1.3.1 in eclipse

2010-02-19 Thread Seth
Try manually uninstalling all your google plugins. If you are using Galileo (as it sounds like you are because you mentioned the 3.5 plugin repository), then you can use this link: http://eclipse.dzone.com/articles/ten-tips-installing-plugins which helps you uninstall plugins. Then, reinstall t

[google-appengine] Re: how to upgrade my sdk from 1.3.0 to 1.3.1 in eclipse

2010-02-19 Thread Seth
So I tried what I said, and I'm not in any better shape. I uninstalled all the google plugins, restarted, and then reinstalled the google plugins (gwt, appengine). Now when I try to start my webapp from within Eclipse, I get this error: Error occurred during initialization of VM agent library fa

Re: [google-appengine] GAE/J Low Level API Transaction management.

2010-02-19 Thread Patrick Twohig
I had that suspicion, but, I wasn't 100% sure. I wonder if it's an issue that shows up in production or just local datastore. Pat. On Thu, Feb 18, 2010 at 1:34 PM, Jeff Schnitzer wrote: > I just created a unit test for this case (there wasn't one before) and > sure enough, it fails. Looks lik

[google-appengine] indexes in building state for quite a while ...

2010-02-19 Thread Prawyn
Hi, I updated set of indexes and it was in building state for more than one and half days now. I tried to use vacuum_indexes but it didn't solve the problem.. Any help guys.. My app id is os247test -- You received this message because you are subscribed to the Google Groups "Google App Engine"

[google-appengine] Re: Google maps usage

2010-02-19 Thread nickmilon
The only thing you can do to address your problem is through some kind of ajax, which is quite feasible if you have to plot your values once a minute or so. Happy coding ;) Nick On Feb 18, 12:25 pm, Avis developer wrote: > I need to develop a application which uses a GPS mobile to get the > lat

[google-appengine] Re: pygooglechart

2010-02-19 Thread nickmilon
Sure you can after installing the library and including the files in your application provided this library does not depend on anything but python. Also since data passing mechanism for google visualization api is quite easy to implement in python you can avoid the burden of one more import and wri

[google-appengine] Error 500 on Datastore Viewer

2010-02-19 Thread Stefano Ciccarelli
In the last couple of hours every time I try to access the Datastore Viewer or the Datastore Statistics I get always the error 500. Someone could help me? Thx. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send ema

Re: [google-appengine] Re: pygooglechart

2010-02-19 Thread Massimiliano
"Sure you can after installing the library" on my PC? 2010/2/19 nickmilon > Sure you can after installing the library and including the files in > your application provided this library does not depend on anything but > python. > Also since data passing mechanism for google visualization api is

[google-appengine] Re: Strange traffic Charts after the last maintenance

2010-02-19 Thread matic
I can also confirm that the problem is fixed. On Feb 19, 4:12 am, gwstuff wrote: > OK. The request chat in my dashboard just spiked into the normal > range:http://corewars.org/spike.png. Looks like this problem is > fixed. > > On Feb 18, 8:51 pm, gwstuff wrote: > > > > > Confirmed. My request/se

[google-appengine] Model class of a Query instance?

2010-02-19 Thread Nickolas Daskalou
Is there an "official" way to get the Model class from a Query instance? I had a look through the online docs and couldn't find anything. In the SDK code however, the Model class of a Query instance can be retrieved from the _model_class attribute of the Query instance, eg: q = MyModel.all()

Re: [google-appengine] Model class of a Query instance?

2010-02-19 Thread Nick Johnson (Google)
Hi Nickolas, There's no public interface for this. Why do you need to do it? -Nick Johnson On Fri, Feb 19, 2010 at 11:28 AM, Nickolas Daskalou wrote: > Is there an "official" way to get the Model class from a Query instance? I > had a look through the online docs and couldn't find anything. > >

Re: [google-appengine] Re: Question on key design: Datastore errors and tablets

2010-02-19 Thread Nick Johnson (Google)
On Fri, Feb 19, 2010 at 12:28 AM, peterk wrote: > What about keynames like: > > counter_standard_dbf > counter_standard_clo > > or would something like > > dbfo01la_counter_standard > clo091b_counter_standard > > work better? > > I'm thinking of cases where you may use keynames that can in some w

[google-appengine] Re: MMS to Email Gateway failures

2010-02-19 Thread A1programmer
This is still not working. I may also point out that when I do get emails that are sent from app engine, to me phone as SMS, they are from a huge string, like so: 3- yf9swuod0qgjsotigskxxoloi.iusjkxxoiq.yosvyutmsgor@apphosting.bounces.google.com Therefore, I think this is something that Goog

[google-appengine] Re: Question on key design: Datastore errors and tablets

2010-02-19 Thread peterk
Thanks Nick, I understand now. So I guess the easiest thing to do is to have a random component in your keynames...at least for apps I'm considering I don't think I'd have any other way to reasonably ensure the range of keynames in a given (batch) update were well distributed. On Feb 19, 11:58 am,

Re: [google-appengine] Re: Question on key design: Datastore errors and tablets

2010-02-19 Thread Nick Johnson (Google)
Hi Peter, On Fri, Feb 19, 2010 at 1:04 PM, peterk wrote: > Thanks Nick, I understand now. So I guess the easiest thing to do is > to have a random component in your keynames...at least for apps I'm > considering I don't think I'd have any other way to reasonably ensure > the range of keynames in

[google-appengine] Error while deleting a version

2010-02-19 Thread Satya
My App Id is teluguobserver Presently I have 2 versions of code deployed. Version 2 and 3. When I am trying to delete the version 2, I am getting server error without any details. Server Error A server error has occurred. Please help me in deleting this version. -- You received this message be

[google-appengine] Re: Question on key design: Datastore errors and tablets

2010-02-19 Thread peterk
Say I did a batch update of 500 entities all of the same model...could this breach the '100s of qps' requirement that could lead to tablets getting too hot? I've seen benches (http://blog.dantup.com/pi/ bm_put_perf.png) that show 500 entities being batch put in ~4s which suggests an average put rat

Re: [google-appengine] Model class of a Query instance?

2010-02-19 Thread Nickolas Daskalou
Hi Nick, I have something like this: class Foo(db.Model): name = db.StringProperty() ... class Bar(db.Model): foo = db.ReferenceProperty(Foo, collection_name='bars') foo_name = db.StringProperty() class Baz(db.Model): foo = db.ReferenceProperty(Foo, collection_name='bazs') foo_name

Re: [google-appengine] Problems with my AppEngine Account

2010-02-19 Thread Guido Kämper
Hi Ikai, i deaktivated the account in the meanwhile, but I decided to give it a further chance and re-registered today. But it's still the same: * I can create an application, but afterwards I don't see it in the apps list. eg. "exclamation-iphone" I already reset the IP address of my domai

[google-appengine] must i install Visual Studio for python ssl module?

2010-02-19 Thread saintthor
for ssl module, i downloaded ssl-1.15.tar.gz from http://pypi.python.org/pypi/ssl. but it is source, no exe file. i tried to install it, message as below. D:\Python25\ssl-1.15>setup.py install running install running build running build_py running build_ext building 'ssl._ssl2' extension error: P

Re: [google-appengine] Model class of a Query instance?

2010-02-19 Thread Nick Johnson (Google)
Hi Nickolas, On Fri, Feb 19, 2010 at 2:14 PM, Nickolas Daskalou wrote: > Hi Nick, > > I have something like this: > > > class Foo(db.Model): > name = db.StringProperty() > ... > > class Bar(db.Model): > foo = db.ReferenceProperty(Foo, collection_name='bars') > foo_name = db.StringProperty

Re: [google-appengine] Re: Question on key design: Datastore errors and tablets

2010-02-19 Thread Nick Johnson (Google)
Hi peterk, On Fri, Feb 19, 2010 at 2:02 PM, peterk wrote: > Say I did a batch update of 500 entities all of the same model...could > this breach the '100s of qps' requirement that could lead to tablets > getting too hot? I've seen benches (http://blog.dantup.com/pi/ > bm_put_perf.png) that show

[google-appengine] Local datastore is slow once loaded up, any suggestions?

2010-02-19 Thread obvious
I've loaded up a local datastore with 40,000+ entries. Unfortunately, recalling any data from it at all is very slow on my fairly new Macbook Pro. Any suggestions on speeding things up, short of buying a new piece of hardware? -- You received this message because you are subscribed to the Googl

Re: [google-appengine] Local datastore is slow once loaded up, any suggestions?

2010-02-19 Thread Nick Johnson (Google)
Hi, Unfortunately, the App Engine SDK datastore isn't really designed for testing with such a large amount of data. You should try testing with a much smaller dataset, if that's remotely possible. -Nick Johnson On Fri, Feb 19, 2010 at 5:19 PM, obvious wrote: > I've loaded up a local datastore

Re: [google-appengine] Re: Lucene/Compass

2010-02-19 Thread Patrick Twohig
I run it in my app that's on the App Engine right now, app's in "staging" so I have it blocked off to people not in my domain. Shay Banon has a video clip of it running on his blog, and then I submitted a patch to the compass project that prevents transactions from butting heads when writing the i

Re: [google-appengine] Protobuf Version on GAE

2010-02-19 Thread Nick Johnson (Google)
Hi Davide, The Protocol Buffers we use on App Engine are built using a different version of the Protocol Buffer library to the one that was open sourced. If you want to use Protocol Buffers yourself, you'll need to include the library with your app. -Nick Johnson On Thu, Feb 18, 2010 at 2:44 PM

Re: [google-appengine] implementing asynchronous http in java

2010-02-19 Thread Conor Power
apologies if I'm a little vague in my reply but I remember receiving something similar when I first started using the URLFetchService and I think it was related to the fact that I had imported the incorrect classes for HTTPRequest or header or something like like. I think I just chose the first one

[google-appengine] Datastore Viewer gql query problem

2010-02-19 Thread Stefano
Hi everybody, frow a few days a simply gql query such as this one will throw an exception. SELECT * FROM Station order by synced Synced it's just a not null timestamp field. Since it's happening in the admin panel I don't have any log explaining why it's not working anymore. https://appengine.g

[google-appengine] problem with working on google app engine

2010-02-19 Thread Bhavana
i have installed my google app engine and did a program of hello world,but while i am making changes on this during run time no changes is reflected and i am getting the same output as previous..please help me out -- You received this message because you are subscribed to the Google Groups "Goog

[google-appengine] Documentation contribution

2010-02-19 Thread Alexander Orlov
I'd like to add an important detail to http://code.google.com/appengine/docs/java/config/cron.html How can I do it? I haven't found any accessible SVN/Wiki version of this page. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to th

[google-appengine] Datastore Statistics page not updating (over 3 days now)

2010-02-19 Thread Eli Jones
Is there a backlog on getting Datastore Statistics calculated? When I go to the "Datastore Statistics" page for my application, it indicates that "Last Updated" = 3 days, 3:35:42 ago Which is accurate since there are no stats for entities or Models created since then. Is anyone else having this

[google-appengine] Re: Problems with my AppEngine Account

2010-02-19 Thread Wooble
Try logging in at http://appengine.google.com/a/spreadshirt.net On Feb 19, 10:03 am, Guido Kämper wrote: > Hi Ikai, > > i deaktivated the account in the meanwhile, but I decided to give it a   > further chance and re-registered today. But it's still the same: > * I can create an application, but

[google-appengine] Re: first app upload - blank page

2010-02-19 Thread ameyp
I'm having the same issue. I have three different scripts in the same file, one which is mapped to "/", one to "/blog" and one to "/blog/ admin/" My app.yaml has the following handlers: handlers: - url: /static static_dir: static - url: /favicon.ico static_files: static/favicon.ico upload:

[google-appengine] Google Data Store

2010-02-19 Thread Prasad
hi I have just started to learn Google datastore. I am just doin one small application as an experiment and tht needs a database and for this reason I am using datastore. I just have a fundamental doubt. Does for small application and few queries will need to pay. I mean is it free and if yes how m

[google-appengine] Google Data Store

2010-02-19 Thread Prasad
hi I have just started to learn Google datastore. I am just doin one small application as an experiment and tht needs a database and for this reason I am using datastore. I just have a fundamental doubt. Does for small application and few queries will need to pay. I mean is it free and if yes how m

[google-appengine] Re: Google Data Store

2010-02-19 Thread Wooble
On Feb 19, 1:35 pm, Prasad wrote: > hi > I have just started to learn Google datastore. I am just doin one > small application as an experiment and tht needs a database and for > this reason I am using datastore. I just have a fundamental doubt. > Does for small application and few queries will

Re: [google-appengine] Documentation contribution

2010-02-19 Thread Ikai L (Google)
What's the detail? Create a new issue in our issues tracker and post the link: http://code.google.com/p/googleappengine/issues/list On Thu, Feb 18, 2010 at 10:14 PM, Alexander Orlov wrote: > I'd like to add an important detail to > http://code.google.com/appengine/docs/java/config/cron.html > H

[google-appengine] Re: pygooglechart

2010-02-19 Thread nickmilon
Yes in your PC - follow the instructions of the library for that. Later on I will take a look at the library my self. On Feb 19, 1:09 pm, Massimiliano wrote: > "Sure you can after installing the library" on my PC? > > 2010/2/19 nickmilon > > > > > > > Sure you can after installing the library a

Re: [google-appengine] must i install Visual Studio for python ssl module?

2010-02-19 Thread Eli Jones
You could download the free version of Visual Studio and then try to compile it with that.. but... you'd be on your own figuring out how to get it to compile after installing Visual Studio. On Fri, Feb 19, 2010 at 10:39 AM, saintthor wrote: > for ssl module, i downloaded ssl-1.15.tar.gz from > h

[google-appengine] Re: implementing asynchronous http in java

2010-02-19 Thread davidnelson
Thanks Conor, I tried a "brute force" approach of just importing the whole namespace: import com.google.appengine.api.urlfetch.*; Still get the error :-( Thanks, David On Feb 19, 7:33 am, Conor Power wrote: > apologies if I'm a little vague in my reply but I remember receiving > something sim

[google-appengine] Re: implementing asynchronous http in java

2010-02-19 Thread davidnelson
guess I'll post on stackoverflow... On Feb 19, 7:33 am, Conor Power wrote: > apologies if I'm a little vague in my reply but I remember receiving > something similar when I first started using the URLFetchService and I think > it was related to the fact that I had imported the incorrect classes f

[google-appengine] Re: implementing asynchronous http in java

2010-02-19 Thread davidnelson
weird, I get the same error even when I pin objects and call urlfetch synchronously: url = new URL(urlString); request = new HTTPRequest(url); request.addHeader(userAgentHeader);

Re: [google-appengine] Re: implementing asynchronous http in java

2010-02-19 Thread Eli Jones
I don't code in Java.. but my guess is you're making a silly mistake in there somewhere.. Copy pasting some other person's posted code from the Java AppEngine group I see it done this way: URL url = new URL(urlStr); URLFetchService urlFetchService = URLFetchServiceFactory.getURLFetchService(); HT

[google-appengine] Re: pygooglechart

2010-02-19 Thread nickmilon
I have taken a look in the library. It seems it imports the following python packages import os import urllib import math import random import re Now I am not sure it will work on GAE since as far as I know math is a wraper around c math and this is no no in GAE. Hope some body else who is more

[google-appengine] Re: implementing asynchronous http in java

2010-02-19 Thread davidnelson
At this point I'm feeling not so smart :-( I can't even get synchronous urlfetch to work via the low level api: URL url = new URL("http://www.google.com";); URLFetchService urlFetchService = URLFetchSe

[google-appengine] Re: implementing asynchronous http in java

2010-02-19 Thread davidnelson
more info, I tried using the app engine version 1.3.0 and that's when I get nullpointerexceptions. switching back to 1.3.1 and I get the first exception I initially posted, sync or async. On Feb 19, 1:37 pm, Eli Jones wrote: > I don't code in Java.. but my guess is you're making a silly mistake

[google-appengine] Re: implementing asynchronous http in java

2010-02-19 Thread davidnelson
problem solved. I was referencing the app engine/gwt project from a console app. apparently you can't do this. when I debug it as a google app project, it works. hope this minor pain and lesson will help someone else someday. thanks, David On Feb 19, 2:13 pm, davidnelson wrote: > more info,

[google-appengine] HELP! Stored Data Quota Weirdness- My Site is Down!

2010-02-19 Thread jay
Yesterday after I updated our quotas though Google checkout because we were regularly getting close to some of our limits. About 1am last night, my site started throwing "OverQuotaError: The API call datastore_v3.Put() required more quota than is available." This morning I quickly jumped online

[google-appengine] Re: pygooglechart

2010-02-19 Thread Sylvain
I think it's easier not to use a lib for Google Chart. Each time I tried to use one, I spent a lot of time to understand / debug it. There is a good example how to use GChart from scratch here : http://gpxplot.googlecode.com/svn/trunk/gpxplot.py And there is a perfect func to generate extended da

[google-appengine] Re: HELP! Stored Data Quota Weirdness- My Site is Down!

2010-02-19 Thread jay
Also note that the dashboard reports total stored data in the database as 1GB when there should be about 6 gig of data. On Feb 20, 9:54 am, jay wrote: > Yesterday after I updated our quotas though Google checkout because we > were regularly getting close to some of our limits. > > About 1am last

Re: [google-appengine] Re: HELP! Stored Data Quota Weirdness- My Site is Down!

2010-02-19 Thread Eli Jones
Well, the screencapture you posted is just reflecting that.. 1 GB out of 400 GB is much less than 1%.. so.. it just shows 0% usage (or that is my guess). Though, I have bee seeing wierd behaviour with the Total Stored Data number.. like you, mine was showing less usage that was there. (It showed

[google-appengine] Re: HELP! Stored Data Quota Weirdness- My Site is Down!

2010-02-19 Thread jay
is it possible that I'm experiencing the same problem as these people here.. http://groups.google.com/group/google-appengine/browse_thread/thread/d9553ff5a42ce122/e9cc07c63aedb65c?lnk=gst&q=Over+Quota+Error#e9cc07c63aedb65c On Feb 20, 10:04 am, jay wrote: > Also note that the dashboard reports t

[google-appengine] Application Logs

2010-02-19 Thread Sandeep
My output from System.out is not showing under "INFO" in the Admin Console Logs. Has anyone else faced similar issue? -- 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] Re: HELP! Stored Data Quota Weirdness- My Site is Down!

2010-02-19 Thread jay
hah, oh yeah I was confused because it wan't reporting any of my data in the datastore. On Feb 20, 10:12 am, Eli Jones wrote: > Well, the screencapture you posted is just reflecting that.. 1 GB out of 400 > GB is much less than 1%.. so.. it just shows 0% usage (or that is my guess). > > Though,

[google-appengine] Re: Datastore Statistics page not updating (over 3 days now)

2010-02-19 Thread Eli Jones
Hmm.. I suppose I could have hit the 1MB limit for stats that is mentioned here: http://code.google.com/appengine/kb/adminconsole.html#datastore_stats Is there a rule of thumb for estimating stats usage? I'm at .3 GB of Datas

[google-appengine] Re: Datastore Statistics page not updating (over 3 days now)

2010-02-19 Thread Eli Jones
Hooray, the magic appengine elves have updated my stats. Thank you App Engine Infrastructure. On Fri, Feb 19, 2010 at 7:16 PM, Eli Jones wrote: > Hmm.. I suppose I could have hit the 1MB limit for stats that is mentioned > here: > > http://code.google.com/appengine/kb/adminconsole.html#datastor

Re: [google-appengine] Local datastore is slow once loaded up, any suggestions?

2010-02-19 Thread Eli Jones
I noticed this issue as well when working from a bulkloaded backup up my live datastore (around the same number of entities). For me, it seems that db.delete() takes forever.. db.puts() seem tolerable. (I'm on Windows). I see that Nick is indicating that this may just be the way it is. It'd be

Re: [google-appengine] Application Logs

2010-02-19 Thread Ikai L (Google)
Is there a reason you're using this mechanism instead of using the Logger? http://code.google.com/appengine/articles/logging.html In general, you shouldn't rely on having access to STDOUT in production. On Fri, Feb 19, 2010 at 3:57 PM, Sand

[google-appengine] Frustrating tutorials

2010-02-19 Thread Manny
several of the tutorials leave out steps that leave the reader very very confused as to why the heck they dont work. Mainly this-> http://code.google.com/appengine/docs/java/datastore/creatinggettinganddeletingdata.html fails to adress in anyway the difficulties of using Key or KeyFactory. The err

Re: [google-appengine] Local datastore is slow once loaded up, any suggestions?

2010-02-19 Thread Eli Jones
I did some preliminary testing on this.. mainly, I used the cachepy.py from here: http://appengine-cookbook.appspot.com/recipe/cachepy-faster-than-memcache-and-unlimited-quota/ I created a test page..

Re: [google-appengine] Model class of a Query instance?

2010-02-19 Thread Nickolas Daskalou
Thanks for your advice Nick. My actual app is a bit more complex than the example I gave. I'll explain more in my response to your comments below. Will this be an all-or-nothing proposition? Eg, if the put of 'foo' changed > the foo_name, they'll all need updating, otherwise none of them will? In

[google-appengine] GAE cold start time still too long

2010-02-19 Thread Anders
This has been discussed before but the problem still remains. It seems that GAE is no longer in a preview release version (as far as I can see). Having a cold start initiation time of 10 seconds is a major bottleneck. Imagine if it took 10 seconds to load for example the Google Search index page i

[google-appengine] wish: nestable/embeddable entities

2010-02-19 Thread notcourage
Nestable/embeddable entities would be used to build graphs of entities which are serialized inside a single entity. Protocol buffers support nesting & repeating but not arbitrary graphs. Possible API additions: * constructor: new Model(nest=parent) * property type: NestedReferenceProperty; support