[google-appengine] Re: entity groups

2009-08-28 Thread Tim Hoffman

On thing to remember with parent/entity groups and that is your can't
change them after the fact.
So if you ever want to move an entity between objects (ie parents
swapping children)
you would then want to use reference properties (child -> parent) or
hold a list of keys in the parent of the children

Rgds

Tim

On Aug 27, 12:38 pm, Laimonas Simutis  wrote:
> Maybe my search skills are sucking at the moment, but I am failing to
> find a good example of Entity Group modeling.
>
> I started 
> here:http://code.google.com/appengine/docs/python/datastore/modelclass.html
>   (The Model class)
>
> which then led me 
> tohttp://code.google.com/appengine/docs/python/datastore/keysandentityg...
> (Keys and Entity Groups)
>
> Mainly, what I am trying to find is how to declare the Parent and
> Child objects, and then how does parent "walk" to child and vice
> versa.
>
> If I have
>
> class MyParent(db.Model):
>
> class MyParentChild(db.Model):
>
> what do I add to the above declarations to wire up parent and child to
> be part of an entity group. Do I still use ReferenceProperty? (but
> what if I want one to one and not one to many?)
>
> Thanks for any pointers,
>
> L
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Just use and host

2009-08-28 Thread Jean

I already did part of this but it is a directory I want to install and
it is PHP/MySQL based, it is not traditional html. Is there a way to
use such a script?

On Aug 28, 12:03 am, "Brandon N. Wirtz"  wrote:
> If I understand your ask this will work.
> But you would likely be happier on Google Apps, or Google Sites.
>
> Install python on your Computer.
> Install the GAE SDK.
> Place all of your static HTML, Images, and "Website"
> In a directory called Static.
> Create an entry for each file in your website in the App.Yaml
> Use the APPCFG.py to deploy your app.
>
>
>
> -Original Message-
> From: google-appengine@googlegroups.com
>
> [mailto:google-appeng...@googlegroups.com] On Behalf Of Jean
> Sent: Thursday, August 27, 2009 8:19 AM
> To: Google App Engine
> Subject: [google-appengine] Just use and host
>
> Hello,
> I am no coder but I would like to use a directory script with my
> domain name.
>
> Does Google App Engine allow to host such a script ?
> I checked the FAQ but I read no concrete answer to my question and
> since I am no coder there is a lot I do not understand here.
>
> I think I found such a script in the gallery but then : what do I do ?
> (I have a domain name)
>
> Thank you
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: How can you access App.yaml data?

2009-08-28 Thread Sylvain

I think it is not possible, app.yaml is not uploaded in the same
directory than your app.

Maybe you can duplicated this file app.yaml -> settings.yaml, then it
will be uploaded in the same dir and you could use the yaml lib to
read it.

Regards


On 27 août, 19:47, TC  wrote:
> Is it possible to access the data in your app.yaml file from your app?
> (Not the file, but is the data loaded into the code anywhere).
> For example, I am looking to access the handlers with the login
> property set to required so that I do not have to repeat some sort of
> variable in the code because this is inconvenient to maintain. I need
> to force someone to actually register with the site once signed in
> with a google account but login:required would still let them view the
> page without registering so I need to access the urls.
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Help With Error: ReferenceProperty failed to be resolved

2009-08-28 Thread djidjadji

Yes you can find all of them.
You know the ID of the deleted object (112052).
The Key of this object is

rogueKey = db.Key.from_path('Quiz',112052)

or is there a parent object of a Quiz object? If so put that in the path too.

Find all the faulty references

result = Selector.all().filter('quiz =', rogueKey).fetch(1000)

Or use a method like the Mapper class in the remote_api article if
there are a lot of those objects.


2009/8/28 Kambiz Kambiz :
>
> I can't write a query to find all the objects with this reference
> property since I deleted one object which caused this problem.
> That object is now gone.
>
> That being said, I don't know if your method will work since all my
> object right now are technically OK but since 1 is missing in the
> list, it isn't generating it. Does that make sense?
>
> Kambiz
>
>
> On Aug 27, 4:47 pm, djidjadji  wrote:
>> With a query find all the objects that have this faulty reference property.
>> Create a new property of the correct type and update the objects of the query
>>
>> You can get rid of the list comprehention, make it a for loop that
>> fills a list, catch the exception and filter out the objects with the
>> rogue reference
>>
>> selectors = []
>> for selector in self.get_selectors(user):
>>     try:
>>         if selector.quiz.question_count > 0:
>>             selectors.append(selector)
>>     except Error
>>         pass # or update the reference and put() the selector back
>>
>> 2009/8/27 Kambiz Kambiz :
>>
>>
>>
>> > I recently ignorantly deleted an entity of mine thru the Dashboard.
>>
>> > Now when only my user accesses a certain section of the app, I recieve
>> > this error:
>>
>> > Traceback (most recent call last):
>> >  File "/base/python_lib/versions/1/google/appengine/ext/webapp/
>> > __init__.py", line 507, in __call__
>> >    handler.get(*groups)
>> >  File "/base/data/home/apps/appname/1.95169432469460/
>> > quizlink.py", line 757, in get
>> >    selectors = [selector for selector in self.get_selectors(user) if
>> > selector.quiz.question_count > 0]
>> >  File "/base/python_lib/versions/1/google/appengine/ext/db/
>> > __init__.py", line 2704, in __get__
>> >    raise Error('ReferenceProperty failed to be resolved')
>> > Error: ReferenceProperty failed to be resolved
>>
>> > Only my username creates this problem, not other's. I'd like to fix
>> > this, but I can't think of anyway around it. I tried to manually
>> > recreate the entity thru the Dashboard, with the same ID (112052) but
>> > that doesnt work as the ID is randomly generated and cannot be edited.
>> > Anyone have any ideas?
>>
>> > Thanks,
>>
>> > Kambiz

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Webworker definition & explanation

2009-08-28 Thread Tim Hoffman

Hi

Actually I think you question is probably a bit vague (define
webworker -  do you mean http://www.whatwg.org/specs/web-workers/current-work/)
for any really meaningful response.

Is the link above what you meant, have you read that document, if not
what that definition what do you mean.
If it is what you mean then its a functionality at the client level
and not really specific to gae or any other backend infrastructire.
but different backend framworks may make it easier to do because of
potential functionality they may have out of the box.

Rgds

Tim
On Aug 28, 1:03 pm, carlsdb  wrote:
> HELP ?  Is this question too challenging or too lame?  I am really new
> to GAE.  Can anyone point me in the right direction on this?  Thank
> you, Carl
>
> On Aug 24, 6:37 pm, carlsdb  wrote:
>
> > Please define webworker and provide a brief explanation of how one
> > uses a webworker.
>
> > Thank you,
> > Carl
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Tim Hoffman

Hi

I found out earlier you can query what indexes exist, but you can't
create them through the api (even though the call exists) at least in
the the python sdk

Have a look at this thread

http://groups.google.com.au/group/google-appengine/browse_thread/thread/9c2cd22c992866e4/48230163d090815f?q=#48230163d090815f

Rgds

Tim

On Aug 27, 11:30 am, rahul kumar  wrote:
> Hello Techies
>
> I want to create Indexes using Google' Datastore Api so that when I am
> saving my entities,I can be able to create & get Indexes also to make
> it easy for my application to search Data.
>
> How can I achieve this.
>
> Please help
>
> thanks
> Rahul Kumar
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Rahul Kumar
Hi Tim

But I am using this through java API. I have the Data & Ported it with &
without index but I am getting index on all the attributes & dont know
whether it will work or not on Million records to get faster result through
query.


On Fri, Aug 28, 2009 at 12:35 PM, Tim Hoffman  wrote:

>
> Hi
>
> I found out earlier you can query what indexes exist, but you can't
> create them through the api (even though the call exists) at least in
> the the python sdk
>
> Have a look at this thread
>
>
> http://groups.google.com.au/group/google-appengine/browse_thread/thread/9c2cd22c992866e4/48230163d090815f?q=#48230163d090815f
>
> Rgds
>
> Tim
>
> On Aug 27, 11:30 am, rahul kumar  wrote:
> > Hello Techies
> >
> > I want to create Indexes using Google' Datastore Api so that when I am
> > saving my entities,I can be able to create & get Indexes also to make
> > it easy for my application to search Data.
> >
> > How can I achieve this.
> >
> > Please help
> >
> > thanks
> > Rahul Kumar
> >
>


-- 
_ _ _ _ _ _ _ _ _ _

Thanks & Regards

Rahul Kumar

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: How can you access App.yaml data?

2009-08-28 Thread djidjadji

app.yaml is skipped during upload.

if you define your own skip_file entry, app.yaml should be uploaded
and you can read it like any other file.

http://code.google.com/appengine/docs/python/config/appconfig.html#Skipping_Files

2009/8/28 Sylvain :
>
> I think it is not possible, app.yaml is not uploaded in the same
> directory than your app.
>
> Maybe you can duplicated this file app.yaml -> settings.yaml, then it
> will be uploaded in the same dir and you could use the yaml lib to
> read it.
>
> Regards
>
>
> On 27 août, 19:47, TC  wrote:
>> Is it possible to access the data in your app.yaml file from your app?
>> (Not the file, but is the data loaded into the code anywhere).
>> For example, I am looking to access the handlers with the login
>> property set to required so that I do not have to repeat some sort of
>> variable in the code because this is inconvenient to maintain. I need
>> to force someone to actually register with the site once signed in
>> with a google account but login:required would still let them view the
>> page without registering so I need to access the urls.
> >
>

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] high variance in cpu_ms for same GET URL & data, constant api_cpu_ms

2009-08-28 Thread Jeff Enderwick

Trolling my logs, I'm coming across cases where there is extreme
(~10x) variance in cpu_ms for the exact same code flow, same GET URL
and same data (not even any intervening writes to the datastore). I am
logging my db.* function accesses, and I have factored out memcache
too. For example:

92ms, 142cpu_ms, 74api_cpu_ms, followed by:
965ms, 1500cpu_ms, 74api_cpu_ms

Q1: what could cause such a whopping delta? I am using Django, so
perhaps template compilation? I used cprofile on the SDK with a
similar data/result set, and the first page served was maybe ~2x
subsequent pages in total time. Thoughts?

Q2: I am assuming the 1st number after the '200' is the wall-clock
time-to-server. As the app is single threaded ... how is it able to
burn 1500ms less 74ms in only 965ms?

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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] KeyError When Psyco is installed

2009-08-28 Thread j...@q42.nl

