[google-appengine] Re: Need more memcache space

2010-10-15 Thread sahid
Hello,

What did you mean?


On Oct 15, 5:13 am, YF CAO  wrote:
> Check your code.
> You may created more than one instance of memcache.
>
> 2010/10/15 Sahid Orentino Ferdjaoui 
>
>
>
>
>
>
>
> > Hello,
>
> > I need more memcache space, actually i have 2G and that is too less.
>
> > Why i need more?
>
> > I generate a userlist of 100onlines by a cron every 10minutes
>
> > but i have see, my userlist is deleted when my website is on hightraffics.
> > so to correct it i have updated my cron to generate a userlist every
> > 1minute but that consume more ressources.
>
> > APPID: devel-inchallah
>
> > Cordially,
> > Sahid
>
> >  --
> > You received this message because you are subscribed to the Google Groups
> > "Google App Engine" group.
> > To post to this group, send email to google-appeng...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine+unsubscr...@googlegroups.com > e...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Tom
Hi, sorry to be a pain - is this the right place to post this kind of
question or should I try contacting support?

Thank you

Tom

On Oct 13, 4:31 pm, Tom  wrote:
> Hi,
>
> I currently have one app in my account, I'm trying to add a second but
> when I do I get taken to the confirm by SMS page and when I put in my
> mobile number I get this:
>
> "The phone number has been sent too many messages or has already been
> used to confirm an account"
>
> I think it has already been used to confirm an account, mine!
>
> Any ideas?
>
> Thanks
>
> Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] SDK 1.3.8 released!

2010-10-15 Thread Jeff Schwartz
Excellent news! Has the Eclipse plugin also been updated with the latest
SDK?

Jeff

On Thu, Oct 14, 2010 at 11:44 PM, Takashi Matsuo  wrote:

> Hello App Engine Developers!
>
> We're very happy to announce that SDK 1.3.8 is released today. There
> are many new cool features, so please download the new SDK and enjoy
> it!
>
> You can download the new SDK from:
> http://code.google.com/appengine/downloads.html
>
> Our blog post includes some screenshots of new features in admin console:
>
> http://googleappengine.blogspot.com/2010/10/new-app-engine-sdk-138-includes-new.html
>
> Here are release notes:
>
> Java
> ---
> Version 1.3.8
> =
> - You can run task queue tasks immediately from the admin console.
> - Added an OutputSettings class to the Images API to specify the JPEG
> encoding
>  quality when running in production.
> - Support for login of multiple Google accounts within an app, and longer
> login
>  sessions. For more information see:
>http://www.google.com/support/accounts/bin/answer.py?answer=181599
> - In queue.xml, the maximum allowed bucket size is now 100.
> - Removed limits on zigzag merge-join queries. Therefore the error "The
> built-in
>  indices are not efficient enough for this query and your data. Please add
> a
>  composite index for this query." will no longer be thrown in most cases,
>  enabling more types of queries without indexes.
> - The whitelist has been updated to include java.net.InetAddress and some
>  interfaces and abstract classes in javax.xml.soap, including
>  javax.xml.soap.SOAPMessage.
> - Fixed an issue reserving App Ids by owners of emails containing periods,
>  multiple cases, and googlemail.com address.
>http://code.google.com/p/googleappengine/issues/detail?id=1196
> - Fixed an issue where TaskOptions had no public getters, making testing
>  impossible.
>http://code.google.com/p/googleappengine/issues/detail?id=3243
> - Fixed an issue on the development server where PNGs were being returned
> as
>  JPEGs.
>http://code.google.com/p/googleappengine/issues/detail?id=3661
>
>
> Python
> -
> Version 1.3.8
> ==
> - Builtin app.yaml handlers are available for common application functions,
>  such as appstats.
>
> http://code.google.com/appengine/docs/python/config/appconfig.html#Builtin_Handlers
> - The Admin Console now provides an experimental tool to delete all
> entities in
>  the datastore or all entities of a given type. This is available only if
>  enabled using the datastore_admin builtin. Deleting entities will count
>  against application quota.
>
> http://code.google.com/appengine/docs/python/datastore/creatinggettinganddeletingdata.html#Deleting_Entities_in_Bulk
> - You can run task queue tasks immediately from the Admin Console.
> - You can now specify the quality of JPEG images via the Image API's
>  execute_transforms function. Available in production only.
> - Support for login of multiple Google accounts within an app, and longer
> login
>  sessions. For more information see:
>http://www.google.com/support/accounts/bin/answer.py?answer=181599
> - In queue.yaml, the maximum allowed bucket size is now 100.
> - Precompilation is now enabled by default. To disable, use the
>  --no_precompilation flag when updating your app.
> - BlobInfo now has an open() method that returns a BlobReader.
> - BlobReader now accepts a BlobInfo.
> - Removed limits on zigzag merge-join queries. Therefore the error "The
> built-in
>  indices are not efficient enough for this query and your data. Please add
> a
>  composite index for this query." will no longer be thrown in most cases,
>  enabling more types of queries without indexes.
> - Fixed an issue with task queue tasks not running on the dev_appserver
> when
>  using Python 2.6.
> - Fixed an issue on the dev_appserver where auto task running wasn't
> working for
>  BulkAdd.
> - Fixed an issue reserving App Ids by owners of similarly-named mails
> accounts
>  containing periods, multiple cases, and googlemail.com address.
>http://code.google.com/p/googleappengine/issues/detail?id=1196
> - Fixed an issue on the development server where PNGs were being returned
> as
>  JPEGs.
>http://code.google.com/p/googleappengine/issues/detail?id=3661
>
> --
> Takashi Matsuo
> Developer Relations
> Developer Advocate for Google App Engine/iGoogle
> Google Japan, Inc.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 
Jeff

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubsc

[google-appengine] Re: can i use channel api now?

2010-10-15 Thread Jamie H
I imagine that the Google engineers have already finished it.  They
were just not aware that anybody wanted it.  Now that they know there
is interest and demand I'd expect to see it released any day

On Oct 15, 12:57 am, Heiko Roth  wrote:
> We need channel api, too.
> Please release this feature.
> Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: I can see the number of instances!

2010-10-15 Thread Nick Johnson (Google)
Hi,

On Fri, Oct 15, 2010 at 6:30 AM, esilver  wrote:

> +1 What is considered good or bad? I see a bunch of instances with an
> average of 0.729 QPS (which seems really low) and an average memory
> footprint of 63MB (also seems low). Maybe I've been brainwashed by the
> EC2 specs, but would love some guidance on these numbers...
>

These figures represent the amount of traffic that instance is actually
receiving, and the amount of memory it's consuming. There aren't really
'optimum' values, except that using less memory is generally better if you
want your instances to stick around longer.

-Nick


>
> On Oct 14, 9:32 pm, nischalshetty  wrote:
> > Yayy... I can now see the number ofinstancesmy app is taking in the
> > admin console. But, what do those columns mean and what should the
> > optimum values be for each column?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 
Nick Johnson, Developer Programs Engineer, App Engine Google Ireland Ltd. ::
Registered in Dublin, Ireland, Registration Number: 368047
Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
368047

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: I can see the number of instances!

2010-10-15 Thread alf
hi,

can I say that when I have 3 instance is like we have 3 physical pc
running 3 instances of my app.

thanks

alberto

