Re: [google-appengine] Migration to HRD blocked due to max free applications claimed

2013-03-25 Thread Jonathan Brier
Thank you Barry, that did it. Sometimes the simplest things are the hardest to see. :) On Mon, Mar 25, 2013 at 5:45 PM, Barry Hunter wrote: > If they are unused, just disable them. > > A disabled application does not actully count towards your '10 apps' > > That should give you a few empty slots

[google-appengine] Re: dev_appserver.py starts then exits with error "Unexpected port response from runtime"

2013-03-25 Thread timh
See this on stackoverflow - you will be using print somewhere http://stackoverflow.com/questions/15606043/dev-appserver-returns-error-unexpected-port-response-from-runtime T On Monday, March 25, 2013 8:23:27 AM UTC+8, Youne Hippoman wrote: > > I have successfully tried the Helloworld example aft

Re: [google-appengine] Migration to HRD blocked due to max free applications claimed

2013-03-25 Thread Barry Hunter
If they are unused, just disable them. A disabled application does not actully count towards your '10 apps' That should give you a few empty slots you can use to upgrade your main maps in turn. On Mon, Mar 25, 2013 at 8:37 PM, Jonathan Brier wrote: > I am unable to migrate to HRD due to not h

[google-appengine] Java Search API: text field search with accents?

2013-03-25 Thread Fred Janon
Do queries ignore the accents on text field search? For example, for a text field containing "Place des Fêtes", and searching for "place des fetes" would the document with the field stored with accents be found? Is there a specific Google support group for the Java Search API or here or is it thro

[google-appengine] Migration to HRD blocked due to max free applications claimed

2013-03-25 Thread Jonathan Brier
I am unable to migrate to HRD due to not having any free applications to create a duplicate of current names. I have a few application names unused, but were claimed and should be able to be directly upgraded which is not possible in the current upgrade path. I need someone from Google to all

Re: [google-appengine] Search with the app engine ( tags, names )

2013-03-25 Thread Jeff Schnitzer
We do it exactly the way you describe it, using an indexed multi-property which holds all the fragments of words. You can try the search box in the top right of https://www.voo.st/. It works nicely for our purposes. However, we don't do pagination - if you don't get the results you are looking fo

Re: [google-appengine] Search with the app engine ( tags, names )

2013-03-25 Thread Rafael
can you hold all the names in memory and do a simple scan? if all you need is word matching that would work. you could have a cron and task that indexes the names. we have been using appengine for more than 2 years, so we had to make lucene to work with the appengine. basically load the index in m

Re: [google-appengine] Search with the app engine ( tags, names )

2013-03-25 Thread Igor Kharin
If you're not interested in real fuzzy search, I think you may be overcomplicating. It might be as simple as something like: SELECT * FROM Users WHERE name > 'da' AND name < 'db' On Mon, Mar 25, 2013 at 11:00 PM, Dimitri Emmerich < dimitri.emmer...@gmail.com> wrote: > Hey folks! > > Right now i'

[google-appengine] Re: Very large entity ids on 1.7.6 dev server

2013-03-25 Thread Mahron
Ok, so strings it is. Upgrade complete ! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to this grou

Re: [google-appengine] Re: Scary error - 503, and why is there Google branding on the page?

2013-03-25 Thread Rafael
Have you tried changing this: https://developers.google.com/appengine/docs/java/config/appconfig#Custom_Error_Responses On Sun, Mar 24, 2013 at 1:22 PM, <18sel...@winthropschools.org> wrote: > * > > this is so wierd i tried to make google my homepage and it came up! > > >> > * > On Saturday, Fe

[google-appengine] Re: Scary error - 503, and why is there Google branding on the page?

2013-03-25 Thread 18sellis
* this is so wierd i tried to make google my homepage and it came up! > * On Saturday, February 18, 2012 11:06:38 AM UTC-5, tempy wrote: > > Hello all, > Just saw this for the first time - after a long wait my app finally > pops up with: > > "503. That’s an error. > > The service you reques

[google-appengine] dev_appserver.py starts then exits with error "Unexpected port response from runtime"

2013-03-25 Thread Youne Hippoman
I have successfully tried the Helloworld example after installing sdk release 1.7.6 and python 2.7 on Windows XP SP3. Now it does not work anymore. I get this error. Can anybody help? Thanks. D:\helloworld>dev_appserver.py d:\helloworld >> error.log INFO 2013-03-24 20:16:18,187 sdk_updat

[google-appengine] Search with the app engine ( tags, names )

2013-03-25 Thread Dimitri Emmerich
Hey folks! Right now i'm wondering, what is the best way to implement a search. For my application i need to be able to search names. For example when the user types in "da" i want to search the datatstore and return names like "david", "daniel" etc. I implement it using Search nodes created for

[google-appengine] Re: Doing backup from Appengine Datastore Admin to Cloud Storage

2013-03-25 Thread Arie Ozarov
These don't look like errors to me but rather a listing of files created for the backup (I assume the kind was AdjustmentNote?). The MR library that the backup is using recently added the xxx-retry-? suffix to the output file names but that should not and does not indicate a problem. Can you see

[google-appengine] Re: quick guide on using Boa-Constructor and remote debugger with SDK 1.7.6 new dev server

2013-03-25 Thread timh
OOps In between steps 4 and 5, your app needs the following lines added some where near the top before your handler. if hasattr(sys,'debugger_control'): sys.debugger_control.set_traceable() On Monday, March 25, 2013 6:30:05 PM UTC+8, timh wrote: > > Hi > > Here is a quick note to get peopl

[google-appengine] quick guide on using Boa-Constructor and remote debugger with SDK 1.7.6 new dev server

2013-03-25 Thread timh
Hi Here is a quick note to get people started with an IDE based interactive debugger with the new dev server You have to fix some code in the Boa Constructor remote debugger, but it does work ;-) 1. Get boa constructor. I am running boa-constructor as installed with apt on xubuntu 12.10 alte