[google-appengine] GAE Python Chinese feed url fetch problem

2009-11-18 Thread Alan Xing
Hi there, We have run into this feed fetch problem, with GAE Python code throwing DownloadError. This problem seems to happen to a lot of feeds with Chinese characters inside. Almost any feed from feedsky.com causes such problem. http://feed.feedsky.com/qiushi http://feed.feedsky.com/ihero http:/

[google-appengine] Re: mail.Send() complains I need more quota even though I don't

2009-11-18 Thread Cynthia Kurtz
My app id is rakontu. The issue came up when one of my users tried to send an email with a list of To: addresses with 10 emails in it. I tried to replicate the error and couldn't, but I only tried sending to two people at once. Could there be some hidden email to-list cutoff? On Nov 18, 11:35 pm,

[google-appengine] Re: Debug GAE project

2009-11-18 Thread SivaTumma
For any application, We can debug it through Logging. If you happen to read http://code.google.com/appengine/articles/logging.html, you might discover exact solution if you are using the python runtime. Or if you are using java runtime, you should ve been familiar to Logging concepts. You can put

[google-appengine] Re: mail.Send() complains I need more quota even though I don't

2009-11-18 Thread crag
Thanks for taking a look, Ikai. I doubt it is an hourly CPU thing. After 20 hours, I have used 33% of CPU quota and the load will likely have been well distributed over that time. Also, searching the logs for [Qq][Uu][Oo][Tt][Aa] do not reveal anything except for mail.send calls. On Nov 18, 2:3

[google-appengine] Re: Why not implement a Django database backend for App Engine?

2009-11-18 Thread Julian Namaro
Traditional relational databases are not scalable, and using such library would most likely result in a data organization that does not scale well. Might be fine for a lot of apps, but it kind of defeat the main purpose of using a cloud infrastructure. On Nov 18, 9:54 pm, frankabel wrote: > Hi a

[google-appengine] datastore glitch/corruption?

2009-11-18 Thread ussuri
I'm experiencing weird data corruption issues that seem to be caused by a glitch in the datastore. There is a chance that there is a bug in my code, of course, but I have spent hours looking for holes and I see none. Basically, I have an entity (table) with several content fields and two "tracking

[google-appengine] Re: datastore viewer delay

2009-11-18 Thread Baron
yeah my dataviewer always shows, but there seems to be a delay in updating the content. On Nov 18, 3:11 pm, 风笑雪 wrote: > Model will always show in dataviewer. > > The only way I find to not show it is re-define you Model class > without any property, and deploy it again. > > 2009/11/18 Baron : >

[google-appengine] Re: Getting Strange Error From Cron Job

2009-11-18 Thread niklasr
On Nov 18, 7:44 pm, Kevin wrote: > I am attempting to implement an application that performs some > occasional web crawling as a component of its day-to-day > functionality. > The web crawling code can be executed from a jsp file.  When I test it > on my computer by accessing the jsp file, it pe

[google-appengine] Getting Strange Error From Cron Job

2009-11-18 Thread Kevin
I am attempting to implement an application that performs some occasional web crawling as a component of its day-to-day functionality. The web crawling code can be executed from a jsp file. When I test it on my computer by accessing the jsp file, it performs its desired function nicely, as expecte

Re: [google-appengine] Re: Cron job schedule time reset when uploading new version

2009-11-18 Thread djidjadji
I used the original message text as the text for the issue http://code.google.com/p/googleappengine/issues/detail?id=2408 2009/11/18 Ikai L (Google) : > Can you guys log this as an issue? I don't see this in our issue tracker. > > http://code.google.com/p/googleappengine/issues/list?can=2&q=cron

[google-appengine] Re: Increasing task queue quotas

2009-11-18 Thread James Cooper
Hi, My primary concern is throughput, not cost. I would be happy to pay more to gain higher concurrency and higher throughput. If a customer uploads a list with 100,000 items to process, I would like to burst to some upper limit of concurrency (higher than 20 qps at least) and process the list a