On Oct 15, 2:37 pm, "Nick Johnson (Google)" 
wrote:
> Hi,
>
> On Fri, Oct 15, 2010 at 6:30 AM, esilver  wrote:
> > +1 What is considered good or bad? I see a bunch of instances with an
> > average of 0.729 QPS (which seems really low) and an average memory
> > footprint of 63MB (also seems low). Maybe I've been brainwashed by the
> > EC2 specs, but would love some guidance on these numbers...
>
> These figures represent the amount of traffic that instance is actually
> receiving, and the amount of memory it's consuming. There aren't really
> 'optimum' values, except that using less memory is generally better if you
> want your instances to stick around longer.
>
> -Nick
>
>
>
>
>
>
>
>
>
>
>
> > On Oct 14, 9:32 pm, nischalshetty  wrote:
> > > Yayy... I can now see the number ofinstancesmy app is taking in the
> > > admin console. But, what do those columns mean and what should the
> > > optimum values be for each column?
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google App Engine" group.
> > To post to this group, send email to google-appeng...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine+unsubscr...@googlegroups.com > e...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-appengine?hl=en.
>
> --
> Nick Johnson, Developer Programs Engineer, App Engine Google Ireland Ltd. ::
> Registered in Dublin, Ireland, Registration Number: 368047
> Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
> 368047

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Google Appengine Documentation

2010-10-15 Thread Joseph Mansigian
Hello Google Staff,

Today when I downloaded version 1.3.8 of appengine I also tried to
download the updated documentation ( 2010-10-14 ) but got a 404 error.

Joe Mansigian

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: SDK 1.3.8 released!

2010-10-15 Thread vivpuri
"Support for login of multiple Google accounts within an app, and
longer login sessions."

For the above statement, in Admin Console > Application Settings >
Cookie Expiration, max time that you can choose is still 2 weeks. Was
that supposed to change too?


"Datastore Admin" - does not load for me. I get the following error -

***
Request-URI Too Large. The requested URL /_ah/datastore_admin/... is
too large to process.
***


"AppStats" - does not record any data for my app, even after following
the steps here - 
http://code.google.com/appengine/docs/python/tools/appstats.html

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Upcoming changes to Task Queues

2010-10-15 Thread Cameron
Task Queues coming out of labs is great news!  Will performance and
stability improve at this time as well?  Looking at the Taskqueue
Status page, every single day for the last 3 months there have been
huge spikes in execution latency.  Every single day (I clicked through
them all).  So much yellow and red in the graphs.  The last time there
was a solid blue graph was July 11, 2010.

http://code.google.com/status/appengine/detail/taskqueue/2010/10/15#ae-trust-detail-taskqueue-execution-latency

I realize Task Queues are for background processing which is how I use
them in my apps.  However, when I set the rate at 50 tasks per second
I expect actual throughput to be somewhat close to that rate.  When
execution latency jumps up to 25 seconds per task, then essentially
all the benefits of using task queues is lost.

Can we expect improvements in this area when the "experimental" tag is
removed?

-Cameron

On Oct 13, 4:42 pm, "Ikai Lan (Google)" 
wrote:
> Hey everyone,
>
> We're working on moving Task Queues out of labs/experimental for an upcoming
> release slated for November. One of the requirements for doing so is to
> better enforce the Task Queues storage quota. The documentation describes
> this quota as storage for data for tasks that have not yet executed:
>
> http://code.google.com/appengine/docs/quotas.html#Task_Queue
>
> Currently, this quota is not enforced, and it is possible for applications
> with backed up task queues to exceed this quota without running into quota
> denials. Check your admin console's quota page for your application to see
> if you are reaching or exceeding this quota. If so, you'll have the
> following options:
>
> 1. Allocate more storage quota to taskqueue storage by updating:
>          - total_storage_limit in queue.yaml for Python applications
>          - TotalStorageLimit in queue.xml for Java applications.
>         Note: you may need to buy more disk quota if there's not enough
> quota for datastore, blobstore and taskqueue storage altogether.
>
> 2. Fix backed up queues using one of the options below. You will recognize
> these as queues with high numbers of tasks (typically >2000).
>         - Purge backed up queues (an easy button click in admin console's
> Queue Details page for the queue).
>         - Increase the execution rate and let your app work through the
> backlog. To do this, edit queue.yaml (or queue.xml for Java apps) and alter
> the rates on the queues. You can set a higher bucket size than the default
> (currently 5) to maximize throughput.
>         - Reduce the rate at which new tasks are added to queues. This will
> involve some editing of app code.
>
> It can take a few hours to update the admin console after the quotas have
> been updated.
>
> We'll post a reminders to the App Engine blog as well as to this thread as
> the release nears.
>
> --
> Ikai Lan
> Developer Programs Engineer, Google App Engine
> Blogger:http://googleappengine.blogspot.com
> Reddit:http://www.reddit.com/r/appengine
> Twitter:http://twitter.com/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-appeng...@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] Memcache capacity

2010-10-15 Thread sahid
Hello again :)

II write this topic because my app need much memory for memcached.
actually i have 2giga but it's too less.

My items is missed and i should use datastore, but datastore is too
long and causes a lot of deadlineexception
(I use already a lot of TaskQueue, see my admin panel).

I have understand the principe of the cache but i need more because
the number of users online increase and so, the number of items
missed.

So please, increase my memcached memory.

APPID: devel-inchallah

Cordially,
Sahid

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread l.denardo
To create new apps, just log in to google.com/appengine  (add /a/
yourdomai.com for apps accounts) and you'll see a button to create
your new app.

If you need to reuse the same phone number for a different account
there's a manual verification form you can fill in at
https://appengine.google.com/waitlist/sms_issues

Regards
Lorenzo

On Oct 15, 11:31 am, Tom  wrote:
> Hi, sorry to be a pain - is this the right place to post this kind of
> question or should I try contacting support?
>
> Thank you
>
> Tom
>
> On Oct 13, 4:31 pm, Tom  wrote:
>
> > Hi,
>
> > I currently have one app in my account, I'm trying to add a second but
> > when I do I get taken to the confirm by SMS page and when I put in my
> > mobile number I get this:
>
> > "The phone number has been sent too many messages or has already been
> > used to confirm an account"
>
> > I think it has already been used to confirm an account, mine!
>
> > Any ideas?
>
> > Thanks
>
> > Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Nick's blog

2010-10-15 Thread Peter Ondruska
Even if you do not read Nick's blog I would recommend today's post as
it really made my day:

http://blog.notdot.net/2010/10/Hello-developers

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Tom
Thank you for your response Lorenzo - I've submitted a message to that
URL. It would be helpful if Google provided a link to this page on the
page where they say they can't verify my phone number

Tom

On Oct 15, 4:25 pm, "l.denardo"  wrote:
> To create new apps, just log in to google.com/appengine  (add /a/
> yourdomai.com for apps accounts) and you'll see a button to create
> your new app.
>
> If you need to reuse the same phone number for a different account
> there's a manual verification form you can fill in 
> athttps://appengine.google.com/waitlist/sms_issues
>
> Regards
> Lorenzo
>
> On Oct 15, 11:31 am, Tom  wrote:
>
>
>
> > Hi, sorry to be a pain - is this the right place to post this kind of
> > question or should I try contacting support?
>
> > Thank you
>
> > Tom
>
> > On Oct 13, 4:31 pm, Tom  wrote:
>
> > > Hi,
>
> > > I currently have one app in my account, I'm trying to add a second but
> > > when I do I get taken to the confirm by SMS page and when I put in my
> > > mobile number I get this:
>
> > > "The phone number has been sent too many messages or has already been
> > > used to confirm an account"
>
> > > I think it has already been used to confirm an account, mine!
>
> > > Any ideas?
>
> > > Thanks
>
> > > Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Quota numbers seem wrong

2010-10-15 Thread Richard Watson
I think mine are just stuck. Exactly the same numbers today - 1800
requests, 8 indexes etc. No chance that it's correct.

