[google-appengine] Re: Subversion not latest?

2009-04-25 Thread cz
Hi Jeff, This seems to happen on pretty much every release. I sort of figured the repository would always have the latest and the zip/installer download would, if anything, trail it slightly. Otherwise what is the point of exposing the svn repository if it's out of date with respect to the actual

[google-appengine] Re: I've reached my quota, only I have this great new name for my app

2009-04-25 Thread Dieter Krachtus
Hit me with an increase. +20 just to be safe ;) On Apr 24, 2:04 pm, "Jeff S (Google)" wrote: > Hi Ted, > > I've increased the max apps count to 20 for your account. Rather than just > creating a new account we'd prefer if people ask for an increase :-) > > Happy coding, > > Jeff > > On Fri, Apr

[google-appengine] Re: Get records keys from the datastore

2009-04-25 Thread YahavT
Thanks! It helped! for some reson it didn't work before... On 24 אפריל, 20:14, 风笑雪 wrote: > query_results = my_query.get()key = query_results.key() > > 2009/4/24 YahavT > > > > > > > Hi, > > > I want to get from the datastore a record i added plus it's key. > > How can I do it? > > > If I just

[google-appengine] Re: I've reached my quota, only I have this great new name for my app

2009-04-25 Thread Sri
Hello, I would certainly love an increase... Do I need fill anything or is this enough? Another 20 would be great here too! cheers Sri On Apr 25, 4:04 am, "Jeff S (Google)" wrote: > Hi Ted, > > I've increased the max apps count to 20 for your account. Rather than just > creating a new acc

[google-appengine] Completely clearing the datastore

2009-04-25 Thread Sri
Hi, Is there a way to completely erase the production data store? Currently I am using a script like this via the remote api: def delete_all_objects(obj_class): num_del = 300 while True: try: objs = obj_class.all().fetch(1000) num_objs = len(objs)