[google-appengine] Re: Increasing task queue quotas

2009-11-18 Thread James Cooper
Hi there, Yes, I've considered Amazon's offering, but would prefer to keep the entire system on GAE if possible to reduce complexity. thanks, -- James On Nov 17, 7:13 pm, Julian Namaro wrote: > I'm not sure about what you want to do but just a thought: have you > considered Amazon Elastic MapR

Re: [google-appengine] Re: Limit on image size very low

2009-11-18 Thread Ikai L (Google)
Cynthia, I have good news for you: >From here: http://code.google.com/appengine/docs/roadmap.html - Service for storing and serving large files It's coming! We hear you. On Wed, Nov 18, 2009 at 3:01 PM, Cynthia Kurtz wrote: > Sorry - to clarify - I wasn't talking about the imaging service,

[google-appengine] Re: Limit on image size very low

2009-11-18 Thread Cynthia Kurtz
Sorry - to clarify - I wasn't talking about the imaging service, I was talking about the database limit. I had originally intended to have "attachments" to stories, which could include say PDF as well as audio and video and images. If there is a way to break up ANY binary data into 1MB chunks and g

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

2009-11-18 Thread Matthew Blain
Hi everyone, Thanks for the response so far--we'll be getting back to you over the next few days. I'd like to point out an existing feature which will be helpful to many of you: --dump and --restore. This will download or upload all of the entities for a particular Kind and save them in a local sql

[google-appengine] Re: Limit on image size very low

2009-11-18 Thread Cynthia Kurtz
Another issue is, the 1MB limit is incompatible with audio and video as well as just images. So it's not just an imaging library that is needed, it's everything. I had planned to have people be able to collect stories in audio format (say from old folks) and upload them to my site (Rakontu) but giv

Re: [google-appengine] Re: mail.Send() complains I need more quota even though I don't

2009-11-18 Thread Ikai L (Google)
Cynthia, What's your application ID? Crag, is there any chance you could be over a CPU quota? I checked your application and you are pretty close to an hourly quota. I'll investigate to see if exceeding a CPU quota on sending a mail is triggering that error. On Wed, Nov 18, 2009 at 2:27 PM, Cynt

[google-appengine] Re: mail.Send() complains I need more quota even though I don't

2009-11-18 Thread Cynthia Kurtz
Same issue here. Being over quota is impossible since I've sent like three messages. Any help? On Nov 18, 1:38 pm, crag wrote: > My application had been sendingmailwithout a problem as of last > week.  I uploaded a new version of the app a week ago (did not change > the code that emails) and now

Re: [google-appengine] Re: Cron job schedule time reset when uploading new version

2009-11-18 Thread Ikai L (Google)
Can you guys log this as an issue? I don't see this in our issue tracker. http://code.google.com/p/googleappengine/issues/list?can=2&q=cron On Wed, Nov 18, 2009 at 2:01 PM, Jason C wrote: > We had a nightly job on our development server to which we also did a > daily automated build. > > The cr

[google-appengine] Re: Cron job schedule time reset when uploading new version

2009-11-18 Thread Jason C
We had a nightly job on our development server to which we also did a daily automated build. The cron job never executed. It took me forever to understand why. I'm not sure why it is designed this way. j On Nov 18, 3:12 am, djidjadji wrote: > I have a simple cron job that needs to run "every X

[google-appengine] Re: weird TemplateDoesNotExist error

2009-11-18 Thread Jason C
Are you using Django 1.0? There is an initialization problem with Django 1.0. If a DeadlineExeecedError occurs while a new instance is spinning-up, it can leave Django 1.0 in a partially initialized state and these kind of errors will continue to stream out until the instance is recycled. We've tr

[google-appengine] Re: XMPP Requests