On Oct 15, 1:47 am, Jamie H  wrote:
> I have noticed the datstore query quota being inaccurate before.  2
> million seems to be it's bottom range.
>
> On Oct 14, 1:15 pm, Richard Watson  wrote:
>
> > My quota page seems to be over-reporting a couple of numbers quite a
> > bit:
>
> > CPU Time        0.17
> > Requests 1,800
> > Secure Requests 1,800 <-- (but I know I have some non-secure requests,
> > so how are they the same?)
>
> > Datastore API Calls 1,000
> > Datastore Queries 2,073,600 <-- !
> > Datastore CPU Time 2.49 <--  (maybe.  seems high.)
> > Number of Indexes 8 <-- (I only really have 2, which is reported
> > correctly in the other page)
>
> > App: 2dumo
>
> > Thanks,
> > Richard
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Eli Jones
I think there has been some confusion here.

If you have already signed up with Appengine and thus have an Appengine
account under which you created an Appengine application.. then you do not
need to sign up for yet another Appengine account.

You just need to log into Appengine here:

https://appengine.google.com/

and then click on the "Create Application" button.

The error message was telling you that your number "has already been used to
confirm an account"

On Fri, Oct 15, 2010 at 12:56 PM, Tom  wrote:

> Thank you for your response Lorenzo - I've submitted a message to that
> URL. It would be helpful if Google provided a link to this page on the
> page where they say they can't verify my phone number
>
> Tom
>
> On Oct 15, 4:25 pm, "l.denardo"  wrote:
> > To create new apps, just log in to google.com/appengine  (add /a/
> > yourdomai.com for apps accounts) and you'll see a button to create
> > your new app.
> >
> > If you need to reuse the same phone number for a different account
> > there's a manual verification form you can fill in athttps://
> appengine.google.com/waitlist/sms_issues
> >
> > Regards
> > Lorenzo
> >
> > On Oct 15, 11:31 am, Tom  wrote:
> >
> >
> >
> > > Hi, sorry to be a pain - is this the right place to post this kind of
> > > question or should I try contacting support?
> >
> > > Thank you
> >
> > > Tom
> >
> > > On Oct 13, 4:31 pm, Tom  wrote:
> >
> > > > Hi,
> >
> > > > I currently have one app in my account, I'm trying to add a second
> but
> > > > when I do I get taken to the confirm by SMS page and when I put in my
> > > > mobile number I get this:
> >
> > > > "The phone number has been sent too many messages or has already been
> > > > used to confirm an account"
> >
> > > > I think it has already been used to confirm an account, mine!
> >
> > > > Any ideas?
> >
> > > > Thanks
> >
> > > > Tom
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Tom
Hi Eli,

This is why I think something is broken with my account I have an
app engine account already under which I have created one application.
When I login and click "create application" I get taken to the mobile
number validation page. At which point I get the error message.

Or am I really doing something stupid?

Tom

On Oct 15, 6:05 pm, Eli Jones  wrote:
> I think there has been some confusion here.
>
> If you have already signed up with Appengine and thus have an Appengine
> account under which you created an Appengine application.. then you do not
> need to sign up for yet another Appengine account.
>
> You just need to log into Appengine here:
>
> https://appengine.google.com/
>
> and then click on the "Create Application" button.
>
> The error message was telling you that your number "has already been used to
> confirm an account"
>
>
>
> On Fri, Oct 15, 2010 at 12:56 PM, Tom  wrote:
> > Thank you for your response Lorenzo - I've submitted a message to that
> > URL. It would be helpful if Google provided a link to this page on the
> > page where they say they can't verify my phone number
>
> > Tom
>
> > On Oct 15, 4:25 pm, "l.denardo"  wrote:
> > > To create new apps, just log in to google.com/appengine  (add /a/
> > > yourdomai.com for apps accounts) and you'll see a button to create
> > > your new app.
>
> > > If you need to reuse the same phone number for a different account
> > > there's a manual verification form you can fill in athttps://
> > appengine.google.com/waitlist/sms_issues
>
> > > Regards
> > > Lorenzo
>
> > > On Oct 15, 11:31 am, Tom  wrote:
>
> > > > Hi, sorry to be a pain - is this the right place to post this kind of
> > > > question or should I try contacting support?
>
> > > > Thank you
>
> > > > Tom
>
> > > > On Oct 13, 4:31 pm, Tom  wrote:
>
> > > > > Hi,
>
> > > > > I currently have one app in my account, I'm trying to add a second
> > but
> > > > > when I do I get taken to the confirm by SMS page and when I put in my
> > > > > mobile number I get this:
>
> > > > > "The phone number has been sent too many messages or has already been
> > > > > used to confirm an account"
>
> > > > > I think it has already been used to confirm an account, mine!
>
> > > > > Any ideas?
>
> > > > > Thanks
>
> > > > > Tom
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google App Engine" group.
> > To post to this group, send email to google-appeng...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine+unsubscr...@googlegroups.com > e...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Memcache capacity

2010-10-15 Thread Sahid Orentino Ferdjaoui
For informations: my traffic: http://goo.gl/A4XC

--
  .
 ..:



On Fri, Oct 15, 2010 at 5:22 PM, sahid  wrote:
> Hello again :)
>
> II write this topic because my app need much memory for memcached.
> actually i have 2giga but it's too less.
>
> My items is missed and i should use datastore, but datastore is too
> long and causes a lot of deadlineexception
> (I use already a lot of TaskQueue, see my admin panel).
>
> I have understand the principe of the cache but i need more because
> the number of users online increase and so, the number of items
> missed.
>
> So please, increase my memcached memory.
>
> APPID: devel-inchallah
>
> Cordially,
> Sahid
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Eli Jones
Hmm.  When you click the https://appengine.google.com/ link and log in, what
is the next page you see?

Is it the "My Applications" screen?  What is the http address that shows at
the very top?  Do you see your already created application there in the list
of applications?

Under the "Create Application" button, do you see the message "You have 9
applications remaining."?

Your account may be trapped in limbo.. (though, it would be confusing if you
can still work on the one application that you already have created.. yet
appengine does not recognized your account as having been created..)

As Lorenzo mentioned.. maybe the SMS issues waitlist will get you some
satisfaction.

On Fri, Oct 15, 2010 at 1:08 PM, Tom  wrote:

> Hi Eli,
>
> This is why I think something is broken with my account I have an
> app engine account already under which I have created one application.
> When I login and click "create application" I get taken to the mobile
> number validation page. At which point I get the error message.
>
> Or am I really doing something stupid?
>
> Tom
>
> On Oct 15, 6:05 pm, Eli Jones  wrote:
> > I think there has been some confusion here.
> >
> > If you have already signed up with Appengine and thus have an Appengine
> > account under which you created an Appengine application.. then you do
> not
> > need to sign up for yet another Appengine account.
> >
> > You just need to log into Appengine here:
> >
> > https://appengine.google.com/
> >
> > and then click on the "Create Application" button.
> >
> > The error message was telling you that your number "has already been used
> to
> > confirm an account"
> >
> >
> >
> > On Fri, Oct 15, 2010 at 12:56 PM, Tom  wrote:
> > > Thank you for your response Lorenzo - I've submitted a message to that
> > > URL. It would be helpful if Google provided a link to this page on the
> > > page where they say they can't verify my phone number
> >
> > > Tom
> >
> > > On Oct 15, 4:25 pm, "l.denardo"  wrote:
> > > > To create new apps, just log in to google.com/appengine  (add /a/
> > > > yourdomai.com for apps accounts) and you'll see a button to create
> > > > your new app.
> >
> > > > If you need to reuse the same phone number for a different account
> > > > there's a manual verification form you can fill in athttps://
> > > appengine.google.com/waitlist/sms_issues
> >
> > > > Regards
> > > > Lorenzo
> >
> > > > On Oct 15, 11:31 am, Tom  wrote:
> >
> > > > > Hi, sorry to be a pain - is this the right place to post this kind
> of
> > > > > question or should I try contacting support?
> >
> > > > > Thank you
> >
> > > > > Tom
> >
> > > > > On Oct 13, 4:31 pm, Tom  wrote:
> >
> > > > > > Hi,
> >
> > > > > > I currently have one app in my account, I'm trying to add a
> second
> > > but
> > > > > > when I do I get taken to the confirm by SMS page and when I put
> in my
> > > > > > mobile number I get this:
> >
> > > > > > "The phone number has been sent too many messages or has already
> been
> > > > > > used to confirm an account"
> >
> > > > > > I think it has already been used to confirm an account, mine!
> >
> > > > > > Any ideas?
> >
> > > > > > Thanks
> >
> > > > > > Tom
> >
> > > --
> > > 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 e...@googlegroups.com>
> > > .
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-appengine?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Tom
When I go to that URL and login I see the "My Applications" page at
this URL:

