Did you skip the day in 4th grade they taught scientific method?
You don’t change 6 variables at once. Move to HR.
Test.
Move to Python 27
Test.
Move to Thread Safe
Test.
Somewhere in each of those you might want to revise code. And tweak the scheduler settings. You might want to have more than once version of your app so you can test 2 things at once, like scheduler and Thread safe.
--
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-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
Not sure on the python27 when 25 expected. Your Timeouts are the scheduler. There are a couple of tuning guides out there (a few by me even) for avoiding DEE’s
Likely getting the scheduler reeled in will make it so you can jump back to 27 Threadsafe.
Daniel keep in mind that you data is still co-hosted with dozens or hundreds on other apps on the same physical node. That is what makes performance volatile not M/S vs HRD. HRD did solve the problem for writes somewhat but not for reads. Fundamentally if an app which runs on the same node is really active *your* app's performance will suffer. So it is dump luck. Since you got a new appid when migrating you got new "neighbors" so to speak - apps which share bigtable node with your app.
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/7NEAU3WOrG8J.
I need to re-watch the "more 9s please" video to be sure, but I
believe "first reply wins" only works when you are using eventual
consistency mode - ie, when issuing a query on an indexed property
(always eventual) or doing a get-by-key in Consistency.EVENTUAL mode.
If you do a get-by-key in Consistency.STRONG mode (the default), you
will still need a quorum.
Jeff
Oooh I didn't know/think about this. I don't need strong. I bet I can
switch modes and save money. I'm not sending you any of that saved money.
But I'll buy you a drink in Phoenix :-)
(unless you are coming to work for me in PHX then I'll give you some of that
money)