2009-11-18 Thread Guria
I already filled such issue http://code.google.com/p/googleappengine/issues/detail?id=2071 for several month ago. Could you tell, have you any plans on realising such functionality? On Nov 6, 5:34 pm, "Nick Johnson (Google)" wrote: > Hi Kevin, > > Not currently, no. Please feel free to file an i

[google-appengine] Re: Searching the datastore

2009-11-18 Thread Tristan
You probably want to first look at Lucene http://lucene.apache.org/java/docs/ If you don't like that, you can try implementing this: http://www.miislita.com/term-vector/term-vector-3.html -Tristan On Nov 18, 5:47 am, Barakat wrote: > Hi All, > > I want to have a search box in my page so the u

[google-appengine] Re: Why not implement a Django database backend for App Engine?

2009-11-18 Thread sserrano
While it is a difficult task there is people trying to work around it. Follow wkornewald at http://bitbucket.org/wkornewald/ he is doing an excellent work Cheers, Sebastian Serrano http://www.sserrano.com On 18 nov, 09:54, frankabel wrote: > Hi all, > > I'm newbie in this App Engine. As far I

[google-appengine] Google voice on app engine

2009-11-18 Thread dreadjr
Is there a way to use google voice on the app engine? I created a library for google voice but can't seem to get around change the "host" value of the requests. Or is there another approach i can take? -- You received this message because you are subscribed to the Google Groups "Google App Eng

Re: [google-appengine] Why not implement a Django database backend for App Engine?

2009-11-18 Thread OvermindDL1
On Wed, Nov 18, 2009 at 5:54 AM, frankabel wrote: > Hi all, > > I'm newbie in this App Engine. As far I know, lot of Django app > portability get solved if someone implement a  Django database backend > for App Engine. Even I read "Once queryset-refactor lands in trunk, it > might also be possible

Re: [google-appengine] Re: How can I redirect www.mydomain.com to my appspot app/ website

2009-11-18 Thread OvermindDL1
On Tue, Nov 17, 2009 at 9:41 PM, SivaTumma wrote: > For faster paybacks, I put an index.html in the subdomains' root > folders and insert this in that file. > > ..blah blah.. > > > ..and blah blah. That may not always run though (it will not in my setup for example, so all I would see is a blank

[google-appengine] mail.Send() complains I need more quota even though I don't

2009-11-18 Thread crag
My application had been sending mail without a problem as of last week. I uploaded a new version of the app a week ago (did not change the code that emails) and now get com.google.apphosting.api.ApiProxy$OverQuotaException: The API call mail.Send() required more quota than is unavailable. even t

[google-appengine] syncdb HTTP Error 302

2009-11-18 Thread Guri
Hi, I am using app engine patch to upload on production server. All goes fine until it tries syncdb. Below are the logs. I searched for such problems earlier but no luck. Please give me some pointers Thanks, Gurminder These are the logs: Uploading

Re: [google-appengine] Unable to appcfg.py update to my app

2009-11-18 Thread Ikai L (Google)
Tom, Can you provide the following details? - Version of SDK - app ID - operating system On Wed, Nov 18, 2009 at 8:01 AM, Tom Wu wrote: > Unable to appcfg.py update to my app. > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To p

Re: [google-appengine] What does tasks in queue 2000+ means?

2009-11-18 Thread Prashant
yes, tasks added after 2000 tasks in the queue are shown as 2000+ -- 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 unsubscribe from this group, send email to google-

[google-appengine] Re: Using Google App Engine to implement a service which will compute in parallel many tasks ?

2009-11-18 Thread Michelschr
Sure, it is possible: http://code.google.com/intl/fr/appengine/docs/python/taskqueue/ The problem will only be your resource consumption... On 18 nov, 16:09, Wojciech wrote: > Hello, > > I'd like to know if there is any way to use Google App Engine to make > a cloud  hosted service which will b

[google-appengine] Re: appcfg.py upload_data failing early