https://appengine.google.com/

I see my one already created application (which I can work on fine and
is deployed and everything).

Under my application and the create application button I see "you have
10 applications remaining" which is perhaps a hint that something is
not quite right (since I have one application already?)

Thanks
Tom

On Oct 15, 6:18 pm, Eli Jones  wrote:
> Hmm.  When you click thehttps://appengine.google.com/link and log in, what
> is the next page you see?
>
> Is it the "My Applications" screen?  What is the http address that shows at
> the very top?  Do you see your already created application there in the list
> of applications?
>
> Under the "Create Application" button, do you see the message "You have 9
> applications remaining."?
>
> Your account may be trapped in limbo.. (though, it would be confusing if you
> can still work on the one application that you already have created.. yet
> appengine does not recognized your account as having been created..)
>
> As Lorenzo mentioned.. maybe the SMS issues waitlist will get you some
> satisfaction.
>
>
>
> On Fri, Oct 15, 2010 at 1:08 PM, Tom  wrote:
> > Hi Eli,
>
> > This is why I think something is broken with my account I have an
> > app engine account already under which I have created one application.
> > When I login and click "create application" I get taken to the mobile
> > number validation page. At which point I get the error message.
>
> > Or am I really doing something stupid?
>
> > Tom
>
> > On Oct 15, 6:05 pm, Eli Jones  wrote:
> > > I think there has been some confusion here.
>
> > > If you have already signed up with Appengine and thus have an Appengine
> > > account under which you created an Appengine application.. then you do
> > not
> > > need to sign up for yet another Appengine account.
>
> > > You just need to log into Appengine here:
>
> > >https://appengine.google.com/
>
> > > and then click on the "Create Application" button.
>
> > > The error message was telling you that your number "has already been used
> > to
> > > confirm an account"
>
> > > On Fri, Oct 15, 2010 at 12:56 PM, Tom  wrote:
> > > > Thank you for your response Lorenzo - I've submitted a message to that
> > > > URL. It would be helpful if Google provided a link to this page on the
> > > > page where they say they can't verify my phone number
>
> > > > Tom
>
> > > > On Oct 15, 4:25 pm, "l.denardo"  wrote:
> > > > > To create new apps, just log in to google.com/appengine  (add /a/
> > > > > yourdomai.com for apps accounts) and you'll see a button to create
> > > > > your new app.
>
> > > > > If you need to reuse the same phone number for a different account
> > > > > there's a manual verification form you can fill in athttps://
> > > > appengine.google.com/waitlist/sms_issues
>
> > > > > Regards
> > > > > Lorenzo
>
> > > > > On Oct 15, 11:31 am, Tom  wrote:
>
> > > > > > Hi, sorry to be a pain - is this the right place to post this kind
> > of
> > > > > > question or should I try contacting support?
>
> > > > > > Thank you
>
> > > > > > Tom
>
> > > > > > On Oct 13, 4:31 pm, Tom  wrote:
>
> > > > > > > Hi,
>
> > > > > > > I currently have one app in my account, I'm trying to add a
> > second
> > > > but
> > > > > > > when I do I get taken to the confirm by SMS page and when I put
> > in my
> > > > > > > mobile number I get this:
>
> > > > > > > "The phone number has been sent too many messages or has already
> > been
> > > > > > > used to confirm an account"
>
> > > > > > > I think it has already been used to confirm an account, mine!
>
> > > > > > > Any ideas?
>
> > > > > > > Thanks
>
> > > > > > > Tom
>
> > > > --
> > > > 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 > > >  e...@googlegroups.com> > e...@googlegroups.com>
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-appengine?hl=en.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google App Engine" group.
> > To post to this group, send email to google-appeng...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine+unsubscr...@googlegroups.com > e...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appeng

[google-appengine] Building Web service client on Google App Engine

2010-10-15 Thread Tarun
I have been trying to develop a web service client for a usual web
service. In order to do that I am using Apache Axis and it is
generating a code that uses RMI (Remote Method Invocation). Is there
any way we can customize it not to use that?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Robert Kluin
What account did you use to create that one application you have?  Or
did someone else create it and share it with you?


Robert






On Fri, Oct 15, 2010 at 13:26, Tom  wrote:
> When I go to that URL and login I see the "My Applications" page at
> this URL:
>
> https://appengine.google.com/
>
> I see my one already created application (which I can work on fine and
> is deployed and everything).
>
> Under my application and the create application button I see "you have
> 10 applications remaining" which is perhaps a hint that something is
> not quite right (since I have one application already?)
>
> Thanks
> Tom
>
> On Oct 15, 6:18 pm, Eli Jones  wrote:
>> Hmm.  When you click thehttps://appengine.google.com/link and log in, what
>> is the next page you see?
>>
>> Is it the "My Applications" screen?  What is the http address that shows at
>> the very top?  Do you see your already created application there in the list
>> of applications?
>>
>> Under the "Create Application" button, do you see the message "You have 9
>> applications remaining."?
>>
>> Your account may be trapped in limbo.. (though, it would be confusing if you
>> can still work on the one application that you already have created.. yet
>> appengine does not recognized your account as having been created..)
>>
>> As Lorenzo mentioned.. maybe the SMS issues waitlist will get you some
>> satisfaction.
>>
>>
>>
>> On Fri, Oct 15, 2010 at 1:08 PM, Tom  wrote:
>> > Hi Eli,
>>
>> > This is why I think something is broken with my account I have an
>> > app engine account already under which I have created one application.
>> > When I login and click "create application" I get taken to the mobile
>> > number validation page. At which point I get the error message.
>>
>> > Or am I really doing something stupid?
>>
>> > Tom
>>
>> > On Oct 15, 6:05 pm, Eli Jones  wrote:
>> > > I think there has been some confusion here.
>>
>> > > If you have already signed up with Appengine and thus have an Appengine
>> > > account under which you created an Appengine application.. then you do
>> > not
>> > > need to sign up for yet another Appengine account.
>>
>> > > You just need to log into Appengine here:
>>
>> > >https://appengine.google.com/
>>
>> > > and then click on the "Create Application" button.
>>
>> > > The error message was telling you that your number "has already been used
>> > to
>> > > confirm an account"
>>
>> > > On Fri, Oct 15, 2010 at 12:56 PM, Tom  wrote:
>> > > > Thank you for your response Lorenzo - I've submitted a message to that
>> > > > URL. It would be helpful if Google provided a link to this page on the
>> > > > page where they say they can't verify my phone number
>>
>> > > > Tom
>>
>> > > > On Oct 15, 4:25 pm, "l.denardo"  wrote:
>> > > > > To create new apps, just log in to google.com/appengine  (add /a/
>> > > > > yourdomai.com for apps accounts) and you'll see a button to create
>> > > > > your new app.
>>
>> > > > > If you need to reuse the same phone number for a different account
>> > > > > there's a manual verification form you can fill in athttps://
>> > > > appengine.google.com/waitlist/sms_issues
>>
>> > > > > Regards
>> > > > > Lorenzo
>>
>> > > > > On Oct 15, 11:31 am, Tom  wrote:
>>
>> > > > > > Hi, sorry to be a pain - is this the right place to post this kind
>> > of
>> > > > > > question or should I try contacting support?
>>
>> > > > > > Thank you
>>
>> > > > > > Tom
>>
>> > > > > > On Oct 13, 4:31 pm, Tom  wrote:
>>
>> > > > > > > Hi,
>>
>> > > > > > > I currently have one app in my account, I'm trying to add a
>> > second
>> > > > but
>> > > > > > > when I do I get taken to the confirm by SMS page and when I put
>> > in my
>> > > > > > > mobile number I get this:
>>
>> > > > > > > "The phone number has been sent too many messages or has already
>> > been
>> > > > > > > used to confirm an account"
>>
>> > > > > > > I think it has already been used to confirm an account, mine!
>>
>> > > > > > > Any ideas?
>>
>> > > > > > > Thanks
>>
>> > > > > > > Tom
>>
>> > > > --
>> > > > 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> > > >  e...@googlegroups.com>> > e...@googlegroups.com>
>> > > > .
>> > > > For more options, visit this group at
>> > > >http://groups.google.com/group/google-appengine?hl=en.
>>
>> > --
>> > You received this message because you are subscribed to the Google Groups
>> > "Google App Engine" group.
>> > To post to this group, send email to google-appeng...@googlegroups.com.
>> > To unsubscribe from this group, send email to
>> > google-appengine+unsubscr...@googlegroups.com> >  e...@googlegroups.com>
>> > .
>> > For more options, visit this group at
>> >http://groups.google.com/group/google-appengine?hl=en.
>
> --
> You received thi