I was wondering whether the App Engine team is aware of this issue:
http://code.google.com/p/googleappengine/issues/detail?id=995

I'm not sure if this is a bug in psyco or app engine...
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Task queue API exception

2009-08-28 Thread nebulabug

What happens when a task is queued again because of exception ?. Will
it be counted as new task or it will be counted as existing task ?.

If it is counted as a new task then there is a possibility of
exhausting the quota right ?.
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Task queue API exception

2009-08-28 Thread Nick Johnson (Google)
Hi nebulag,
Requeued tasks are deducted from your quota. The Task Queue uses an
exponential backoff scheme to prevent a single error exhausting your quota.

-Nick Johnson

On Fri, Aug 28, 2009 at 11:38 AM, nebulabug  wrote:

>
> What happens when a task is queued again because of exception ?. Will
> it be counted as new task or it will be counted as existing task ?.
>
> If it is counted as a new task then there is a possibility of
> exhausting the quota right ?.
> >
>


-- 
Nick Johnson, Developer Programs Engineer, App Engine

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Timeouts have increased since maintenance on August 18th ?

2009-08-28 Thread Sylvain

Hi,

Today, I've checked the log for one of my app and I've noticed than
one of my handler produces a lot of timeouts since the  maintenance on
August 18th.

Just after the message "Datastore writes are temporarily unavailable."
is gone, a lot of timeouts are raised an now the number seems to be
very high.

Did you notice such behavior ?

Regards
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Building index stucked

2009-08-28 Thread Nick Johnson (Google)
Hi Nad,
I've reset your indexes. You should now be able to vacuum and re-create
them.

-Nick

On Wed, Aug 26, 2009 at 10:08 AM, Nad  wrote:

>
> Hi,
>
> My application indexes have been "building" for over a day, even
> though I have removed all data (entities). I've tried vacuuming the
> indexes using appcfg.py but I get the following error message:
>
> 704 4 indexes were not deleted.  Most likely this is because they no
> longer exist.
>
> I'd really appreciate some help, my applcation ID is "koogaloo".
>
> Thanks,
>
> Nad
>
> >
>


-- 
Nick Johnson, Developer Programs Engineer, App Engine

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Request Slow Down

2009-08-28 Thread Nick Johnson (Google)
On Thu, Aug 27, 2009 at 9:12 PM, Jaap Taal  wrote:

> Hi Nick,
>
> You say: "The same Python runtime environment can be used by multiple
> handlers - in which case they will share the same loaded modules."
> Is this always the case? Or do you need to programmatically do this? If so,
> how do you achieve that?


It happens automatically. The runtime pays no attention to whether an app
has multiple entry points or only one.

-Nick Johnson


>
>
> Jaap
>
>
>
> On Thu, Aug 27, 2009 at 1:47 PM, Nick Johnson (Google) <
> nick.john...@google.com> wrote:
>
>> On Wed, Aug 26, 2009 at 6:39 PM, Andy Freeman wrote:
>>
>>>
>>> Is there any reason to prefer multiple app.yaml entries over few?
>>>
>>> That is, one can match /pages/.*, /users/.*, /tasks/.*, /foo/.*, etc
>>> with separate app.yaml entries, followed by a catch-all app.yaml
>>> entry, each with its own handler file, each file with its own wsgi
>>> application, or with a single app.yaml entry (/.*) and a handler file
>>> with a wsgi application that has a clause for each of those cases.
>>> (Assume that each handler file defines main() so it will be cached.)
>>>
>>> Is there any difference between these two approachs wrt reuse or other
>>> implementation issues?
>>
>>
>> If your handlers are mostly distinct - that is, they have large codebases
>> that they don't share in common with each other - using separate app.yaml
>> handlers can reduce initial startup time by only loading the modules the
>> particular request handler requires.
>>
>> If, like most apps, your handlers need to load most of the app in order to
>> serve a request, however, this effect is minimal.
>>
>>
>>>
>>> For example, if an instance is created for one handler, will it be
>>> used for another?  (The documentation says that handler files can be
>>> cached like any other module, but doesn't say how that interacts with
>>> instance reuse.)
>>
>>
>> The same Python runtime environment can be used by multiple handlers - in
>> which case they will share the same loaded modules.
>>
>> -Nick Johnson
>>
>>
>>>
>>> Thanks,
>>> -andy
>>>
>>> On Aug 26, 4:31 am, "Nick Johnson (Google)" 
>>> wrote:
>>> > Hi PubliusX,
>>> >
>>> > On Tue, Aug 25, 2009 at 8:38 PM, PubliusX 
>>> wrote:
>>> >
>>> > > Hey, thanks.. but I figured out the problem.  Apparently if there are
>>> > > too many requesthandlers (referenced in the handler script), then
>>> > > appengine doesn't cache the handler script.. At least thats what I
>>> > > think.. because I reduced the number by removing an arbitrary 5-6
>>> > > classes and its back to the old time.
>>> >
>>> > That's definitely not the case. App Engine doesn't even know how many
>>> > RequestHandlers you're using, or even check what framework you're
>>> using. You
>>> > were probably just getting a new instance on each request.
>>> >
>>> > -Nick Johnson
>>> >
>>> >
>>> >
>>> > --
>>> > Nick Johnson, Developer Programs Engineer, App Engine
>>>
>>>
>>>
>>
>>
>> --
>> Nick Johnson, Developer Programs Engineer, App Engine
>>
>>
>>
>
> >
>


-- 
Nick Johnson, Developer Programs Engineer, App Engine

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Increasing Task Queue Quota Limit

2009-08-28 Thread Nick Johnson (Google)
Hi Brian,
We'll be increasing the limit across the board in the near future. If you
think you have a compelling use case for getting your limit raised early,
please let me know in a private email what you need it for.

-Nick Johnson

On Fri, Aug 28, 2009 at 1:09 AM, Brian  wrote:

>
> Hello,
>
> I was wondering if we can get our Task Queue quota increased. We have
> seen a substantial increase in usage, and are getting close to the 10K
> limit (we use it to run small background tasks that increase
> proportionally with usage). Our app IDs are worldwidelexicon and
> wwlapi
>
> Thanks.
>
> Brian McConnell
> >
>


-- 
Nick Johnson, Developer Programs Engineer, App Engine

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad

Hi,