2009-11-18 Thread Lloyd
To follow up. I cross posted on StackOverflow Brit: Do you get any more information when you add "--noisy" ? Are you logged in before you run above line ? Me: Thanks, I didn't know about that flag. The odd thing is that it seems to not make any difference on the WinXP machine that I was working

[google-appengine] What does tasks in queue 2000+ means?

2009-11-18 Thread ivanbone
Hello everyone, I'm quite confuse at the number shown at the tasks in queue column. Example: I added 3000 tasks, but it showed as 2000+. Does this mean that the number of tasks added in queue now is only 2k, and the remaining 1k of tasks will be discarded? or actually tasks added were 3k, but it

[google-appengine] Re: Basic site

2009-11-18 Thread Yuriy S.
Hello, You could try this http://code.google.com/appengine/docs/python/gettingstarted/ Yuriy On Nov 18, 3:37 am, Matthew Kramer wrote: > I'm fairly new with Google App Engine and I'm wondering if there is a > tutorial that shows how I can build a basic site that I can navigate > threw. Thanks fo

[google-appengine] Try to retrieve provisioning group in Google App Engine

2009-11-18 Thread Bam
Hi all, i tried to retrieve provisioning group list on pagination but it always get timeout error. here is the log report. WARNING 2009-11-18 09:00:45,469 urlfetch_stub.py:269] Stripped prohibited headers from URLFetch request: ['Host', 'Content-Length'] WARNING 2009-11-18 09:00:47,046 urlfetch

[google-appengine] Searching the datastore

2009-11-18 Thread Barakat
Hi All, I want to have a search box in my page so the user can search for name in an address book for example i expect the user to write any words he wants in the box for search for example "Mike Laurance California" If such words written and I want to search with it in my data store that has a

[google-appengine] Using Google App Engine to implement a service which will compute in parallel many tasks ?

2009-11-18 Thread Wojciech
Hello, I'd like to know if there is any way to use Google App Engine to make a cloud hosted service which will be compuing in parallel not so trivial tasks. I'm planning to implement raytracer engine, where calculations for each pixel (defining its colour) should be performed in the cloud.. in pa

[google-appengine] Re: CNAME mapping stopped working 25 minutes ago

2009-11-18 Thread HimS
We also suffered this problem and its not yet resolved. As of now I am getting a 404 error: www.cheesecare.com Thanks HimS On Nov 18, 5:27 am, "Ikai L (Google)" wrote: > Google Apps customers, > > Between 11:25am and 3:49pm Pacific Time, there was a production issue for > Google Apps customers

[google-appengine] Re: Accessing the Data Store from outside application

2009-11-18 Thread mscwd01
Thats great, it would be all the greater if it had Java language support. :( I needed a reason to learn Python though ;) On Nov 18, 9:28 am, djidjadji wrote: > Look at the article for the remote_api. > > 2009/11/18 mscwd01 : > > > Hey, > > > I hava an app which generates a lot of user data which

[google-appengine] Re: Limit on image size very low

2009-11-18 Thread Bjoern
If you have a suggestion, I wouldn't mind trying it. I suspect few python imaging libraries would be pure python, though. On Nov 17, 3:08 pm, Eli Jones wrote: > Isn't there another image library you could use to resize? -- You received this message because you are subscribed to the Google Group

[google-appengine] Unable to appcfg.py update to my app

2009-11-18 Thread Tom Wu
Unable to appcfg.py update to my app. -- 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 unsubscribe from this group, send email to google-appengine+unsubscr...@google

Re: [google-appengine] Cron job syntax

2009-11-18 Thread Eli Jones
Here's the fun way! Figure out a way to represent the sequence of hours you need it to run... n0 = 6, n1 = n0 + 1, n2 = n1 + 1, n3 = n2 + 1, n4 = n3 + 1, n5 = n4 + 3, n6 = n5 + 4 Have a cron job start it off at 6am... Then have the code set a taskqueue to call itself.. Setting k = k+1 as a param