[google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Tom
I'm 99% sure I created it with this email address. Under the
permissions settings of the one application I do have I'm the only
listed email address with access.

On Oct 15, 7:06 pm, Robert Kluin  wrote:
> What account did you use to create that one application you have?  Or
> did someone else create it and share it with you?
>
> Robert
>
>
>
> On Fri, Oct 15, 2010 at 13:26, Tom  wrote:
> > When I go to that URL and login I see the "My Applications" page at
> > this URL:
>
> >https://appengine.google.com/
>
> > I see my one already created application (which I can work on fine and
> > is deployed and everything).
>
> > Under my application and the create application button I see "you have
> > 10 applications remaining" which is perhaps a hint that something is
> > not quite right (since I have one application already?)
>
> > Thanks
> > Tom
>
> > On Oct 15, 6:18 pm, Eli Jones  wrote:
> >> Hmm.  When you click thehttps://appengine.google.com/linkand log in, what
> >> is the next page you see?
>
> >> Is it the "My Applications" screen?  What is the http address that shows at
> >> the very top?  Do you see your already created application there in the 
> >> list
> >> of applications?
>
> >> Under the "Create Application" button, do you see the message "You have 9
> >> applications remaining."?
>
> >> Your account may be trapped in limbo.. (though, it would be confusing if 
> >> you
> >> can still work on the one application that you already have created.. yet
> >> appengine does not recognized your account as having been created..)
>
> >> As Lorenzo mentioned.. maybe the SMS issues waitlist will get you some
> >> satisfaction.
>
> >> On Fri, Oct 15, 2010 at 1:08 PM, Tom  wrote:
> >> > Hi Eli,
>
> >> > This is why I think something is broken with my account I have an
> >> > app engine account already under which I have created one application.
> >> > When I login and click "create application" I get taken to the mobile
> >> > number validation page. At which point I get the error message.
>
> >> > Or am I really doing something stupid?
>
> >> > Tom
>
> >> > On Oct 15, 6:05 pm, Eli Jones  wrote:
> >> > > I think there has been some confusion here.
>
> >> > > If you have already signed up with Appengine and thus have an Appengine
> >> > > account under which you created an Appengine application.. then you do
> >> > not
> >> > > need to sign up for yet another Appengine account.
>
> >> > > You just need to log into Appengine here:
>
> >> > >https://appengine.google.com/
>
> >> > > and then click on the "Create Application" button.
>
> >> > > The error message was telling you that your number "has already been 
> >> > > used
> >> > to
> >> > > confirm an account"
>
> >> > > On Fri, Oct 15, 2010 at 12:56 PM, Tom  wrote:
> >> > > > Thank you for your response Lorenzo - I've submitted a message to 
> >> > > > that
> >> > > > URL. It would be helpful if Google provided a link to this page on 
> >> > > > the
> >> > > > page where they say they can't verify my phone number
>
> >> > > > Tom
>
> >> > > > On Oct 15, 4:25 pm, "l.denardo"  wrote:
> >> > > > > To create new apps, just log in to google.com/appengine  (add /a/
> >> > > > > yourdomai.com for apps accounts) and you'll see a button to create
> >> > > > > your new app.
>
> >> > > > > If you need to reuse the same phone number for a different account
> >> > > > > there's a manual verification form you can fill in athttps://
> >> > > > appengine.google.com/waitlist/sms_issues
>
> >> > > > > Regards
> >> > > > > Lorenzo
>
> >> > > > > On Oct 15, 11:31 am, Tom  wrote:
>
> >> > > > > > Hi, sorry to be a pain - is this the right place to post this 
> >> > > > > > kind
> >> > of
> >> > > > > > question or should I try contacting support?
>
> >> > > > > > Thank you
>
> >> > > > > > Tom
>
> >> > > > > > On Oct 13, 4:31 pm, Tom  wrote:
>
> >> > > > > > > Hi,
>
> >> > > > > > > I currently have one app in my account, I'm trying to add a
> >> > second
> >> > > > but
> >> > > > > > > when I do I get taken to the confirm by SMS page and when I put
> >> > in my
> >> > > > > > > mobile number I get this:
>
> >> > > > > > > "The phone number has been sent too many messages or has 
> >> > > > > > > already
> >> > been
> >> > > > > > > used to confirm an account"
>
> >> > > > > > > I think it has already been used to confirm an account, mine!
>
> >> > > > > > > Any ideas?
>
> >> > > > > > > Thanks
>
> >> > > > > > > Tom
>
> >> > > > --
> >> > > > 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 >> > > >  e...@googlegroups.com> >> > e...@googlegroups.com>
> >> > > > .
> >> > > > For more options, visit this group at
> >> > > >http://groups.google.com/group/google-appengine?hl=en.
>
> >> > --
> >>

[google-appengine] Re: SDK 1.3.8 released!

2010-10-15 Thread vivpuri
Ignore the "AppStats" comment. I got it to work.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Unable to create new apps: "The phone number has been sent too many messages or has already been used to confirm an account"

2010-10-15 Thread Tom
Thanks everyone - looks like that SMS form worked, just got an email
confirming that my account is confirmed and I can now create
applications :-)

