Re: [google-appengine] TransientError on Text Search API ?

2012-08-01 Thread Yoav Aviram
I had the same issue & found out it was caused by an incorrect field default type (string instead of a NumberField). On Sunday, June 24, 2012 4:13:26 PM UTC+1, John Wheeler wrote: > > Steve, > > I'm running across this error now with the same code pretty much, except > I'm trying to sort by a Da

Re: [google-appengine] TransientError on Text Search API ?

2012-06-24 Thread John Wheeler
Steve, I'm running across this error now with the same code pretty much, except I'm trying to sort by a DateField. Did you ever find out how to get around this? Thanks, John On Monday, May 14, 2012 7:07:15 AM UTC-7, Steve Qian wrote: > > Here is my search query code, currently it works without

Re: [google-appengine] TransientError on Text Search API ?

2012-05-14 Thread Steve Qian
Here is my search query code, currently it works without 'sort_options' in query_options. sort_opts = search.SortOptions(expressions=[ search.SortExpression(expression='magnitude', direction=search.SortExpression.DESCENDING, default_value=0) ],limit=1000)

Re: [google-appengine] TransientError on Text Search API ?

2012-05-14 Thread Sun Jing
I also got this error sometime if I mixed ascii char and Chinese char (in UTF-8 encode). On Mon, May 14, 2012 at 4:58 PM, Amy Unruh wrote: > Steve, > > Can you provide more info (e.g. example code) showing how you built the > query object that you used for the search? > > -Amy > > On 12 May 201

Re: [google-appengine] TransientError on Text Search API ?

2012-05-14 Thread Amy Unruh
Steve, Can you provide more info (e.g. example code) showing how you built the query object that you used for the search? -Amy On 12 May 2012 20:05, Steve Qian wrote: > > > I keep getting the following TransientError when doing a search query. > > Anyone experience the same error? Is there a

[google-appengine] TransientError on Text Search API ?

2012-05-12 Thread Steve Qian
I keep getting the following TransientError when doing a search query. Anyone experience the same error? Is there a problem with the service? results = search.Index(name=cls._INDEX_NAME).search(query=query_obj) > File > "/base/python27_runtime/python27_lib/versions/1/google/appengine/api