[google-appengine] Re: Should I take my website somewhere else? - blocked in China

2009-04-03 Thread Andy
I want to to hear from Google whether it has done anything to solve this problem or whether it has any plan to do so. I don't want to hear pompous speech from a self-appointed non-google spokesperson on his political/moral drivels and that he encourage me to take my business elsewhere. So no,

[google-appengine] indexes on StringListProperty or ListProperty(int)

2009-04-03 Thread Nikola
Is there a significant difference in storage requirements and performance of fields stored as StringListProperty vs ListProperty (int)? I am playing with a full text search implemented similarly to SearchableModel, only I got tf-idf relevance and some phrase search. I've seen big increase of the

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Tim Hoffman
Ok I am running Ubuntu 8.10 (actually xubuntu) I went through the helloworld excercise cutting and pasting you code and it all worked. I only get that error ERROR:root:Application configuration file not found in ./helloworld when no app.yaml is in the directory. Invalied You should check the

[google-appengine] Re: Large File Storage / 1000+ records returned from a query

2009-04-03 Thread Barry Hunter
option 6) would be use ajax to get seperate handlers to build each chunk of the file and save it in the datastore and/or memcache. When the all parts have been built, have a handler that fetches each chunk and simply outputs. Single handlers can send 10Mb in one request. That way you only do the

[google-appengine] Re: 308K CSV file cost 20% GAE data space!

2009-04-03 Thread 'Αλκης Ευλογημένος
What do your models look like? On Fri, Apr 3, 2009 at 2:00 PM, 秦锋 feng.w@gmail.com wrote: My App: cndata4u.appspot.com Now I have imported about 2500 records there, and with only THREE entities. But I have found that these data have occurred 20% data store, about 200M! My original CSV

[google-appengine] How to make entry in urls.py for this?

2009-04-03 Thread arnie
I am using app engine patch sample for GAE application I have to make entry in urls.py for a request that is passing multiple parameters like this http://localhost:8080/getit?name='myname'address='myaddress' How to make this entry It is very urgent Thanks Arnie

[google-appengine] Re: 308K CSV file cost 20% GAE data space!