On Oct 15, 7:21 pm, Tom  wrote:
> I'm 99% sure I created it with this email address. Under the
> permissions settings of the one application I do have I'm the only
> listed email address with access.
>
> On Oct 15, 7:06 pm, Robert Kluin  wrote:
>
>
>
> > What account did you use to create that one application you have?  Or
> > did someone else create it and share it with you?
>
> > Robert
>
> > On Fri, Oct 15, 2010 at 13:26, Tom  wrote:
> > > When I go to that URL and login I see the "My Applications" page at
> > > this URL:
>
> > >https://appengine.google.com/
>
> > > I see my one already created application (which I can work on fine and
> > > is deployed and everything).
>
> > > Under my application and the create application button I see "you have
> > > 10 applications remaining" which is perhaps a hint that something is
> > > not quite right (since I have one application already?)
>
> > > Thanks
> > > Tom
>
> > > On Oct 15, 6:18 pm, Eli Jones  wrote:
> > >> Hmm.  When you click thehttps://appengine.google.com/linkandlog in, what
> > >> is the next page you see?
>
> > >> Is it the "My Applications" screen?  What is the http address that shows 
> > >> at
> > >> the very top?  Do you see your already created application there in the 
> > >> list
> > >> of applications?
>
> > >> Under the "Create Application" button, do you see the message "You have 9
> > >> applications remaining."?
>
> > >> Your account may be trapped in limbo.. (though, it would be confusing if 
> > >> you
> > >> can still work on the one application that you already have created.. yet
> > >> appengine does not recognized your account as having been created..)
>
> > >> As Lorenzo mentioned.. maybe the SMS issues waitlist will get you some
> > >> satisfaction.
>
> > >> On Fri, Oct 15, 2010 at 1:08 PM, Tom  wrote:
> > >> > Hi Eli,
>
> > >> > This is why I think something is broken with my account I have an
> > >> > app engine account already under which I have created one application.
> > >> > When I login and click "create application" I get taken to the mobile
> > >> > number validation page. At which point I get the error message.
>
> > >> > Or am I really doing something stupid?
>
> > >> > Tom
>
> > >> > On Oct 15, 6:05 pm, Eli Jones  wrote:
> > >> > > I think there has been some confusion here.
>
> > >> > > If you have already signed up with Appengine and thus have an 
> > >> > > Appengine
> > >> > > account under which you created an Appengine application.. then you 
> > >> > > do
> > >> > not
> > >> > > need to sign up for yet another Appengine account.
>
> > >> > > You just need to log into Appengine here:
>
> > >> > >https://appengine.google.com/
>
> > >> > > and then click on the "Create Application" button.
>
> > >> > > The error message was telling you that your number "has already been 
> > >> > > used
> > >> > to
> > >> > > confirm an account"
>
> > >> > > On Fri, Oct 15, 2010 at 12:56 PM, Tom  wrote:
> > >> > > > Thank you for your response Lorenzo - I've submitted a message to 
> > >> > > > that
> > >> > > > URL. It would be helpful if Google provided a link to this page on 
> > >> > > > the
> > >> > > > page where they say they can't verify my phone number
>
> > >> > > > Tom
>
> > >> > > > On Oct 15, 4:25 pm, "l.denardo"  wrote:
> > >> > > > > To create new apps, just log in to google.com/appengine  (add /a/
> > >> > > > > yourdomai.com for apps accounts) and you'll see a button to 
> > >> > > > > create
> > >> > > > > your new app.
>
> > >> > > > > If you need to reuse the same phone number for a different 
> > >> > > > > account
> > >> > > > > there's a manual verification form you can fill in athttps://
> > >> > > > appengine.google.com/waitlist/sms_issues
>
> > >> > > > > Regards
> > >> > > > > Lorenzo
>
> > >> > > > > On Oct 15, 11:31 am, Tom  wrote:
>
> > >> > > > > > Hi, sorry to be a pain - is this the right place to post this 
> > >> > > > > > kind
> > >> > of
> > >> > > > > > question or should I try contacting support?
>
> > >> > > > > > Thank you
>
> > >> > > > > > Tom
>
> > >> > > > > > On Oct 13, 4:31 pm, Tom  wrote:
>
> > >> > > > > > > Hi,
>
> > >> > > > > > > I currently have one app in my account, I'm trying to add a
> > >> > second
> > >> > > > but
> > >> > > > > > > when I do I get taken to the confirm by SMS page and when I 
> > >> > > > > > > put
> > >> > in my
> > >> > > > > > > mobile number I get this:
>
> > >> > > > > > > "The phone number has been sent too many messages or has 
> > >> > > > > > > already
> > >> > been
> > >> > > > > > > used to confirm an account"
>
> > >> > > > > > > I think it has already been used to confirm an account, mine!
>
> > >> > > > > > > Any ideas?
>
> > >> > > > > > > Thanks
>
> > >> > > > > > > Tom
>
> > >> > > > --
> > >> > > > You received this message because you are subscribed to the Google
> > >> > Groups
>

Re: [google-appengine] Re: Upcoming changes to Task Queues

2010-10-15 Thread Ikai Lan (Google)
It's the other way around - it's only when performance has improved that we
can take it out of labs. We're investigating issues now regarding backed up
tasks.

To answer an earlier question about task queue space: this is swept
asynchronously. The expectation should be that space used for tasks will be
swept within 12 hours. If you run a lot of tasks, you'll want to be sure you
raise the amount of space you can allocate for tasks in your configuration
files.

--
Ikai Lan
Developer Programs Engineer, Google App Engine
Blogger: http://googleappengine.blogspot.com
Reddit: http://www.reddit.com/r/appengine
Twitter: http://twitter.com/app_engine



On Fri, Oct 15, 2010 at 8:03 AM, Cameron  wrote:

> Task Queues coming out of labs is great news!  Will performance and
> stability improve at this time as well?  Looking at the Taskqueue
> Status page, every single day for the last 3 months there have been
> huge spikes in execution latency.  Every single day (I clicked through
> them all).  So much yellow and red in the graphs.  The last time there
> was a solid blue graph was July 11, 2010.
>
>
> http://code.google.com/status/appengine/detail/taskqueue/2010/10/15#ae-trust-detail-taskqueue-execution-latency
>
> I realize Task Queues are for background processing which is how I use
> them in my apps.  However, when I set the rate at 50 tasks per second
> I expect actual throughput to be somewhat close to that rate.  When
> execution latency jumps up to 25 seconds per task, then essentially
> all the benefits of using task queues is lost.
>
> Can we expect improvements in this area when the "experimental" tag is
> removed?
>
> -Cameron
>
> On Oct 13, 4:42 pm, "Ikai Lan (Google)" 
> 
> >
> wrote:
> > Hey everyone,
> >
> > We're working on moving Task Queues out of labs/experimental for an
> upcoming
> > release slated for November. One of the requirements for doing so is to
> > better enforce the Task Queues storage quota. The documentation describes
> > this quota as storage for data for tasks that have not yet executed:
> >
> > http://code.google.com/appengine/docs/quotas.html#Task_Queue
> >
> > Currently, this quota is not enforced, and it is possible for
> applications
> > with backed up task queues to exceed this quota without running into
> quota
> > denials. Check your admin console's quota page for your application to
> see
> > if you are reaching or exceeding this quota. If so, you'll have the
> > following options:
> >
> > 1. Allocate more storage quota to taskqueue storage by updating:
> >  - total_storage_limit in queue.yaml for Python applications
> >  - TotalStorageLimit in queue.xml for Java applications.
> > Note: you may need to buy more disk quota if there's not enough
> > quota for datastore, blobstore and taskqueue storage altogether.
> >
> > 2. Fix backed up queues using one of the options below. You will
> recognize
> > these as queues with high numbers of tasks (typically >2000).
> > - Purge backed up queues (an easy button click in admin console's
> > Queue Details page for the queue).
> > - Increase the execution rate and let your app work through the
> > backlog. To do this, edit queue.yaml (or queue.xml for Java apps) and
> alter
> > the rates on the queues. You can set a higher bucket size than the
> default
> > (currently 5) to maximize throughput.
> > - Reduce the rate at which new tasks are added to queues. This
> will
> > involve some editing of app code.
> >
> > It can take a few hours to update the admin console after the quotas have
> > been updated.
> >
> > We'll post a reminders to the App Engine blog as well as to this thread
> as
> > the release nears.
> >
> > --
> > Ikai Lan
> > Developer Programs Engineer, Google App Engine
> > Blogger:http://googleappengine.blogspot.com
> > Reddit:http://www.reddit.com/r/appengine
> > Twitter:http://twitter.com/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-appeng...@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.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Serious problem caused process to exit... but where are my logs?

