[google-appengine] Re: full text search and/or external search services

2011-08-11 Thread PandaSuit
From Ikai's post it sounds like we are a ways away from having Google's search on GAE and I need some features that are going to be annoying to add to Bill Katz solution so I decided to try out indextank.com as Jon Romero Vlachogiannis suggested. I am really impressed. It is easy to integrate and

[google-appengine] Re: get_original_metadata working?

2011-08-10 Thread PandaSuit
Thanks for letting us know about the parse_metadata flag. This is really useful. I should be able to use this to figure out if an image is CMYK. Any plans to let us modify the metadata? :) On Aug 9, 6:42 pm, Gyuri Dorko gy...@google.com wrote: You have to call execute_transform with

[google-appengine] Re: full text search and/or external search services

2011-07-28 Thread PandaSuit
If you are using Python then you can use Bill Katz solution until Google releases theirs: http://www.billkatz.com/2009/6/Simple-Full-Text-Search-for-App-Engine On Jul 28, 8:19 am, andreas schmid a.schmi...@gmail.com wrote: hi guys, i really need to have a full text search on my app and i

[google-appengine] Re: App Engine Production Issues

2011-07-07 Thread PandaSuit
It is working for me now. Thanks for looking into this Johan. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/r9mNULTs4YAJ. To post to this group,

[google-appengine] Re: App Engine Production Issues

2011-07-05 Thread PandaSuit
Issue 5244 appears to only be affecting my single application (mediacooler-app). I have your unit test running on my app and the host test fails every time. - Bryce -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion

[google-appengine] App Engine Production Issues

2011-07-04 Thread PandaSuit
I have reported two production issues on the App Engine issue tracker in the past and weeks later have not received any official response or even acknowledgment. Is it useless to report issues on the issue tracker? Do production issues even get looked at if they don't have a ton of stars? --

[google-appengine] Re: App Engine Production Issues

2011-07-04 Thread PandaSuit
/detail?id=5244 On Monday, 4 July 2011 14:25:22 UTC-7, Johan Euphrosine (Google) wrote: Hi PandaSuit, Please link those issue and put me in cc: I will take a look at them. On Jul 4, 10:35 pm, PandaSuit pand...@gmail.com wrote: I have reported two production issues on the App Engine issue

[google-appengine] Re: 500 Errors (DeadlineExceededError) on module imports and other random bits of code

2011-06-14 Thread PandaSuit
The errors have been less frequent lately but I am still getting them. I submitted a high priority production issue to the issue tracker on the 7th and have not heard anything back from Google. Please star the issue and add your information and maybe we can get some attention:

[google-appengine] 500 Errors (DeadlineExceededError) on module imports and other random bits of code

2011-06-09 Thread PandaSuit
Anyone else seeing a large amount of 500s (DeadlineExceededError) lately on module imports? Over the last few days parts of my application that have never generated errors (and have not changed recently) have been throwing 500 errors and timing out. Often it is the first import of a module that

[google-appengine] In Python how do you detect if a JPEG uses CMYK color space and how do you convert it to RGB?

2011-05-19 Thread PandaSuit
http://stackoverflow.com/questions/6063588/on-google-app-engine-in-python-how-do-you-detect-if-a-jpeg-uses-cmyk-color-space The Images API in Google App Engine does not appear to handle CMYK JPEG images properly when applying transforms. On the production server the resulting image looks washed

[google-appengine] Re: maximum number of values in all indexes for an entity -what is it?

2011-05-09 Thread PandaSuit
My understanding is that the limit is as you described so a 5002 entry list property will require 5002 entries in the index. If you have multiple list properties then the number of index entries may be a cross product if the index contains more than one list property (try to avoid this). I am

[google-appengine] Image Transformations Failing With Empty TransformationError exception

2011-05-04 Thread PandaSuit
This appears to have been an issue in March and then it just went away. It is back now: http://code.google.com/p/googleappengine/issues/detail?id=4775 Is anyone else having an issue where large ( 4MB) images inconsistently fail to transform using the images API? My snipped of code (which has

[google-appengine] Re: Questions

2011-04-23 Thread PandaSuit
To keep below the email quota create a queue that is limited to 2000 tasks per day (or whatever quota you pay for) and make sure your email sending routines run as tasks in this queue. That way if anything happens that would go over the quota those emails will be delayed until the next day. On

[google-appengine] Re: NeedIndexError ? Please help

2011-04-01 Thread PandaSuit
You are going to have lots of trouble with any index that contains the same property more than once. Based on your index I am guessing you are implementing search with a list property called __searchable_text_index that contains a bunch of search terms are you are doing an equality filter against

[google-appengine] App Engine for Business Roadmap Out of Date

2011-01-14 Thread PandaSuit
Is there a more up to date roadmap for App Engine for Business than the official one posted here: http://code.google.com/appengine/business/roadmap.html? I am very interested in this but have not seen any new info in quite a while. -- You received this message because you are subscribed to