2009-04-03 Thread service G2100
index 2009/4/3 Alkis Evlogimenos ('Αλκης Ευλογημένος) evlogime...@gmail.com What do your models look like? On Fri, Apr 3, 2009 at 2:00 PM, 秦锋 feng.w@gmail.com wrote: My App: cndata4u.appspot.com Now I have imported about 2500 records there, and with only THREE entities. But I have

[google-appengine] Re: Should I take my website somewhere else? - blocked in China

2009-04-03 Thread Andy Freeman
So no, there's no pot and kettle here at all. Sure there is - unless you know how to fix the problem. (Surely you're not going to argue that you're reporting an unknown problem.) After all, you complained about someone else's posting with This is a forum for people to share information on GAE

[google-appengine] Re: Should I take my website somewhere else? - blocked in China

2009-04-03 Thread WallyDD
So fixing China is the problem? Please can we take this aggression out of the discussion? This is a technical group, not somewhere for country bashing. There are plenty of other places you can have a political argument, this is not the place. On Apr 3, 10:04 am, Andy Freeman

[google-appengine] Re: Should I take my website somewhere else? - blocked in China

2009-04-03 Thread WallyDD
Please try to be respectful. http://groups.google.com/group/google-appengine/web/google-app-engine-discussion-group-charter On Apr 3, 10:04 am, Andy Freeman ana...@earthlink.net wrote: So no, there's no pot and kettle here at all. Sure there is - unless you know how to fix the problem.  

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread bobdob
Thanks for the update Tim, yeah this is really weird, and causing me much frustration and sleep loss! But I will not give up... I have tried literally everything I can think of at this point, from moving the helloworld directory to different locations (google_appengine directory, home directory

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Tim Hoffman
Hi Chris Can you try running the dev_appserver.py by specifying python first (I note in all you examples you don't do that) ie cd /home/chris/helloworld python ~/google_appengine/dev_appserver.py . Also open up the file /home/chris/google_appengine/google/appengine/ tools/

[google-appengine] Re: 308K CSV file cost 20% GAE data space!

2009-04-03 Thread 秦锋
My models: class Tag(db.Model): name = db.StringProperty() refCount = db.IntegerProperty(default = 0) class Record(db.Model): date = db.DateTimeProperty() dfmt = db.StringProperty() value = db.FloatProperty() unit = db.StringProperty() tags = db.StringListProperty() source =

[google-appengine] mydomain.appspot.com works but not www.mydomain.com

2009-04-03 Thread Anjanesh
My hello world app is working at mydomain.appspot.com I mapped www.mydomain.com to ghs.google.com and pinging www.mydomain.com gets a reply from google's servers. But when I goto www.mydomain.com it shows google's page The site you have requested could not be found. (404) I added this url in

[google-appengine] Re: google apps engine installation problem.

2009-04-03 Thread Aaron
also found the exact file needed: here is the link http://pylonshq.com/project/pylonshq/browser/ez_setup.py that's the ez_setup.py file that I was looking for. I just copied it and then ran the setup.py file provided from google engine folders etc. this willl install the antlr3 On Apr 3,

[google-appengine] can't update datastore

2009-04-03 Thread Eduardo Aguila
Hello (sorry for my bad english) i cant update the datestore, i am follow this example http://code.google.com/appengine/docs/python/datastore/overview.html , but i cant :S # code query = db.GqlQuery(SELECT * FROM Stat) if query.count() == 0: stat = Stat( Linux = 1

[google-appengine] Re: Should I take my website somewhere else? - blocked in China

2009-04-03 Thread Brett Slatkin
Is there any google staff who is responsible for GAE promotion and technology to say something here? How can I access to my Google Apps via my own domain directly, e.g. how can access via mail.my_domain.com instead of mail.google.com/a/ my_domain.com? One way to address this is to run a

[google-appengine] Re: Should I take my website somewhere else? - blocked in China

2009-04-03 Thread Andy
And, the political reputation damage would be enough to drive even more people away from their product. Google already set up their China search site google.cn that received approval from the Chinese government. Did you see any resulting political reputation damage that drive even more

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread Tim Hoffman
Hi Chris You distribution is definately corrupted for some reason. Try downloading it like this. First of rename or remove your existing google_appengine cd this will put you in your home directory wget http://googleappengine.googlecode.com/files/google_appengine_1.1.9.zip Once that

[google-appengine] Re: How to update DB record

2009-04-03 Thread Josh Steiner
On Fri, Apr 3, 2009 at 3:38 PM, Larkin2 michael.mer...@gmail.com wrote: In the example mention at: http://code.google.com/appengine/kb/commontasks.html#update I don't understand what is going here: comment.comment_text = db.Text (updated_comment) What is db.Text ? confused, your help is

[google-appengine] Re: mydomain.appspot.com works but not www.mydomain.com

2009-04-03 Thread WallyDD
Try this, it might help; http://groups.google.com/group/google-appengine/web/deleting-existing-www-mapping-from-google-apps On Apr 3, 1:26 am, Anjanesh anjanesh.for...@gmail.com wrote: My hello world app is working at mydomain.appspot.com I mappedwww.mydomain.comto ghs.google.com and

[google-appengine] Re: uploading app failed.... need help to fix..

2009-04-03 Thread WallyDD
from; http://code.google.com/appengine/docs/quotas.html You can upload up to 1,000 code and 1,000 static files with your application. On Apr 3, 5:02 pm, Aaron shyhockey...@gmail.com wrote: I currently have trouble uploading a applicaiton. I am using linux ubuntu OS. this is what I get in

[google-appengine] Re: How to iterate all records when 1000?

2009-04-03 Thread Jeff S
When Ryan mentioned derived queries he meant, use new queries that will pick up where the last query left off (also called paging as you noted). Joe Gregorio wrote an article on it which might also help: http://code.google.com/appengine/articles/paging.html This article describes a few

[google-appengine] Re: Problem with timeouts on get_by_key_name

2009-04-03 Thread Jeff S
Hi Marcus, You are correct that get_by_key_name does tend to be a very efficient query, but it is possible to see a timeout though this is usually quite rare as a percentage of overall requests. Do you have a feel for what percentage of these get operations are timing out? Thank you, Jeff On

[google-appengine] Re: Simultaneous Requests

2009-04-03 Thread Jeff S
Julian brings up a good point. I was also wondering what kind of QPS you were seeing on your app during one of these tests. Since the response from the server likely comes back pretty quickly, ten threads could generate quite a few requests in a second. Thank you, Jeff On Apr 2, 8:01 pm,

[google-appengine] Re: DataStore timeout

2009-04-03 Thread Jeff S
Hi DarkCoiote, How rapidly are puts being made on a single entity? There is a write speed limit for a single entity or entity-group so if these puts are being made against the same person, or if puts are being made to objects which share the same parent, the put operations may queue up and

[google-appengine] Re: How to iterate all records when 1000?

2009-04-03 Thread Andrew Fong
Correct me if I'm wrong, but it looks like you're trying to cram all of this into one request-response cycle too -- this will run you afoul of GAE's restrictions very quickly. You'll want to break down all those query iterations over multiple request-response cycles. For normal paging, this is

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread bobdob
Hey it works!!! Looks like the zip was corrupted, I kind of had a feeling all along that could be the case since I was getting CRC mismatches on all the extracts (I must have downloaded that zip at least 10 times). Here's my output: ch...@chris-laptop:~/helloworld$ python ../google_appengine/

[google-appengine] Re: Issues Trying To Run dev_appserver.py in Ubuntu 8.10

2009-04-03 Thread bobdob
Hey it works!!! Looks like the zip was corrupted, I kind of had a feeling all along that could be the case since I was getting CRC mismatches on all the extracts (I must have downloaded that zip at least 10 times). Here's my output: ch...@chris-laptop:~/helloworld$ python ../google_appengine/

[google-appengine] Re: uploading app failed.... need help to fix..

2009-04-03 Thread Aaron
So it's basicly saying I am going over a free limit? I am working for a company and they had the previous programmer to make a admin interface where I can just copy and paste in my css and html code to make changes to the website. So this basicly is saying I am exceeding a limit based on free

[google-appengine] {% extends %} and UTF-8

2009-04-03 Thread DocDay
I'm having trouble with non-printing trash characters forcing a gap at the top of my page. In view source they look like two small side- by-side dashes at the top of the page. This happens both with the SDK and online. HTTP analysis shows three UTF-8 BOMs at the beginning of the page.