2010-10-15 Thread Don
Can you respond privately with your application id?  I can
investigate.

Thanks,
Don

On Oct 11, 8:17 pm, Starman  wrote:
> Hi there,
>
> My app is doing great locally. It deploys fine.
>
> Now I get this error in my logs everytime I try to execute a couple of
> updates to the datastore in the same transaction. In fact, I know part
> of my code executes OK since one of the updates makes it to the
> datastore but the other does not. And it's not busting the 30 seconds
> limit as this transaction takes less than a second locally. Each
> entity is part of a different entity group... but I had disabled
> transactions when I was using jpa.  I have recently switch from java/
> jpa to Objectify. I am also not using transactions and should be able
> to update different entity groups within the same transaction.
>
> My question really is, how come you don't get any log output when the
> request causes the process to exit? Makes it pretty hard to find the
> issue.
>
> I have tried updating different entities, calling the task directly
> instead of having the task queue api do it, removed security, changed
> the http error codes returned, catching errors and logging them
> somehow... and a bunch of other things.
>
> What would really help would be running with full debug logging on and
> getting my log output.
>
> Thanks for an otherwise incredible platform,
>
> Remy

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] 1.3.8 and merge-join index requirements

2010-10-15 Thread Ikai Lan (Google)
1.3.8 didn't change any of these requirements. They're still pending.

--
Ikai Lan
Developer Programs Engineer, Google App Engine
Blogger: http://googleappengine.blogspot.com
Reddit: http://www.reddit.com/r/appengine
Twitter: http://twitter.com/app_engine



On Thu, Oct 14, 2010 at 8:30 PM, Jamie H  wrote:

> After hearing that 1.3.8 removed some index requirements, along with
> watching the exciting google IO video on next gen queries, I have been
> preparing for this release... However, the change to index
> requirements does not seem to be live yet... am I correct ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Evolution of Datastore Admin

2010-10-15 Thread Rafael Sierra
Will "Datastore Admin" in the (far) future evolve to something like
django's admin panel?

--
Rafael Sierra

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Evolution of Datastore Admin

2010-10-15 Thread Orlando P. Abarzua
aplicaciones  en  espanol?

On Fri, Oct 15, 2010 at 7:24 PM, Rafael Sierra  wrote:
> Will "Datastore Admin" in the (far) future evolve to something like
> django's admin panel?
>
> --
> Rafael Sierra
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Why so many instances?

2010-10-15 Thread Jeff Schnitzer
Thanks for the new Instances dashboard - it's neat to know.  I'm
curious though, why are so many instances running?

I have one (java) app that gets a steady 0.5 hits/s, and another
(python) app that gets a steady 2.5 hits/s.

The 0.5 hits/s Java app is running 4 instances.
The 2.5 hits/s Python app is running 6 instances.

Obviously I don't mind that Google devotes so many resources to
serving my application, but it does seem odd.  Does GAE need this many
instances to serve so few requests?  If my Java app surges to 50
hits/s, will I consume 400 instances??

Thanks,
Jeff

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: SDK 1.3.8 released!

2010-10-15 Thread GoSharp Lite
I am using Eclipse 3.5 to develop AppEngine and Android together,
since Android does not recommend using Eclipse 3.6.
Google Plugin for Eclipse 3.5 is still using SDK 1.3.7, can't update
new SDK 1.3.8.
Is there a way to manually install SDK 1.3.8 for Eclipse 3.5?

On Oct 15, 11:44 am, Takashi Matsuo  wrote:
> Hello App Engine Developers!
>
> We're very happy to announce that SDK 1.3.8 is released today. There
> are many new cool features, so please download the new SDK and enjoy
> it!
>
> You can download the new SDK 
> from:http://code.google.com/appengine/downloads.html
>
> Our blog post includes some screenshots of new features in admin 
> console:http://googleappengine.blogspot.com/2010/10/new-app-engine-sdk-138-in...
>
> Here are release notes:
>
> Java
> ---
> Version 1.3.8
> =
> - You can run task queue tasks immediately from the admin console.
> - Added an OutputSettings class to the Images API to specify the JPEG encoding
>   quality when running in production.
> - Support for login of multiple Google accounts within an app, and longer 
> login
>   sessions. For more information see:
>    http://www.google.com/support/accounts/bin/answer.py?answer=181599
> - In queue.xml, the maximum allowed bucket size is now 100.
> - Removed limits on zigzag merge-join queries. Therefore the error "The 
> built-in
>   indices are not efficient enough for this query and your data. Please add a
>   composite index for this query." will no longer be thrown in most cases,
>   enabling more types of queries without indexes.
> - The whitelist has been updated to include java.net.InetAddress and some
>   interfaces and abstract classes in javax.xml.soap, including
>   javax.xml.soap.SOAPMessage.
> - Fixed an issue reserving App Ids by owners of emails containing periods,
>   multiple cases, and googlemail.com address.
>    http://code.google.com/p/googleappengine/issues/detail?id=1196
> - Fixed an issue where TaskOptions had no public getters, making testing
>   impossible.
>    http://code.google.com/p/googleappengine/issues/detail?id=3243
> - Fixed an issue on the development server where PNGs were being returned as
>   JPEGs.
>    http://code.google.com/p/googleappengine/issues/detail?id=3661
>
> Python
> -
> Version 1.3.8
> ==
> - Builtin app.yaml handlers are available for common application functions,
>   such as appstats.
>    http://code.google.com/appengine/docs/python/config/appconfig.html#Bu...
> - The Admin Console now provides an experimental tool to delete all entities 
> in
>   the datastore or all entities of a given type. This is available only if
>   enabled using the datastore_admin builtin. Deleting entities will count
>   against application quota.
>    http://code.google.com/appengine/docs/python/datastore/creatinggettin...
> - You can run task queue tasks immediately from the Admin Console.
> - You can now specify the quality of JPEG images via the Image API's
>   execute_transforms function. Available in production only.
> - Support for login of multiple Google accounts within an app, and longer 
> login
>   sessions. For more information see:
>    http://www.google.com/support/accounts/bin/answer.py?answer=181599
> - In queue.yaml, the maximum allowed bucket size is now 100.
> - Precompilation is now enabled by default. To disable, use the
>   --no_precompilation flag when updating your app.
> - BlobInfo now has an open() method that returns a BlobReader.
> - BlobReader now accepts a BlobInfo.
> - Removed limits on zigzag merge-join queries. Therefore the error "The 
> built-in
>   indices are not efficient enough for this query and your data. Please add a
>   composite index for this query." will no longer be thrown in most cases,
>   enabling more types of queries without indexes.
> - Fixed an issue with task queue tasks not running on the dev_appserver when
>   using Python 2.6.
> - Fixed an issue on the dev_appserver where auto task running wasn't working 
> for
>   BulkAdd.
> - Fixed an issue reserving App Ids by owners of similarly-named mails accounts
>   containing periods, multiple cases, and googlemail.com address.
>    http://code.google.com/p/googleappengine/issues/detail?id=1196
> - Fixed an issue on the development server where PNGs were being returned as
>   JPEGs.
>    http://code.google.com/p/googleappengine/issues/detail?id=3661
>
> --
> Takashi Matsuo
> Developer Relations
> Developer Advocate for Google App Engine/iGoogle
> Google Japan, Inc.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] ssl and openid