[google-appengine] weird TemplateDoesNotExist error

2009-11-18 Thread Jairo Vasquez Moreno
Hi, I'm getting a lot of "TemplateDoesNotExist" errors (It's not always, sometimes GAE raise it). And this is not because a statir dir. It's weird because the template works but sometimes I see that error, so it's not about that it doesnt exist. I have like 40 request per second that fetch the tem

Re: [google-appengine] Basic site

2009-11-18 Thread Barry Hunter
The helloworld example here http://code.google.com/appengine/docs/python/gettingstarted/helloworld.html is probably about as simple as it comes. On 18/11/2009, Matthew Kramer wrote: > I'm fairly new with Google App Engine and I'm wondering if there is a > tutorial that shows how I can build a b

Re: [google-appengine] Re: Admin dashboard chart shows only last 18 hours instead of 24

2009-11-18 Thread Prashant
fixed for my all apps, thanks. -- 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 unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.

[google-appengine] Why not implement a Django database backend for App Engine?

2009-11-18 Thread frankabel
Hi all, I'm newbie in this App Engine. As far I know, lot of Django app portability get solved if someone implement a Django database backend for App Engine. Even I read "Once queryset-refactor lands in trunk, it might also be possible to write a database backend for App Engine that would allow a

[google-appengine] Re: Cron job syntax

2009-11-18 Thread Sylvain
Else you can run the job each hour and check the time in your code. Regards. On 18 nov, 02:39, GAEfan wrote: > Is it possible to specify various times in a Cron schedule, like: > > - description: do this job >   url: /atThisURL >   schedule: every mon,tue,wed,thu,fri,sat > 06:00,07:00,08:00,09:0

[google-appengine] Re: Admin dashboard chart shows only last 18 hours instead of 24

2009-11-18 Thread Jonathan
fixed for me On Nov 18, 12:53 pm, "Ikai L (Google)" wrote: > This issue has been resolved. Can those of you that have been affected > please check your dashboards? > > On Tue, Nov 10, 2009 at 10:27 PM, Prashant wrote: > > check my app also - *gaewcmsdemo* > > > --~--~-~--~~--

Re: [google-appengine] Accessing the Data Store from outside application

2009-11-18 Thread djidjadji
Look at the article for the remote_api. 2009/11/18 mscwd01 : > Hey, > > I hava an app which generates a lot of user data which is stored in > the data store. At various intervals I wish to process this data using > an application running on my pc, is this possible? > > I.e. looping through all the

[google-appengine] Re: Edit models with key lists

2009-11-18 Thread reza
Thanks for the replies, I like both ideas but I feel like this should be handled in the controller somehow. Reza On Nov 18, 12:40 pm, djidjadji wrote: > Or write a custom filter that checks to see if the current category is > found in the list of checked categories. > > 2009/11/17 Joshua Smith :

Re: [google-appengine] Re: Increasing task queue quotas

2009-11-18 Thread djidjadji
Is your processing not possible with the deferred module added in 1.2.5 http://code.google.com/appengine/articles/deferred.html If you launch many tasks to process the uploads you waste a lot of CPU retrieving the data needed. With the deferred method you run for about 30 sec, then store the stat

[google-appengine] Cron job schedule time reset when uploading new version

2009-11-18 Thread djidjadji
I have a simple cron job that needs to run "every X hours" --- cron.yaml --- cron: - description: Hourly Check url: /jobs/check schedule: every 1 hours -- If I upload a new version of the app the schedule time

Re: [google-appengine] Edit models with key lists

2009-11-18 Thread djidjadji
Or write a custom filter that checks to see if the current category is found in the list of checked categories. 2009/11/17 Joshua Smith : > I usually tackle these kinds of problems with Javascript.  In the page you > generate, write javascript commands to check the boxes you need. > > function se