Any updates? Almost 24 hours now :( and the indexes are still stuck in
the building state.

Please have a look.

Thanks,
Arun Shanker Prasad.

On Aug 28, 6:42 am, Arun Shanker Prasad 
wrote:
> Hi Jeff,
>
> Still no updates? My indexes are still stuck building.
>
> Thanks,
> Arun Shanker Prasad.
>
> On Aug 28, 2:27 am, Arun Shanker Prasad 
> wrote:
>
>
>
> > Hi,
>
> > I have sent the app id as a mail, please let me know when you have
> > tracked anything down.
>
> > Thanks,
> > Arun Shanker Prasad.
>
> > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> > > Hello, I'd be happy to help but I'm having a tough time tracking down the
> > > app ID that this is for. What is your app ID?
>
> > > Thank you,
>
> > > Jeff
>
> > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> > > arunshankerpra...@gmail.com> wrote:
>
> > > > Hi,
>
> > > > I tried to upload indexes I deleted but they seem to be stuck in the
> > > > Building state.
> > > > I think this is similar to the problem I had earlier, since I think I
> > > > uploaded the same indexes again, my mistake :(
>
> > > >http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> > > > A day full of mistakes
>
> > > > Any help will be GREATLY appreciated.
>
> > > > Thanks,
> > > > Arun Shanker Prasad.
>
> > > > On Aug 27, 7:54 pm, Arun Shanker Prasad 
> > > > wrote:
> > > > > Hi,
>
> > > > > Oh I was afraid that would be the answer :(
>
> > > > > By the time I saw your reply all my indexes were already deleted.
> > > > > Trying to track down all the past backups to get the indexes :(
>
> > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> > > > > Thanks,
> > > > > Arun Shanker Prasad.
>
> > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" 
> > > > > wrote:
>
> > > > > > Hi Arun,
> > > > > > I'm afraid your only option is to recreate the indexes once they've
> > > > finished
> > > > > > deleting. If you no longer have your index.yaml, you can copy down 
> > > > > > the
> > > > index
> > > > > > definitions from the App Engine console index page in order to 
> > > > > > recreate
> > > > it.
>
> > > > > > -Nick Johnson
>
> > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>
> > > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > > > > Hi All,
>
> > > > > > > I tried to vacuum out some indexes that were in the error state, I
> > > > > > > gave
> > > > > > > appcfg.py vacuum_indexes My_application
>
> > > > > > > During the process I missed a couple of them, I tried to give the 
> > > > > > > 'a'
> > > > > > > option thinking that it was the Abort option :( :(
>
> > > > > > > Now all my indexes are in deleting state, its very late in my dev
> > > > > > > stage to track down all the previous indexes and upload them 
> > > > > > > again.
>
> > > > > > > Can anyone please help me to get the indexes back, my app is down 
> > > > > > > at
> > > > > > > the moment due to the missing indexes :( :(
>
> > > > > > > Thanks,
> > > > > > > Arun Shanker Prasad.
>
> > > > > > --
> > > > > > Nick Johnson, Developer Programs Engineer, App Engine
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Just use and host

2009-08-28 Thread Brandon N. Wirtz

Php requires a php to java script, ad gae doesn’t support sql.

-Original Message-
From: google-appengine@googlegroups.com
[mailto:google-appeng...@googlegroups.com] On Behalf Of Jean
Sent: Friday, August 28, 2009 12:22 AM
To: Google App Engine
Subject: [google-appengine] Re: Just use and host


I already did part of this but it is a directory I want to install and
it is PHP/MySQL based, it is not traditional html. Is there a way to
use such a script?

On Aug 28, 12:03 am, "Brandon N. Wirtz"  wrote:
> If I understand your ask this will work.
> But you would likely be happier on Google Apps, or Google Sites.
>
> Install python on your Computer.
> Install the GAE SDK.
> Place all of your static HTML, Images, and "Website"
> In a directory called Static.
> Create an entry for each file in your website in the App.Yaml
> Use the APPCFG.py to deploy your app.
>
>
>
> -Original Message-
> From: google-appengine@googlegroups.com
>
> [mailto:google-appeng...@googlegroups.com] On Behalf Of Jean
> Sent: Thursday, August 27, 2009 8:19 AM
> To: Google App Engine
> Subject: [google-appengine] Just use and host
>
> Hello,
> I am no coder but I would like to use a directory script with my
> domain name.
>
> Does Google App Engine allow to host such a script ?
> I checked the FAQ but I read no concrete answer to my question and
> since I am no coder there is a lot I do not understand here.
>
> I think I found such a script in the gallery but then : what do I do ?
> (I have a domain name)
>
> Thank you



--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Wooble

Most individual attributes are indexed automatically unless you
specify otherwise (I believe the only exceptions are the equivalent's
of the python SDK's TextProperty and BlobProperty).  The indexing
scales fine; the only real issue with having unneeded indexes for the
properties of millions of entities is the space it takes to store
them.  There's a cost at write time as well, but the marginal cost of
updating indexes for any one entity is fairly small unless you have an
exploding index problem, which is only going to occur with composite
indexes anyway.

BTW, the indexes don't help you get "faster results for a query";
without an index you get no results at all.  Unlike most RMDBSes, you
can't choose to filter queries based on unidexed properties and just
live with the incredible slowness of scanning the whole table.  You
get fast queries or none at all.

On Aug 28, 4:52 am, Rahul Kumar  wrote:
> Hi Tim
>
> But I am using this through java API. I have the Data & Ported it with &
> without index but I am getting index on all the attributes & dont know
> whether it will work or not on Million records to get faster result through
> query.
>
>
>
> On Fri, Aug 28, 2009 at 12:35 PM, Tim Hoffman  wrote:
>
> > Hi
>
> > I found out earlier you can query what indexes exist, but you can't
> > create them through the api (even though the call exists) at least in
> > the the python sdk
>
> > Have a look at this thread
>
> >http://groups.google.com.au/group/google-appengine/browse_thread/thre...
>
> > Rgds
>
> > Tim
>
> > On Aug 27, 11:30 am, rahul kumar  wrote:
> > > Hello Techies
>
> > > I want to create Indexes using Google' Datastore Api so that when I am
> > > saving my entities,I can be able to create & get Indexes also to make
> > > it easy for my application to search Data.
>
> > > How can I achieve this.
>
> > > Please help
>
> > > thanks
> > > Rahul Kumar
>
> --
> _ _ _ _ _ _ _ _ _ _
>
> Thanks & Regards
>
> Rahul Kumar
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: How can I create Indexes using Entities in Google's Data Store

2009-08-28 Thread Jai

Hi Rahul,

If you want to turn off indexing then you can use indexed = False, on
the attributes which you don't want to index explicitly, because the
default value is indexed = True for any attribute type except db.Text
and db.Blob, which are not indexed by default.

Though having an index increases the write time, it's the only way of
guaranteeing that your entity can be found using a particular
attribute.

Regards,
Jai



On Aug 28, 4:52 am, Rahul Kumar  wrote:
> Hi Tim
>
> But I am using this through java API. I have the Data & Ported it with &
> without index but I am getting index on all the attributes & dont know
> whether it will work or not on Million records to get faster result through
> query.
>
>
>
> On Fri, Aug 28, 2009 at 12:35 PM, Tim Hoffman  wrote:
>
> > Hi
>
> > I found out earlier you can query what indexes exist, but you can't
> > create them through the api (even though the call exists) at least in
> > the the python sdk
>
> > Have a look at this thread
>
> >http://groups.google.com.au/group/google-appengine/browse_thread/thre...
>
> > Rgds
>
> > Tim
>
> > On Aug 27, 11:30 am, rahul kumar  wrote:
> > > Hello Techies
>
> > > I want to create Indexes using Google' Datastore Api so that when I am
> > > saving my entities,I can be able to create & get Indexes also to make
> > > it easy for my application to search Data.
>
> > > How can I achieve this.
>
> > > Please help
>
> > > thanks
> > > Rahul Kumar
>
> --
> _ _ _ _ _ _ _ _ _ _
>
> Thanks & Regards
>
> Rahul Kumar
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Bigger File Sizes, any timeframe?

2009-08-28 Thread Lee Olayvar
Has there been any word on when AE is getting larger file storage? I've got
a few projects i'd like to put on AE, but I need the ability to host 25-50MB
files.

Thanks,
Lee

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad

Hi,

Bump, any one to help me?

Thanks,
Arun Shanker Prasad.

On Aug 28, 5:37 pm, Arun Shanker Prasad 
wrote:
> Hi,
>
> Any updates? Almost 24 hours now :( and the indexes are still stuck in
> the building state.
>
> Please have a look.
>
> Thanks,
> Arun Shanker Prasad.
>
> On Aug 28, 6:42 am, Arun Shanker Prasad 
> wrote:
>
>
>
> > Hi Jeff,
>
> > Still no updates? My indexes are still stuck building.
>
> > Thanks,
> > Arun Shanker Prasad.
>
> > On Aug 28, 2:27 am, Arun Shanker Prasad 
> > wrote:
>
> > > Hi,
>
> > > I have sent the app id as a mail, please let me know when you have
> > > tracked anything down.
>
> > > Thanks,
> > > Arun Shanker Prasad.
>
> > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> > > > Hello, I'd be happy to help but I'm having a tough time tracking down 
> > > > the
> > > > app ID that this is for. What is your app ID?
>
> > > > Thank you,
>
> > > > Jeff
>
> > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> > > > arunshankerpra...@gmail.com> wrote:
>
> > > > > Hi,
>
> > > > > I tried to upload indexes I deleted but they seem to be stuck in the
> > > > > Building state.
> > > > > I think this is similar to the problem I had earlier, since I think I
> > > > > uploaded the same indexes again, my mistake :(
>
> > > > >http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> > > > > A day full of mistakes
>
> > > > > Any help will be GREATLY appreciated.
>
> > > > > Thanks,
> > > > > Arun Shanker Prasad.
>
> > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad 
> > > > > wrote:
> > > > > > Hi,
>
> > > > > > Oh I was afraid that would be the answer :(
>
> > > > > > By the time I saw your reply all my indexes were already deleted.
> > > > > > Trying to track down all the past backups to get the indexes :(
>
> > > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> > > > > > Thanks,
> > > > > > Arun Shanker Prasad.
>
> > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" 
> > > > > > 
> > > > > > wrote:
>
> > > > > > > Hi Arun,
> > > > > > > I'm afraid your only option is to recreate the indexes once 
> > > > > > > they've
> > > > > finished
> > > > > > > deleting. If you no longer have your index.yaml, you can copy 
> > > > > > > down the
> > > > > index
> > > > > > > definitions from the App Engine console index page in order to 
> > > > > > > recreate
> > > > > it.
>
> > > > > > > -Nick Johnson
>
> > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>
> > > > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > > > > > Hi All,
>
> > > > > > > > I tried to vacuum out some indexes that were in the error 
> > > > > > > > state, I
> > > > > > > > gave
> > > > > > > > appcfg.py vacuum_indexes My_application
>
> > > > > > > > During the process I missed a couple of them, I tried to give 
> > > > > > > > the 'a'
> > > > > > > > option thinking that it was the Abort option :( :(
>
> > > > > > > > Now all my indexes are in deleting state, its very late in my 
> > > > > > > > dev
> > > > > > > > stage to track down all the previous indexes and upload them 
> > > > > > > > again.
>
> > > > > > > > Can anyone please help me to get the indexes back, my app is 
> > > > > > > > down at
> > > > > > > > the moment due to the missing indexes :( :(
>
> > > > > > > > Thanks,
> > > > > > > > Arun Shanker Prasad.
>
> > > > > > > --
> > > > > > > Nick Johnson, Developer Programs Engineer, App Engine
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Just use and host

2009-08-28 Thread Wooble

No; you can't run a PHP/Mysql script.

You can get PHP to work under the java runtime, but you'd need to
completely rewrite the database layer of your application to use the
datastore. Doing this in PHP would almost certainly not be worth the
effort.

On Aug 28, 3:21 am, Jean  wrote:
> I already did part of this but it is a directory I want to install and
> it is PHP/MySQL based, it is not traditional html. Is there a way to
> use such a script?
>
> On Aug 28, 12:03 am, "Brandon N. Wirtz"  wrote:
>
> > If I understand your ask this will work.
> > But you would likely be happier on Google Apps, or Google Sites.
>
> > Install python on your Computer.
> > Install the GAE SDK.
> > Place all of your static HTML, Images, and "Website"
> > In a directory called Static.
> > Create an entry for each file in your website in the App.Yaml
> > Use the APPCFG.py to deploy your app.
>
> > -Original Message-
> > From: google-appengine@googlegroups.com
>
> > [mailto:google-appeng...@googlegroups.com] On Behalf Of Jean
> > Sent: Thursday, August 27, 2009 8:19 AM
> > To: Google App Engine
> > Subject: [google-appengine] Just use and host
>
> > Hello,
> > I am no coder but I would like to use a directory script with my
> > domain name.
>
> > Does Google App Engine allow to host such a script ?
> > I checked the FAQ but I read no concrete answer to my question and
> > since I am no coder there is a lot I do not understand here.
>
> > I think I found such a script in the gallery but then : what do I do ?
> > (I have a domain name)
>
> > Thank you
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Timeouts have increased since maintenance on August 18th ?

2009-08-28 Thread Joe Bowman

For the past couple of days I've been seeing lots of datastore
timeouts. The confusing thing is it seems to be application specific,
as it's only one app that I'm seeing the problem, all the others
appear to be running fine.

On Aug 28, 6:58 am, Sylvain  wrote:
> Hi,
>
> Today, I've checked the log for one of my app and I've noticed than
> one of my handler produces a lot of timeouts since the  maintenance on
> August 18th.
>
> Just after the message "Datastore writes are temporarily unavailable."
> is gone, a lot of timeouts are raised an now the number seems to be
> very high.
>
> Did you notice such behavior ?
>
> Regards
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Just use and host

2009-08-28 Thread Jean

Would there be another solution for me to run a directory using Google
App Engine with my domain names ?

Use an existing script  or a similar application ?

Thx for you rsupport

On Aug 28, 3:48 pm, Wooble  wrote:
> No; you can't run a PHP/Mysql script.
>
> You can get PHP to work under the java runtime, but you'd need to
> completely rewrite the database layer of your application to use the
> datastore. Doing this in PHP would almost certainly not be worth the
> effort.
>
> On Aug 28, 3:21 am, Jean  wrote:
>
>
>
> > I already did part of this but it is a directory I want to install and
> > it is PHP/MySQL based, it is not traditional html. Is there a way to
> > use such a script?
>
> > On Aug 28, 12:03 am, "Brandon N. Wirtz"  wrote:
>
> > > If I understand your ask this will work.
> > > But you would likely be happier on Google Apps, or Google Sites.
>
> > > Install python on your Computer.
> > > Install the GAE SDK.
> > > Place all of your static HTML, Images, and "Website"
> > > In a directory called Static.
> > > Create an entry for each file in your website in the App.Yaml
> > > Use the APPCFG.py to deploy your app.
>
> > > -Original Message-
> > > From: google-appengine@googlegroups.com
>
> > > [mailto:google-appeng...@googlegroups.com] On Behalf Of Jean
> > > Sent: Thursday, August 27, 2009 8:19 AM
> > > To: Google App Engine
> > > Subject: [google-appengine] Just use and host
>
> > > Hello,
> > > I am no coder but I would like to use a directory script with my
> > > domain name.
>
> > > Does Google App Engine allow to host such a script ?
> > > I checked the FAQ but I read no concrete answer to my question and
> > > since I am no coder there is a lot I do not understand here.
>
> > > I think I found such a script in the gallery but then : what do I do ?
> > > (I have a domain name)
>
> > > Thank you
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)
It looks like your indexes are all in the deleting state, I'll keep you
posted.

On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
arunshankerpra...@gmail.com> wrote:

>
> Hi,
>
> Bump, any one to help me?
>
> Thanks,
> Arun Shanker Prasad.
>
> On Aug 28, 5:37 pm, Arun Shanker Prasad 
> wrote:
> > Hi,
> >
> > Any updates? Almost 24 hours now :( and the indexes are still stuck in
> > the building state.
> >
> > Please have a look.
> >
> > Thanks,
> > Arun Shanker Prasad.
> >
> > On Aug 28, 6:42 am, Arun Shanker Prasad 
> > wrote:
> >
> >
> >
> > > Hi Jeff,
> >
> > > Still no updates? My indexes are still stuck building.
> >
> > > Thanks,
> > > Arun Shanker Prasad.
> >
> > > On Aug 28, 2:27 am, Arun Shanker Prasad 
> > > wrote:
> >
> > > > Hi,
> >
> > > > I have sent the app id as a mail, please let me know when you have
> > > > tracked anything down.
> >
> > > > Thanks,
> > > > Arun Shanker Prasad.
> >
> > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
> >
> > > > > Hello, I'd be happy to help but I'm having a tough time tracking
> down the
> > > > > app ID that this is for. What is your app ID?
> >
> > > > > Thank you,
> >
> > > > > Jeff
> >
> > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
> >
> > > > > arunshankerpra...@gmail.com> wrote:
> >
> > > > > > Hi,
> >
> > > > > > I tried to upload indexes I deleted but they seem to be stuck in
> the
> > > > > > Building state.
> > > > > > I think this is similar to the problem I had earlier, since I
> think I
> > > > > > uploaded the same indexes again, my mistake :(
> >
> > > > > >
> http://groups.google.com/group/google-appengine/browse_thread/thread/...
> >
> > > > > > A day full of mistakes
> >
> > > > > > Any help will be GREATLY appreciated.
> >
> > > > > > Thanks,
> > > > > > Arun Shanker Prasad.
> >
> > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
> arunshankerpra...@gmail.com>
> > > > > > wrote:
> > > > > > > Hi,
> >
> > > > > > > Oh I was afraid that would be the answer :(
> >
> > > > > > > By the time I saw your reply all my indexes were already
> deleted.
> > > > > > > Trying to track down all the past backups to get the indexes :(
> >
> > > > > > > The 'a' option SHOULD really be REMOVED :( :(
> >
> > > > > > > Thanks,
> > > > > > > Arun Shanker Prasad.
> >
> > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
> nick.john...@google.com>
> > > > > > > wrote:
> >
> > > > > > > > Hi Arun,
> > > > > > > > I'm afraid your only option is to recreate the indexes once
> they've
> > > > > > finished
> > > > > > > > deleting. If you no longer have your index.yaml, you can copy
> down the
> > > > > > index
> > > > > > > > definitions from the App Engine console index page in order
> to recreate
> > > > > > it.
> >
> > > > > > > > -Nick Johnson
> >
> > > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
> >
> > > > > > > > arunshankerpra...@gmail.com> wrote:
> >
> > > > > > > > > Hi All,
> >
> > > > > > > > > I tried to vacuum out some indexes that were in the error
> state, I
> > > > > > > > > gave
> > > > > > > > > appcfg.py vacuum_indexes My_application
> >
> > > > > > > > > During the process I missed a couple of them, I tried to
> give the 'a'
> > > > > > > > > option thinking that it was the Abort option :( :(
> >
> > > > > > > > > Now all my indexes are in deleting state, its very late in
> my dev
> > > > > > > > > stage to track down all the previous indexes and upload
> them again.
> >
> > > > > > > > > Can anyone please help me to get the indexes back, my app
> is down at
> > > > > > > > > the moment due to the missing indexes :( :(
> >
> > > > > > > > > Thanks,
> > > > > > > > > Arun Shanker Prasad.
> >
> > > > > > > > --
> > > > > > > > Nick Johnson, Developer Programs Engineer, App Engine
> >
>

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] JPA, more then one primary key

2009-08-28 Thread ralph.kretz...@googlemail.com

Hello,

I have an Article entity and an ArticleCode entity. Aritcle Code has
Article as forgeing key but is has also a second and third primary
key.

The example below isnt possible because Article isnt serializable. Any
ideas?


Thanks,
Ralph


@Entity
@Table(name="article")
public class Article {

@Id
@GeneratedValue(strategy=GenerationType.TABLE)
private Long id;

public Long getId() { return id; }
}

@Entity
@IdClass
(com.google.gwt.sample.stockwatcher.server.huflattich.ArticleCode.ComposedIdKey.class)
public class ArticleCode {

@Id
@OneToOne
private Article article;

@Id
@Column(name="coding_system")
private String codingSystem;

@Id
private String code;

...

public static class ComposedIdKey implements Serializable {
public Article article;
public String codingSystem;
public String code;

public ComposedIdKey () { }

public ComposedIdKey(Article article, String codingSystem, String
code) {
this.article = article;
this.codingSystem = codingSystem;
this.code = code;
}

 ...
}
}

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] upload application

2009-08-28 Thread Steven Etzkorn

I have 6 applications on google appengine. So I have install
applications before. I am attempting to upload my third application to
stetzkorn3.appspot.com. I was able to login to the console and create
the application name: stetzkorn3. When I go to upload my new
application I am told I don't have permissions. But I do.

I am missing something. I do have two google gmail accounts. One I use
for my company email and the other for developing application. Could
this be a problem?

This is very frustrating.

Thanks for your help.

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] index building stuck

2009-08-28 Thread martin.kukan

Hi,

I'm using java and low level api for the datastore and after uploading
incorrect index definition (I specified a column in index which
doesn't exist) the index is stuck on building. I've updated the index
definition with no indexes also added the missing column but nothing
helps. My app id is fotomaraton-twig.

Thanks for help,

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] datastore question: Tags as expando dynamic properties or use a list?

2009-08-28 Thread Doug

Hi,

I'm very new to GAE and was curous if there is a performance penalty
with regards to queries and exploding indices, etc. etc... if one
implements tags (a list of category names for a record if you will) as
dynamic properties vs.  just list.

As a dynamic property I was thinking a possibility would be:
obj.tag_moe="moe"
obj.tag_curly="curly"
(Of course, this assumes I can specify the name of a dynamic tag at
creation time)

so if I wanted to query a database for tags "xxx" and "yyy", could I
do:
SELECT * FROM myModel WHERE tag_moe = "moe" AND tag_curly = "curly"
ORDER by date


Or... as a list of tags a possibility would be:
obj.tags = ["moe", "curly"]

and the query
SELECT * FROM myModel WHERE tags = "moe" AND tags = "curly" ORDER by
date


Thanks for any insight
-d

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Task queue API exception

2009-08-28 Thread Sai

Thanks.

On Aug 28, 7:17 am, "Nick Johnson (Google)" 
wrote:
> Hi nebulag,
> Requeued tasks are deducted from your quota. The Task Queue uses an
> exponential backoff scheme to prevent a single error exhausting your quota.
>
> -Nick Johnson
>
> On Fri, Aug 28, 2009 at 11:38 AM, nebulabug  wrote:
>
> > What happens when a task is queued again because of exception ?. Will
> > it be counted as new task or it will be counted as existing task ?.
>
> > If it is counted as a new task then there is a possibility of
> > exhausting the quota right ?.
>
> --
> Nick Johnson, Developer Programs Engineer, App Engine

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: index building stuck

2009-08-28 Thread Jeff S (Google)

Hi all,

There is currently a slowdown in the processing of index changes.
We're aware of the issue and will keep you updated.

Apologies for the inconvenience,

Jeff

On Aug 28, 4:57 am, "martin.kukan"  wrote:
> Hi,
>
> I'm using java and low level api for the datastore and after uploading
> incorrect index definition (I specified a column in index which
> doesn't exist) the index is stuck on building. I've updated the index
> definition with no indexes also added the missing column but nothing
> helps. My app id is fotomaraton-twig.
>
> Thanks for help,
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Google Checkout "Rate Your Experience" emails

2009-08-28 Thread Nick Johnson (Google)
Hi Ben,

Thanks for the heads-up. We recognize it can be pretty annoying, and we're
working on it.

-Nick

On Fri, Aug 28, 2009 at 6:53 AM, Ben Nevile  wrote:

>
> Hi,
>
> Is there any way to get Google Checkout to stop sending me "Rate your
> shopping experience" emails?  I've answered them, but they keep
> coming.  I have a handful of apps and each of them generates a
> checkout charge once a day, which means I get a handful of "rate your
> shopping experience" emails every day.
>
> Ben
>
>
> >
>


-- 
Nick Johnson, Developer Programs Engineer, App Engine

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] index building

2009-08-28 Thread fedex1

Hi,

I have an application id "wsxnyc" that is in index "building" and
"deleting" mode.

Can you tell me how to reset it or can you reset it.

I apologize but vacuum also returns an error.

Thanks,
Ralph
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)
The indexes have now been deleted for this app.

Thank you,

Jeff

On Fri, Aug 28, 2009 at 9:56 AM, Jeff S (Google)  wrote:

> It looks like your indexes are all in the deleting state, I'll keep you
> posted.
>
>
> On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
> arunshankerpra...@gmail.com> wrote:
>
>>
>> Hi,
>>
>> Bump, any one to help me?
>>
>> Thanks,
>> Arun Shanker Prasad.
>>
>> On Aug 28, 5:37 pm, Arun Shanker Prasad 
>> wrote:
>> > Hi,
>> >
>> > Any updates? Almost 24 hours now :( and the indexes are still stuck in
>> > the building state.
>> >
>> > Please have a look.
>> >
>> > Thanks,
>> > Arun Shanker Prasad.
>> >
>> > On Aug 28, 6:42 am, Arun Shanker Prasad 
>> > wrote:
>> >
>> >
>> >
>> > > Hi Jeff,
>> >
>> > > Still no updates? My indexes are still stuck building.
>> >
>> > > Thanks,
>> > > Arun Shanker Prasad.
>> >
>> > > On Aug 28, 2:27 am, Arun Shanker Prasad 
>> > > wrote:
>> >
>> > > > Hi,
>> >
>> > > > I have sent the app id as a mail, please let me know when you have
>> > > > tracked anything down.
>> >
>> > > > Thanks,
>> > > > Arun Shanker Prasad.
>> >
>> > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>> >
>> > > > > Hello, I'd be happy to help but I'm having a tough time tracking
>> down the
>> > > > > app ID that this is for. What is your app ID?
>> >
>> > > > > Thank you,
>> >
>> > > > > Jeff
>> >
>> > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>> >
>> > > > > arunshankerpra...@gmail.com> wrote:
>> >
>> > > > > > Hi,
>> >
>> > > > > > I tried to upload indexes I deleted but they seem to be stuck in
>> the
>> > > > > > Building state.
>> > > > > > I think this is similar to the problem I had earlier, since I
>> think I
>> > > > > > uploaded the same indexes again, my mistake :(
>> >
>> > > > > >
>> http://groups.google.com/group/google-appengine/browse_thread/thread/...
>> >
>> > > > > > A day full of mistakes
>> >
>> > > > > > Any help will be GREATLY appreciated.
>> >
>> > > > > > Thanks,
>> > > > > > Arun Shanker Prasad.
>> >
>> > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
>> arunshankerpra...@gmail.com>
>> > > > > > wrote:
>> > > > > > > Hi,
>> >
>> > > > > > > Oh I was afraid that would be the answer :(
>> >
>> > > > > > > By the time I saw your reply all my indexes were already
>> deleted.
>> > > > > > > Trying to track down all the past backups to get the indexes
>> :(
>> >
>> > > > > > > The 'a' option SHOULD really be REMOVED :( :(
>> >
>> > > > > > > Thanks,
>> > > > > > > Arun Shanker Prasad.
>> >
>> > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
>> nick.john...@google.com>
>> > > > > > > wrote:
>> >
>> > > > > > > > Hi Arun,
>> > > > > > > > I'm afraid your only option is to recreate the indexes once
>> they've
>> > > > > > finished
>> > > > > > > > deleting. If you no longer have your index.yaml, you can
>> copy down the
>> > > > > > index
>> > > > > > > > definitions from the App Engine console index page in order
>> to recreate
>> > > > > > it.
>> >
>> > > > > > > > -Nick Johnson
>> >
>> > > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>> >
>> > > > > > > > arunshankerpra...@gmail.com> wrote:
>> >
>> > > > > > > > > Hi All,
>> >
>> > > > > > > > > I tried to vacuum out some indexes that were in the error
>> state, I
>> > > > > > > > > gave
>> > > > > > > > > appcfg.py vacuum_indexes My_application
>> >
>> > > > > > > > > During the process I missed a couple of them, I tried to
>> give the 'a'
>> > > > > > > > > option thinking that it was the Abort option :( :(
>> >
>> > > > > > > > > Now all my indexes are in deleting state, its very late in
>> my dev
>> > > > > > > > > stage to track down all the previous indexes and upload
>> them again.
>> >
>> > > > > > > > > Can anyone please help me to get the indexes back, my app
>> is down at
>> > > > > > > > > the moment due to the missing indexes :( :(
>> >
>> > > > > > > > > Thanks,
>> > > > > > > > > Arun Shanker Prasad.
>> >
>> > > > > > > > --
>> > > > > > > > Nick Johnson, Developer Programs Engineer, App Engine
>> >>
>>
>

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad

Hi Jeff,

Thank You for removing the indexes.

I tried to upload the old indexes one at a time, but I get the
following error after I run the appcfg.py

Uploading index definitions.
Error 500: --- begin server output ---

Server Error (500)
A server error has occurred.
--- end server output ---

Last time I uploaded a whole bunch which seemed to get stuck.

Thanks,
Arun Shanker Prasad.

On Aug 29, 12:09 am, "Jeff S (Google)"  wrote:
> The indexes have now been deleted for this app.
>
> Thank you,
>
> Jeff
>
> On Fri, Aug 28, 2009 at 9:56 AM, Jeff S (Google)  wrote:
>
>
>
> > It looks like your indexes are all in the deleting state, I'll keep you
> > posted.
>
> > On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
> > arunshankerpra...@gmail.com> wrote:
>
> >> Hi,
>
> >> Bump, any one to help me?
>
> >> Thanks,
> >> Arun Shanker Prasad.
>
> >> On Aug 28, 5:37 pm, Arun Shanker Prasad 
> >> wrote:
> >> > Hi,
>
> >> > Any updates? Almost 24 hours now :( and the indexes are still stuck in
> >> > the building state.
>
> >> > Please have a look.
>
> >> > Thanks,
> >> > Arun Shanker Prasad.
>
> >> > On Aug 28, 6:42 am, Arun Shanker Prasad 
> >> > wrote:
>
> >> > > Hi Jeff,
>
> >> > > Still no updates? My indexes are still stuck building.
>
> >> > > Thanks,
> >> > > Arun Shanker Prasad.
>
> >> > > On Aug 28, 2:27 am, Arun Shanker Prasad 
> >> > > wrote:
>
> >> > > > Hi,
>
> >> > > > I have sent the app id as a mail, please let me know when you have
> >> > > > tracked anything down.
>
> >> > > > Thanks,
> >> > > > Arun Shanker Prasad.
>
> >> > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> >> > > > > Hello, I'd be happy to help but I'm having a tough time tracking
> >> down the
> >> > > > > app ID that this is for. What is your app ID?
>
> >> > > > > Thank you,
>
> >> > > > > Jeff
>
> >> > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> >> > > > > arunshankerpra...@gmail.com> wrote:
>
> >> > > > > > Hi,
>
> >> > > > > > I tried to upload indexes I deleted but they seem to be stuck in
> >> the
> >> > > > > > Building state.
> >> > > > > > I think this is similar to the problem I had earlier, since I
> >> think I
> >> > > > > > uploaded the same indexes again, my mistake :(
>
> >>http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> >> > > > > > A day full of mistakes
>
> >> > > > > > Any help will be GREATLY appreciated.
>
> >> > > > > > Thanks,
> >> > > > > > Arun Shanker Prasad.
>
> >> > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
> >> arunshankerpra...@gmail.com>
> >> > > > > > wrote:
> >> > > > > > > Hi,
>
> >> > > > > > > Oh I was afraid that would be the answer :(
>
> >> > > > > > > By the time I saw your reply all my indexes were already
> >> deleted.
> >> > > > > > > Trying to track down all the past backups to get the indexes
> >> :(
>
> >> > > > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> >> > > > > > > Thanks,
> >> > > > > > > Arun Shanker Prasad.
>
> >> > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
> >> nick.john...@google.com>
> >> > > > > > > wrote:
>
> >> > > > > > > > Hi Arun,
> >> > > > > > > > I'm afraid your only option is to recreate the indexes once
> >> they've
> >> > > > > > finished
> >> > > > > > > > deleting. If you no longer have your index.yaml, you can
> >> copy down the
> >> > > > > > index
> >> > > > > > > > definitions from the App Engine console index page in order
> >> to recreate
> >> > > > > > it.
>
> >> > > > > > > > -Nick Johnson
>
> >> > > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>
> >> > > > > > > > arunshankerpra...@gmail.com> wrote:
>
> >> > > > > > > > > Hi All,
>
> >> > > > > > > > > I tried to vacuum out some indexes that were in the error
> >> state, I
> >> > > > > > > > > gave
> >> > > > > > > > > appcfg.py vacuum_indexes My_application
>
> >> > > > > > > > > During the process I missed a couple of them, I tried to
> >> give the 'a'
> >> > > > > > > > > option thinking that it was the Abort option :( :(
>
> >> > > > > > > > > Now all my indexes are in deleting state, its very late in
> >> my dev
> >> > > > > > > > > stage to track down all the previous indexes and upload
> >> them again.
>
> >> > > > > > > > > Can anyone please help me to get the indexes back, my app
> >> is down at
> >> > > > > > > > > the moment due to the missing indexes :( :(
>
> >> > > > > > > > > Thanks,
> >> > > > > > > > > Arun Shanker Prasad.
>
> >> > > > > > > > --
> >> > > > > > > > Nick Johnson, Developer Programs Engineer, App Engine
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)

Index creation and deletion is slow at the moment, so uploading new
indexes may not currently be possible. We've posted a notice on the
status site, apologies:

http://code.google.com/status/appengine

-Jeff

On Aug 28, 12:14 pm, Arun Shanker Prasad 
wrote:
> Hi Jeff,
>
> Thank You for removing the indexes.
>
> I tried to upload the old indexes one at a time, but I get the
> following error after I run the appcfg.py
>
> Uploading index definitions.
> Error 500: --- begin server output ---
>
> Server Error (500)
> A server error has occurred.
> --- end server output ---
>
> Last time I uploaded a whole bunch which seemed to get stuck.
>
> Thanks,
> Arun Shanker Prasad.
>
> On Aug 29, 12:09 am, "Jeff S (Google)"  wrote:
>
> > The indexes have now been deleted for this app.
>
> > Thank you,
>
> > Jeff
>
> > On Fri, Aug 28, 2009 at 9:56 AM, Jeff S (Google)  wrote:
>
> > > It looks like your indexes are all in the deleting state, I'll keep you
> > > posted.
>
> > > On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
> > > arunshankerpra...@gmail.com> wrote:
>
> > >> Hi,
>
> > >> Bump, any one to help me?
>
> > >> Thanks,
> > >> Arun Shanker Prasad.
>
> > >> On Aug 28, 5:37 pm, Arun Shanker Prasad 
> > >> wrote:
> > >> > Hi,
>
> > >> > Any updates? Almost 24 hours now :( and the indexes are still stuck in
> > >> > the building state.
>
> > >> > Please have a look.
>
> > >> > Thanks,
> > >> > Arun Shanker Prasad.
>
> > >> > On Aug 28, 6:42 am, Arun Shanker Prasad 
> > >> > wrote:
>
> > >> > > Hi Jeff,
>
> > >> > > Still no updates? My indexes are still stuck building.
>
> > >> > > Thanks,
> > >> > > Arun Shanker Prasad.
>
> > >> > > On Aug 28, 2:27 am, Arun Shanker Prasad 
> > >> > > wrote:
>
> > >> > > > Hi,
>
> > >> > > > I have sent the app id as a mail, please let me know when you have
> > >> > > > tracked anything down.
>
> > >> > > > Thanks,
> > >> > > > Arun Shanker Prasad.
>
> > >> > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> > >> > > > > Hello, I'd be happy to help but I'm having a tough time tracking
> > >> down the
> > >> > > > > app ID that this is for. What is your app ID?
>
> > >> > > > > Thank you,
>
> > >> > > > > Jeff
>
> > >> > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> > >> > > > > arunshankerpra...@gmail.com> wrote:
>
> > >> > > > > > Hi,
>
> > >> > > > > > I tried to upload indexes I deleted but they seem to be stuck 
> > >> > > > > > in
> > >> the
> > >> > > > > > Building state.
> > >> > > > > > I think this is similar to the problem I had earlier, since I
> > >> think I
> > >> > > > > > uploaded the same indexes again, my mistake :(
>
> > >>http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> > >> > > > > > A day full of mistakes
>
> > >> > > > > > Any help will be GREATLY appreciated.
>
> > >> > > > > > Thanks,
> > >> > > > > > Arun Shanker Prasad.
>
> > >> > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
> > >> arunshankerpra...@gmail.com>
> > >> > > > > > wrote:
> > >> > > > > > > Hi,
>
> > >> > > > > > > Oh I was afraid that would be the answer :(
>
> > >> > > > > > > By the time I saw your reply all my indexes were already
> > >> deleted.
> > >> > > > > > > Trying to track down all the past backups to get the indexes
> > >> :(
>
> > >> > > > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> > >> > > > > > > Thanks,
> > >> > > > > > > Arun Shanker Prasad.
>
> > >> > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
> > >> nick.john...@google.com>
> > >> > > > > > > wrote:
>
> > >> > > > > > > > Hi Arun,
> > >> > > > > > > > I'm afraid your only option is to recreate the indexes once
> > >> they've
> > >> > > > > > finished
> > >> > > > > > > > deleting. If you no longer have your index.yaml, you can
> > >> copy down the
> > >> > > > > > index
> > >> > > > > > > > definitions from the App Engine console index page in order
> > >> to recreate
> > >> > > > > > it.
>
> > >> > > > > > > > -Nick Johnson
>
> > >> > > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>
> > >> > > > > > > > arunshankerpra...@gmail.com> wrote:
>
> > >> > > > > > > > > Hi All,
>
> > >> > > > > > > > > I tried to vacuum out some indexes that were in the error
> > >> state, I
> > >> > > > > > > > > gave
> > >> > > > > > > > > appcfg.py vacuum_indexes My_application
>
> > >> > > > > > > > > During the process I missed a couple of them, I tried to
> > >> give the 'a'
> > >> > > > > > > > > option thinking that it was the Abort option :( :(
>
> > >> > > > > > > > > Now all my indexes are in deleting state, its very late 
> > >> > > > > > > > > in
> > >> my dev
> > >> > > > > > > > > stage to track down all the previous indexes and upload
> > >> them again.
>
> > >> > > > > > > > > Can anyone please help me to get the indexes back, my app
> > >> is down at
> > >> > > > > > > > > the moment due to the missing indexes :( :(
>
> > >> > > > > > > > > Thanks,
> > >> > > > > > > > > Arun Shanker Prasad.
>
> > >> > > > > > > > --
>

[google-appengine] Help: indexes stuck building

2009-08-28 Thread luciferous

Tried to vacuum, but error message is that the index doesn't exist.
Tried uploading an empty project, and then re-uploading the project,
but I get:

Uploading index definitions.
Error 500: --- begin server output ---

Server Error (500)
A server error has occurred.
--- end server output ---
Your app was updated, but there was an error updating your indexes.
Please retry later with appcfg.py update_indexes.

My app is 'e-drop'. Need some help here.

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] setting a favicon in java app using eclipse

2009-08-28 Thread Phone Guy

Of all the things to get hung up on, this one should not be it...  I
cannot for the life of me make my favicon.ico show up in my
application.  I'm writing a java app using the eclipse plug to
deploy.  The instructions for this in python are pretty clear.  For
java, I keep reading that I just need to drop the icon file in the war
root directory and it will get picked up.  So I think I'm doing that
right, but I cannot for the life of me make the icon appear in my
application.

Has anyone else run into this?

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Timeouts have increased since maintenance on August 18th ?

2009-08-28 Thread lookon

I've seen a lot of timeouts today

On Aug 28, 11:10 pm, Joe Bowman  wrote:
> For the past couple of days I've been seeing lots of datastore
> timeouts. The confusing thing is it seems to be application specific,
> as it's only one app that I'm seeing the problem, all the others
> appear to be running fine.
>
> On Aug 28, 6:58 am, Sylvain  wrote:
>
>
>
> > Hi,
>
> > Today, I've checked the log for one of my app and I've noticed than
> > one of my handler produces a lot of timeouts since the  maintenance on
> > August 18th.
>
> > Just after the message "Datastore writes are temporarily unavailable."
> > is gone, a lot of timeouts are raised an now the number seems to be
> > very high.
>
> > Did you notice such behavior ?
>
> > Regards

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad

Hi,

Thank You Jeff for the quick response.
I will wait for the status to return to normal before I try to upload
again.

Thanks a bunch to You and Nick for the help :D :D

Thanks,
Arun Shanker Prasad.

On Aug 29, 1:04 am, "Jeff S (Google)"  wrote:
> Index creation and deletion is slow at the moment, so uploading new
> indexes may not currently be possible. We've posted a notice on the
> status site, apologies:
>
> http://code.google.com/status/appengine
>
> -Jeff
>
> On Aug 28, 12:14 pm, Arun Shanker Prasad 
> wrote:
>
>
>
> > Hi Jeff,
>
> > Thank You for removing the indexes.
>
> > I tried to upload the old indexes one at a time, but I get the
> > following error after I run the appcfg.py
>
> > Uploading index definitions.
> > Error 500: --- begin server output ---
>
> > Server Error (500)
> > A server error has occurred.
> > --- end server output ---
>
> > Last time I uploaded a whole bunch which seemed to get stuck.
>
> > Thanks,
> > Arun Shanker Prasad.
>
> > On Aug 29, 12:09 am, "Jeff S (Google)"  wrote:
>
> > > The indexes have now been deleted for this app.
>
> > > Thank you,
>
> > > Jeff
>
> > > On Fri, Aug 28, 2009 at 9:56 AM, Jeff S (Google)  wrote:
>
> > > > It looks like your indexes are all in the deleting state, I'll keep you
> > > > posted.
>
> > > > On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
> > > > arunshankerpra...@gmail.com> wrote:
>
> > > >> Hi,
>
> > > >> Bump, any one to help me?
>
> > > >> Thanks,
> > > >> Arun Shanker Prasad.
>
> > > >> On Aug 28, 5:37 pm, Arun Shanker Prasad 
> > > >> wrote:
> > > >> > Hi,
>
> > > >> > Any updates? Almost 24 hours now :( and the indexes are still stuck 
> > > >> > in
> > > >> > the building state.
>
> > > >> > Please have a look.
>
> > > >> > Thanks,
> > > >> > Arun Shanker Prasad.
>
> > > >> > On Aug 28, 6:42 am, Arun Shanker Prasad 
> > > >> > wrote:
>
> > > >> > > Hi Jeff,
>
> > > >> > > Still no updates? My indexes are still stuck building.
>
> > > >> > > Thanks,
> > > >> > > Arun Shanker Prasad.
>
> > > >> > > On Aug 28, 2:27 am, Arun Shanker Prasad 
> > > >> > > 
> > > >> > > wrote:
>
> > > >> > > > Hi,
>
> > > >> > > > I have sent the app id as a mail, please let me know when you 
> > > >> > > > have
> > > >> > > > tracked anything down.
>
> > > >> > > > Thanks,
> > > >> > > > Arun Shanker Prasad.
>
> > > >> > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> > > >> > > > > Hello, I'd be happy to help but I'm having a tough time 
> > > >> > > > > tracking
> > > >> down the
> > > >> > > > > app ID that this is for. What is your app ID?
>
> > > >> > > > > Thank you,
>
> > > >> > > > > Jeff
>
> > > >> > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> > > >> > > > > arunshankerpra...@gmail.com> wrote:
>
> > > >> > > > > > Hi,
>
> > > >> > > > > > I tried to upload indexes I deleted but they seem to be 
> > > >> > > > > > stuck in
> > > >> the
> > > >> > > > > > Building state.
> > > >> > > > > > I think this is similar to the problem I had earlier, since I
> > > >> think I
> > > >> > > > > > uploaded the same indexes again, my mistake :(
>
> > > >>http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> > > >> > > > > > A day full of mistakes
>
> > > >> > > > > > Any help will be GREATLY appreciated.
>
> > > >> > > > > > Thanks,
> > > >> > > > > > Arun Shanker Prasad.
>
> > > >> > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
> > > >> arunshankerpra...@gmail.com>
> > > >> > > > > > wrote:
> > > >> > > > > > > Hi,
>
> > > >> > > > > > > Oh I was afraid that would be the answer :(
>
> > > >> > > > > > > By the time I saw your reply all my indexes were already
> > > >> deleted.
> > > >> > > > > > > Trying to track down all the past backups to get the 
> > > >> > > > > > > indexes
> > > >> :(
>
> > > >> > > > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> > > >> > > > > > > Thanks,
> > > >> > > > > > > Arun Shanker Prasad.
>
> > > >> > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
> > > >> nick.john...@google.com>
> > > >> > > > > > > wrote:
>
> > > >> > > > > > > > Hi Arun,
> > > >> > > > > > > > I'm afraid your only option is to recreate the indexes 
> > > >> > > > > > > > once
> > > >> they've
> > > >> > > > > > finished
> > > >> > > > > > > > deleting. If you no longer have your index.yaml, you can
> > > >> copy down the
> > > >> > > > > > index
> > > >> > > > > > > > definitions from the App Engine console index page in 
> > > >> > > > > > > > order
> > > >> to recreate
> > > >> > > > > > it.
>
> > > >> > > > > > > > -Nick Johnson
>
> > > >> > > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>
> > > >> > > > > > > > arunshankerpra...@gmail.com> wrote:
>
> > > >> > > > > > > > > Hi All,
>
> > > >> > > > > > > > > I tried to vacuum out some indexes that were in the 
> > > >> > > > > > > > > error
> > > >> state, I
> > > >> > > > > > > > > gave
> > > >> > > > > > > > > appcfg.py vacuum_indexes My_application
>
> > > >> > > > > > > > > During the pr

[google-appengine] Re: Just use and host

2009-08-28 Thread Wooble

I'm not sure what you mean by "directory".  Any meaning I can think of
for the term seems like it would be trivial to code.

On Aug 28, 10:23 am, Jean  wrote:
> Would there be another solution for me to run a directory using Google
> App Engine with my domain names ?
>
> Use an existing script  or a similar application ?
>
> Thx for you rsupport
>
> On Aug 28, 3:48 pm, Wooble  wrote:
>
> > No; you can't run a PHP/Mysql script.
>
> > You can get PHP to work under the java runtime, but you'd need to
> > completely rewrite the database layer of your application to use the
> > datastore. Doing this in PHP would almost certainly not be worth the
> > effort.
>
> > On Aug 28, 3:21 am, Jean  wrote:
>
> > > I already did part of this but it is a directory I want to install and
> > > it is PHP/MySQL based, it is not traditional html. Is there a way to
> > > use such a script?
>
> > > On Aug 28, 12:03 am, "Brandon N. Wirtz"  wrote:
>
> > > > If I understand your ask this will work.
> > > > But you would likely be happier on Google Apps, or Google Sites.
>
> > > > Install python on your Computer.
> > > > Install the GAE SDK.
> > > > Place all of your static HTML, Images, and "Website"
> > > > In a directory called Static.
> > > > Create an entry for each file in your website in the App.Yaml
> > > > Use the APPCFG.py to deploy your app.
>
> > > > -Original Message-
> > > > From: google-appengine@googlegroups.com
>
> > > > [mailto:google-appeng...@googlegroups.com] On Behalf Of Jean
> > > > Sent: Thursday, August 27, 2009 8:19 AM
> > > > To: Google App Engine
> > > > Subject: [google-appengine] Just use and host
>
> > > > Hello,
> > > > I am no coder but I would like to use a directory script with my
> > > > domain name.
>
> > > > Does Google App Engine allow to host such a script ?
> > > > I checked the FAQ but I read no concrete answer to my question and
> > > > since I am no coder there is a lot I do not understand here.
>
> > > > I think I found such a script in the gallery but then : what do I do ?
> > > > (I have a domain name)
>
> > > > Thank you
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad

Hi,

Thank you Jeff.
Thanks to Nick for moving those indexes to the ERROR state, so I could
delete them.

I had deleted them almost 3 hours ago, they are still shown as
deleting in the dashboard, I also got a 500 error while running the
appcfg.py initially to vacuum the indexes. Could this have caused the
indexes to be stuck in the Deleting state?

Thanks,
Arun Shanker Prasad.

On Aug 28, 9:56 pm, "Jeff S (Google)"  wrote:
> It looks like your indexes are all in the deleting state, I'll keep you
> posted.
>
> On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
>
>
>
> arunshankerpra...@gmail.com> wrote:
>
> > Hi,
>
> > Bump, any one to help me?
>
> > Thanks,
> > Arun Shanker Prasad.
>
> > On Aug 28, 5:37 pm, Arun Shanker Prasad 
> > wrote:
> > > Hi,
>
> > > Any updates? Almost 24 hours now :( and the indexes are still stuck in
> > > the building state.
>
> > > Please have a look.
>
> > > Thanks,
> > > Arun Shanker Prasad.
>
> > > On Aug 28, 6:42 am, Arun Shanker Prasad 
> > > wrote:
>
> > > > Hi Jeff,
>
> > > > Still no updates? My indexes are still stuck building.
>
> > > > Thanks,
> > > > Arun Shanker Prasad.
>
> > > > On Aug 28, 2:27 am, Arun Shanker Prasad 
> > > > wrote:
>
> > > > > Hi,
>
> > > > > I have sent the app id as a mail, please let me know when you have
> > > > > tracked anything down.
>
> > > > > Thanks,
> > > > > Arun Shanker Prasad.
>
> > > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> > > > > > Hello, I'd be happy to help but I'm having a tough time tracking
> > down the
> > > > > > app ID that this is for. What is your app ID?
>
> > > > > > Thank you,
>
> > > > > > Jeff
>
> > > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> > > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > > > > Hi,
>
> > > > > > > I tried to upload indexes I deleted but they seem to be stuck in
> > the
> > > > > > > Building state.
> > > > > > > I think this is similar to the problem I had earlier, since I
> > think I
> > > > > > > uploaded the same indexes again, my mistake :(
>
> >http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> > > > > > > A day full of mistakes
>
> > > > > > > Any help will be GREATLY appreciated.
>
> > > > > > > Thanks,
> > > > > > > Arun Shanker Prasad.
>
> > > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
> > arunshankerpra...@gmail.com>
> > > > > > > wrote:
> > > > > > > > Hi,
>
> > > > > > > > Oh I was afraid that would be the answer :(
>
> > > > > > > > By the time I saw your reply all my indexes were already
> > deleted.
> > > > > > > > Trying to track down all the past backups to get the indexes :(
>
> > > > > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> > > > > > > > Thanks,
> > > > > > > > Arun Shanker Prasad.
>
> > > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
> > nick.john...@google.com>
> > > > > > > > wrote:
>
> > > > > > > > > Hi Arun,
> > > > > > > > > I'm afraid your only option is to recreate the indexes once
> > they've
> > > > > > > finished
> > > > > > > > > deleting. If you no longer have your index.yaml, you can copy
> > down the
> > > > > > > index
> > > > > > > > > definitions from the App Engine console index page in order
> > to recreate
> > > > > > > it.
>
> > > > > > > > > -Nick Johnson
>
> > > > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>
> > > > > > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > > > > > > > Hi All,
>
> > > > > > > > > > I tried to vacuum out some indexes that were in the error
> > state, I
> > > > > > > > > > gave
> > > > > > > > > > appcfg.py vacuum_indexes My_application
>
> > > > > > > > > > During the process I missed a couple of them, I tried to
> > give the 'a'
> > > > > > > > > > option thinking that it was the Abort option :( :(
>
> > > > > > > > > > Now all my indexes are in deleting state, its very late in
> > my dev
> > > > > > > > > > stage to track down all the previous indexes and upload
> > them again.
>
> > > > > > > > > > Can anyone please help me to get the indexes back, my app
> > is down at
> > > > > > > > > > the moment due to the missing indexes :( :(
>
> > > > > > > > > > Thanks,
> > > > > > > > > > Arun Shanker Prasad.
>
> > > > > > > > > --
> > > > > > > > > Nick Johnson, Developer Programs Engineer, App Engine
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] wildcard for custom domains

2009-08-28 Thread Neves

Now that appengine supports wildcards on myapp.appspot.com:
http://googleappengine.blogspot.com/2009/08/new-features-in-124.html

Will it be possible to support wildcards within my own domain?

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Request Slow Down

2009-08-28 Thread Arjun Vasan
Hey Nick,
Thanks for the prompt reply. Thats what I thought, but if you could explain
why removing a certain number of URL handlers in main.py somehow did the
trick, I would much appreciate it.  I can intentionally reproduce the
effect, if you like.

I wasn't getting a new instance.. well at least my experience suggests that
a new instance would cause a greater increase in CPU time, and would occur
across the board, not just for a "Hello World" type class.  Am I wrong?

Arjun

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Jeff S (Google)

Index creation and deletion should be proceeding normally now.

Cheers,

Jeff

On Aug 28, 1:16 pm, Arun Shanker Prasad 
wrote:
> Hi,
>
> Thank You Jeff for the quick response.
> I will wait for the status to return to normal before I try to upload
> again.
>
> Thanks a bunch to You and Nick for the help :D :D
>
> Thanks,
> Arun Shanker Prasad.
>
> On Aug 29, 1:04 am, "Jeff S (Google)"  wrote:
>
> > Index creation and deletion is slow at the moment, so uploading new
> > indexes may not currently be possible. We've posted a notice on the
> > status site, apologies:
>
> >http://code.google.com/status/appengine
>
> > -Jeff
>
> > On Aug 28, 12:14 pm, Arun Shanker Prasad 
> > wrote:
>
> > > Hi Jeff,
>
> > > Thank You for removing the indexes.
>
> > > I tried to upload the old indexes one at a time, but I get the
> > > following error after I run the appcfg.py
>
> > > Uploading index definitions.
> > > Error 500: --- begin server output ---
>
> > > Server Error (500)
> > > A server error has occurred.
> > > --- end server output ---
>
> > > Last time I uploaded a whole bunch which seemed to get stuck.
>
> > > Thanks,
> > > Arun Shanker Prasad.
>
> > > On Aug 29, 12:09 am, "Jeff S (Google)"  wrote:
>
> > > > The indexes have now been deleted for this app.
>
> > > > Thank you,
>
> > > > Jeff
>
> > > > On Fri, Aug 28, 2009 at 9:56 AM, Jeff S (Google)  
> > > > wrote:
>
> > > > > It looks like your indexes are all in the deleting state, I'll keep 
> > > > > you
> > > > > posted.
>
> > > > > On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
> > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > >> Hi,
>
> > > > >> Bump, any one to help me?
>
> > > > >> Thanks,
> > > > >> Arun Shanker Prasad.
>
> > > > >> On Aug 28, 5:37 pm, Arun Shanker Prasad 
> > > > >> wrote:
> > > > >> > Hi,
>
> > > > >> > Any updates? Almost 24 hours now :( and the indexes are still 
> > > > >> > stuck in
> > > > >> > the building state.
>
> > > > >> > Please have a look.
>
> > > > >> > Thanks,
> > > > >> > Arun Shanker Prasad.
>
> > > > >> > On Aug 28, 6:42 am, Arun Shanker Prasad 
> > > > >> > 
> > > > >> > wrote:
>
> > > > >> > > Hi Jeff,
>
> > > > >> > > Still no updates? My indexes are still stuck building.
>
> > > > >> > > Thanks,
> > > > >> > > Arun Shanker Prasad.
>
> > > > >> > > On Aug 28, 2:27 am, Arun Shanker Prasad 
> > > > >> > > 
> > > > >> > > wrote:
>
> > > > >> > > > Hi,
>
> > > > >> > > > I have sent the app id as a mail, please let me know when you 
> > > > >> > > > have
> > > > >> > > > tracked anything down.
>
> > > > >> > > > Thanks,
> > > > >> > > > Arun Shanker Prasad.
>
> > > > >> > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> > > > >> > > > > Hello, I'd be happy to help but I'm having a tough time 
> > > > >> > > > > tracking
> > > > >> down the
> > > > >> > > > > app ID that this is for. What is your app ID?
>
> > > > >> > > > > Thank you,
>
> > > > >> > > > > Jeff
>
> > > > >> > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> > > > >> > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > >> > > > > > Hi,
>
> > > > >> > > > > > I tried to upload indexes I deleted but they seem to be 
> > > > >> > > > > > stuck in
> > > > >> the
> > > > >> > > > > > Building state.
> > > > >> > > > > > I think this is similar to the problem I had earlier, 
> > > > >> > > > > > since I
> > > > >> think I
> > > > >> > > > > > uploaded the same indexes again, my mistake :(
>
> > > > >>http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> > > > >> > > > > > A day full of mistakes
>
> > > > >> > > > > > Any help will be GREATLY appreciated.
>
> > > > >> > > > > > Thanks,
> > > > >> > > > > > Arun Shanker Prasad.
>
> > > > >> > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
> > > > >> arunshankerpra...@gmail.com>
> > > > >> > > > > > wrote:
> > > > >> > > > > > > Hi,
>
> > > > >> > > > > > > Oh I was afraid that would be the answer :(
>
> > > > >> > > > > > > By the time I saw your reply all my indexes were already
> > > > >> deleted.
> > > > >> > > > > > > Trying to track down all the past backups to get the 
> > > > >> > > > > > > indexes
> > > > >> :(
>
> > > > >> > > > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> > > > >> > > > > > > Thanks,
> > > > >> > > > > > > Arun Shanker Prasad.
>
> > > > >> > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
> > > > >> nick.john...@google.com>
> > > > >> > > > > > > wrote:
>
> > > > >> > > > > > > > Hi Arun,
> > > > >> > > > > > > > I'm afraid your only option is to recreate the indexes 
> > > > >> > > > > > > > once
> > > > >> they've
> > > > >> > > > > > finished
> > > > >> > > > > > > > deleting. If you no longer have your index.yaml, you 
> > > > >> > > > > > > > can
> > > > >> copy down the
> > > > >> > > > > > index
> > > > >> > > > > > > > definitions from the App Engine console index page in 
> > > > >> > > > > > > > order
> > > > >> to recreate
> > > > >> > > > > > it.
>
> > > > >> > > > > > > > -Nick Johnson

[google-appengine] Re: Accidentally Deleted all my INDEXES :(

2009-08-28 Thread Arun Shanker Prasad

Hi,

Thanks Jeff, I think they are all removed now.. Great now to start
uploading all the old ones back one by one..

Thanks,
Arun Shanker Prasad.

On Aug 28, 11:31 pm, Arun Shanker Prasad 
wrote:
> Hi,
>
> Thank you Jeff.
> Thanks to Nick for moving those indexes to the ERROR state, so I could
> delete them.
>
> I had deleted them almost 3 hours ago, they are still shown as
> deleting in the dashboard, I also got a 500 error while running the
> appcfg.py initially to vacuum the indexes. Could this have caused the
> indexes to be stuck in the Deleting state?
>
> Thanks,
> Arun Shanker Prasad.
>
> On Aug 28, 9:56 pm, "Jeff S (Google)"  wrote:
>
>
>
> > It looks like your indexes are all in the deleting state, I'll keep you
> > posted.
>
> > On Fri, Aug 28, 2009 at 7:57 AM, Arun Shanker Prasad <
>
> > arunshankerpra...@gmail.com> wrote:
>
> > > Hi,
>
> > > Bump, any one to help me?
>
> > > Thanks,
> > > Arun Shanker Prasad.
>
> > > On Aug 28, 5:37 pm, Arun Shanker Prasad 
> > > wrote:
> > > > Hi,
>
> > > > Any updates? Almost 24 hours now :( and the indexes are still stuck in
> > > > the building state.
>
> > > > Please have a look.
>
> > > > Thanks,
> > > > Arun Shanker Prasad.
>
> > > > On Aug 28, 6:42 am, Arun Shanker Prasad 
> > > > wrote:
>
> > > > > Hi Jeff,
>
> > > > > Still no updates? My indexes are still stuck building.
>
> > > > > Thanks,
> > > > > Arun Shanker Prasad.
>
> > > > > On Aug 28, 2:27 am, Arun Shanker Prasad 
> > > > > wrote:
>
> > > > > > Hi,
>
> > > > > > I have sent the app id as a mail, please let me know when you have
> > > > > > tracked anything down.
>
> > > > > > Thanks,
> > > > > > Arun Shanker Prasad.
>
> > > > > > On Aug 28, 2:07 am, "Jeff S (Google)"  wrote:
>
> > > > > > > Hello, I'd be happy to help but I'm having a tough time tracking
> > > down the
> > > > > > > app ID that this is for. What is your app ID?
>
> > > > > > > Thank you,
>
> > > > > > > Jeff
>
> > > > > > > On Thu, Aug 27, 2009 at 11:56 AM, Arun Shanker Prasad <
>
> > > > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > > > > > Hi,
>
> > > > > > > > I tried to upload indexes I deleted but they seem to be stuck in
> > > the
> > > > > > > > Building state.
> > > > > > > > I think this is similar to the problem I had earlier, since I
> > > think I
> > > > > > > > uploaded the same indexes again, my mistake :(
>
> > >http://groups.google.com/group/google-appengine/browse_thread/thread/...
>
> > > > > > > > A day full of mistakes
>
> > > > > > > > Any help will be GREATLY appreciated.
>
> > > > > > > > Thanks,
> > > > > > > > Arun Shanker Prasad.
>
> > > > > > > > On Aug 27, 7:54 pm, Arun Shanker Prasad <
> > > arunshankerpra...@gmail.com>
> > > > > > > > wrote:
> > > > > > > > > Hi,
>
> > > > > > > > > Oh I was afraid that would be the answer :(
>
> > > > > > > > > By the time I saw your reply all my indexes were already
> > > deleted.
> > > > > > > > > Trying to track down all the past backups to get the indexes 
> > > > > > > > > :(
>
> > > > > > > > > The 'a' option SHOULD really be REMOVED :( :(
>
> > > > > > > > > Thanks,
> > > > > > > > > Arun Shanker Prasad.
>
> > > > > > > > > On Aug 27, 7:41 pm, "Nick Johnson (Google)" <
> > > nick.john...@google.com>
> > > > > > > > > wrote:
>
> > > > > > > > > > Hi Arun,
> > > > > > > > > > I'm afraid your only option is to recreate the indexes once
> > > they've
> > > > > > > > finished
> > > > > > > > > > deleting. If you no longer have your index.yaml, you can 
> > > > > > > > > > copy
> > > down the
> > > > > > > > index
> > > > > > > > > > definitions from the App Engine console index page in order
> > > to recreate
> > > > > > > > it.
>
> > > > > > > > > > -Nick Johnson
>
> > > > > > > > > > On Thu, Aug 27, 2009 at 3:34 PM, Arun Shanker Prasad <
>
> > > > > > > > > > arunshankerpra...@gmail.com> wrote:
>
> > > > > > > > > > > Hi All,
>
> > > > > > > > > > > I tried to vacuum out some indexes that were in the error
> > > state, I
> > > > > > > > > > > gave
> > > > > > > > > > > appcfg.py vacuum_indexes My_application
>
> > > > > > > > > > > During the process I missed a couple of them, I tried to
> > > give the 'a'
> > > > > > > > > > > option thinking that it was the Abort option :( :(
>
> > > > > > > > > > > Now all my indexes are in deleting state, its very late in
> > > my dev
> > > > > > > > > > > stage to track down all the previous indexes and upload
> > > them again.
>
> > > > > > > > > > > Can anyone please help me to get the indexes back, my app
> > > is down at
> > > > > > > > > > > the moment due to the missing indexes :( :(
>
> > > > > > > > > > > Thanks,
> > > > > > > > > > > Arun Shanker Prasad.
>
> > > > > > > > > > --
> > > > > > > > > > Nick Johnson, Developer Programs Engineer, App Engine
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this

[google-appengine] Re: Webworker definition & explanation

2009-08-28 Thread Tim Hoffman

Sorry about the shocking grammar and spelling in that response, I was
in a hurry to get my wife to the doctor and didn't
have time to proof read it.  Hopefully  it made some sort of sense
despite the atrocious english displayed ;-)

T

On Aug 28, 4:36 pm, Tim Hoffman  wrote:
> Hi
>
> Actually I think you question is probably a bit vague (define
> webworker -  do you meanhttp://www.whatwg.org/specs/web-workers/current-work/)
> for any really meaningful response.
>
> Is the link above what you meant, have you read that document, if not
> what that definition what do you mean.
> If it is what you mean then its a functionality at the client level
> and not really specific to gae or any other backend infrastructire.
> but different backend framworks may make it easier to do because of
> potential functionality they may have out of the box.
>
> Rgds
>
> Tim
> On Aug 28, 1:03 pm, carlsdb  wrote:
>
> > HELP ?  Is this question too challenging or too lame?  I am really new
> > to GAE.  Can anyone point me in the right direction on this?  Thank
> > you, Carl
>
> > On Aug 24, 6:37 pm, carlsdb  wrote:
>
> > > Please define webworker and provide a brief explanation of how one
> > > uses a webworker.
>
> > > Thank you,
> > > Carl
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: index building stuck

2009-08-28 Thread Jeff S (Google)

Hello again,

This issue should now be resolved and creating new indexes or delete
existing indexes should be proceeding at the normal pace.

Thank you,

Jeff

On Aug 28, 10:47 am, "Jeff S (Google)"  wrote:
> Hi all,
>
> There is currently a slowdown in the processing of index changes.
> We're aware of the issue and will keep you updated.
>
> Apologies for the inconvenience,
>
> Jeff
>
> On Aug 28, 4:57 am, "martin.kukan"  wrote:
>
> > Hi,
>
> > I'm using java and low level api for the datastore and after uploading
> > incorrect index definition (I specified a column in index which
> > doesn't exist) the index is stuck on building. I've updated the index
> > definition with no indexes also added the missing column but nothing
> > helps. My app id is fotomaraton-twig.
>
> > Thanks for help,
>
>
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] problem with redirect

2009-08-28 Thread lookon

I have a function that use webapp.RequestHandler as parameter. Once I
can do handler.redirect("http://aaa.com";). But since yesterday, the
handle.redirect does not work. Anyone can help me? 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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---