2010-10-15 Thread Bart Thate
Hoi everybody !

In the prerelease version it is mentioned that SSL with openid would be
fixed, but i seen no mention of it in the official release notes. After
testing this it still doesn't work for me, is this supposed to be fixed or
do we need to wait till the next release ?

Bart

-- 
@jsonbot Heerhugowaard, Netherlands
programming schizofrenic - http://jsonbot.appspot.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Why so many instances?

2010-10-15 Thread 风笑雪
The max instances per app are about 30.

--
keakon



On Sat, Oct 16, 2010 at 9:30 AM, Jeff Schnitzer  wrote:
> Thanks for the new Instances dashboard - it's neat to know.  I'm
> curious though, why are so many instances running?
>
> I have one (java) app that gets a steady 0.5 hits/s, and another
> (python) app that gets a steady 2.5 hits/s.
>
> The 0.5 hits/s Java app is running 4 instances.
> The 2.5 hits/s Python app is running 6 instances.
>
> Obviously I don't mind that Google devotes so many resources to
> serving my application, but it does seem odd.  Does GAE need this many
> instances to serve so few requests?  If my Java app surges to 50
> hits/s, will I consume 400 instances??
>
> Thanks,
> Jeff
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Upcoming changes to Task Queues

2010-10-15 Thread 风笑雪
Hi, Ikai

I would like to know whether Google will let us be able to get tasks
in the specified queue, then edit or delete them in the future.

--
keakon

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Valid filename

2010-10-15 Thread Bart Thate
When i upload my bot to the GAE i get these errors:

2010-10-16 06:46:18,789 ERROR appcfg.py:1506 Invalid character in filename:
gozerdata/channels/~...@127.0.0.1
2010-10-16 06:46:18,789 ERROR appcfg.py:1506 Invalid character in filename:
gozerdata/channels/#dunkbots
2010-10-16 06:46:18,789 ERROR appcfg.py:1506 Invalid character in filename:
gozerdata/channels/d...@9cb22b89-142e-482f-bd8b-046a95c38d7f

How can i normalize my filename so i get a correct filename ?
What characters are allowed and what not?  Is there any function i can call
to strip them ?

Thnx !

Bart
-- 
@jsonbot Heerhugowaard, Netherlands
programming schizofrenic - http://jsonbot.appspot.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: SDK 1.3.8 released!

2010-10-15 Thread Peter Ondruska
See 
http://groups.google.com/group/google-appengine-java/browse_thread/thread/94d7e74a2e882b4b/65358a09ced5e1d2#

For GAE/Java there is another group: 
http://groups.google.com/group/google-appengine-java

On Oct 16, 3:37 am, GoSharp Lite  wrote:
> I am using Eclipse 3.5 to develop AppEngine and Android together,
> since Android does not recommend using Eclipse 3.6.
> Google Plugin for Eclipse 3.5 is still using SDK 1.3.7, can't update
> new SDK 1.3.8.
> Is there a way to manually install SDK 1.3.8 for Eclipse 3.5?
>
> On Oct 15, 11:44 am, Takashi Matsuo  wrote:
>
>
>
> > Hello App Engine Developers!
>
> > We're very happy to announce that SDK 1.3.8 is released today. There
> > are many new cool features, so please download the new SDK and enjoy
> > it!
>
> > You can download the new SDK 
> > from:http://code.google.com/appengine/downloads.html
>
> > Our blog post includes some screenshots of new features in admin 
> > console:http://googleappengine.blogspot.com/2010/10/new-app-engine-sdk-138-in...
>
> > Here are release notes:
>
> > Java
> > ---
> > Version 1.3.8
> > =
> > - You can run task queue tasks immediately from the admin console.
> > - Added an OutputSettings class to the Images API to specify the JPEG 
> > encoding
> >   quality when running in production.
> > - Support for login of multiple Google accounts within an app, and longer 
> > login
> >   sessions. For more information see:
> >    http://www.google.com/support/accounts/bin/answer.py?answer=181599
> > - In queue.xml, the maximum allowed bucket size is now 100.
> > - Removed limits on zigzag merge-join queries. Therefore the error "The 
> > built-in
> >   indices are not efficient enough for this query and your data. Please add 
> > a
> >   composite index for this query." will no longer be thrown in most cases,
> >   enabling more types of queries without indexes.
> > - The whitelist has been updated to include java.net.InetAddress and some
> >   interfaces and abstract classes in javax.xml.soap, including
> >   javax.xml.soap.SOAPMessage.
> > - Fixed an issue reserving App Ids by owners of emails containing periods,
> >   multiple cases, and googlemail.com address.
> >    http://code.google.com/p/googleappengine/issues/detail?id=1196
> > - Fixed an issue where TaskOptions had no public getters, making testing
> >   impossible.
> >    http://code.google.com/p/googleappengine/issues/detail?id=3243
> > - Fixed an issue on the development server where PNGs were being returned as
> >   JPEGs.
> >    http://code.google.com/p/googleappengine/issues/detail?id=3661
>
> > Python
> > -
> > Version 1.3.8
> > ==
> > - Builtin app.yaml handlers are available for common application functions,
> >   such as appstats.
> >    http://code.google.com/appengine/docs/python/config/appconfig.html#Bu...
> > - The Admin Console now provides an experimental tool to delete all 
> > entities in
> >   the datastore or all entities of a given type. This is available only if
> >   enabled using the datastore_admin builtin. Deleting entities will count
> >   against application quota.
> >    http://code.google.com/appengine/docs/python/datastore/creatinggettin...
> > - You can run task queue tasks immediately from the Admin Console.
> > - You can now specify the quality of JPEG images via the Image API's
> >   execute_transforms function. Available in production only.
> > - Support for login of multiple Google accounts within an app, and longer 
> > login
> >   sessions. For more information see:
> >    http://www.google.com/support/accounts/bin/answer.py?answer=181599
> > - In queue.yaml, the maximum allowed bucket size is now 100.
> > - Precompilation is now enabled by default. To disable, use the
> >   --no_precompilation flag when updating your app.
> > - BlobInfo now has an open() method that returns a BlobReader.
> > - BlobReader now accepts a BlobInfo.
> > - Removed limits on zigzag merge-join queries. Therefore the error "The 
> > built-in
> >   indices are not efficient enough for this query and your data. Please add 
> > a
> >   composite index for this query." will no longer be thrown in most cases,
> >   enabling more types of queries without indexes.
> > - Fixed an issue with task queue tasks not running on the dev_appserver when
> >   using Python 2.6.
> > - Fixed an issue on the dev_appserver where auto task running wasn't 
> > working for
> >   BulkAdd.
> > - Fixed an issue reserving App Ids by owners of similarly-named mails 
> > accounts
> >   containing periods, multiple cases, and googlemail.com address.
> >    http://code.google.com/p/googleappengine/issues/detail?id=1196
> > - Fixed an issue on the development server where PNGs were being returned as
> >   JPEGs.
> >    http://code.google.com/p/googleappengine/issues/detail?id=3661
>
> > --
> > Takashi Matsuo
> > Developer Relations
> > Developer Advocate for Google App Engine/iGoogle
> > Google Japan, Inc.

-- 
You received t