[google-appengine] Working with an ms access (or it's OpenOffice alternative) files?

2009-04-25 Thread deostroll
Hi, Is there any way I can work with microsoft access files from within the dev_appserver engine? What would I need to make ms access work? If there is an OpenOffice alternative to ms access, what program is that I should be using? I am mainly going to be working with the python framework. So ho

[google-appengine] Re: Completely clearing the datastore

2009-04-25 Thread 'Αλκης Ευλογημένος
Doing it over the remote api means you are going to transfer all your data + transmission overhead over the wire. You are probably better off doing something like this on the server side through an admin protected handler. Also if you happen to know the keys of your data (you used key_name) your d

[google-appengine] Re: I've reached my quota, only I have this great new name for my app

2009-04-25 Thread fel
I join the freeloaders train if at all possible please increase to 11 (just so if I have more than 10, and get a really cool name then I can have room for that too!) thanks in advance On Apr 25, 7:36 am, Sri wrote: > Hello, > >    I would certainly love an increase...  Do I need fill anything o

[google-appengine] Polymodels and datastore layout - one big table?

2009-04-25 Thread Tom Howe
I'm trying to take advantage of polymodel inheritance and curious to get opinion of pro/cons of using a datastore model that is essentially one big table My datastore layout is starting to look like this: class BaseModel(polymodel.PolyModel, search.SearchableModel): created = models.Datetim

[google-appengine] large file upload error

2009-04-25 Thread ksjun
With following conditions, a connection is closed immediately and 400 error is occured. An application can't receive this request at all. - The application has a custom domain like http://www.example.com - A large file over than 1MB is submitted using a form POST. I tested several A

[google-appengine] Large Number of Timeouts

2009-04-25 Thread bwh...@dappervision.com
Starting at 8:50 AM PST this morning till now we have been experiencing a large number of timeouts and poor database performance. App ID: mosaicaserv1 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine

[google-appengine] Re: Datastore usage ~ 80 times more than expected (Add your vote to a datastore usage accounting feature)

2009-04-25 Thread Kugutsumen
On Apr 23, 4:47 am, Panos wrote: > I have also been puzzled at times on where the space is going. I filed > this request today: > > "More granular accounting of how datastore space is > used"http://code.google.com/p/googleappengine/issues/detail?id=1396 > > Please browse to the issue and add y

[google-appengine] Google indexing ajax components

2009-04-25 Thread Nora
Hello, I have created a website using GAE. I used a treeview control from Yahoo user Interface Library. I ceated a sitemap for the site to help Google crawlers to quickly index my site. I use a tree that supports AJAX techniques: 1. When the user clicks on one of the children nodes of my tree, t

[google-appengine] Re: I've reached my quota, only I have this great new name for my app

2009-04-25 Thread Bennomatic
Hi Jeff, Can you up my account limit, too? I've got a bunch of projects in the pipeline and even though I don't have deployments for all of my apps yet, I could foresee needing 15 in the next few weeks. Thanks! On Apr 24, 11:04 am, "Jeff S (Google)" wrote: > Hi Ted, > > I've increased the max

[google-appengine] Sharding counters

2009-04-25 Thread vanya
Hi, everyone. I'm implemeting the sharding technique http://code.google.com/intl/ru/appengine/articles/sharding_counters.html for my app. And my model has string and stringlist properties. How can I retrieve the last written value from shards? e.g , there was writing to datastore in following orde

[google-appengine] Re: Large Number of Timeouts

2009-04-25 Thread bwh...@dappervision.com
Seems like it is back to normal. -Brandyn On Apr 25, 2:52 pm, "bwh...@dappervision.com" wrote: > Starting at 8:50 AM PST this morning till now we have been > experiencing a large number of timeouts and poor database performance. > App ID: mosaicaserv1 --~--~-~--~~~---

[google-appengine] Re: I've reached my quota, only I have this great new name for my app

2009-04-25 Thread Dag
Hey Jeff, A couple of weeks ago I asked you to up my quota as well and I haven't heard anything from you. I used the "Reply to author" link in this group. I never used that link before. Did you even get my request? Could you increase my quota as well? I have sample python websites that I want to

[google-appengine] java.security.AccessControlException: access denied during upload file

2009-04-25 Thread Jun
Hi, I am trying to upload a file with the following code. DiskFileUpload fu = new DiskFileUpload(); fu.setSizeMax(-1); List fileItems = fu.parseRequest(request); Iterator i = fileItems.iterator(); But I got the following error. java.security.AccessControlException: access denied (java.io.File

[google-appengine] Re: Polymodels and datastore layout - one big table?

2009-04-25 Thread Tim Hoffman
Hi Remember you don't really have a table, trying to relate what happens under the hood in the datastore to a relational model is probably the wrong approach. > It makes the appengine datastore difficult to use because everything > ends up on one table. How is it more difficult other than inclu

[google-appengine] Re: I've reached my quota, only I have this great new name for my app

2009-04-25 Thread mkmanning
I'd like ten more as well, as I'm sure would many others. Is there a roadmap for when deleting apps/increasing the number of apps will be available other than via special requests? It would be fine if additional apps were only available to those under billing plans. I'd even be fine if it were 10

[google-appengine] Re: Java deploys

2009-04-25 Thread Randinn
Is there a way to do this on the Java side of things, I have no Python experience nor do I have it on my machine On Apr 25, 2:51 pm, 风笑雪 wrote: > Just upload a app with app.yaml with this configuration: runtime: python > > 2009/4/25 Randinn > > > > > How do you change it from Python to Java

[google-appengine] DeadlineExceededError: The API call urlfetch.Fetch() took too long to respond and was cancelled.

2009-04-25 Thread WeatherPhilip
Recently I have been sometimes getting a DeadlineExceededError on a urlfetch.fetch operation rather than the urlfetch.DownloadError which normally happens when it runs out of time. Note that I have not run out of time for the request -- this exception is thrown after 16 seconds (according to the