Re: [google-appengine] OpenID2.0 Going Away

2014-12-16 Thread Gopal Patel
OpenID connect , i.e. OAuth 2.0 On Mon, Dec 15, 2014 at 1:48 PM, Jay Kyburz wrote: > > My users have started getting warnings that OpenID 2 is going away soon > when logging into my app. > > My app uses Federated Login. Will be modified to use something other than > openID before it goes down. >

Re: [google-appengine] Re: Difference between Google App Engine SDK 1.7.5 and 1.8.9

2014-01-29 Thread Gopal Patel
Also, app engine do not stick to all the version simultaneously, and only latest version is likely to work on the server, so one should update as soon as it releases. On Wed, Jan 29, 2014 at 4:56 PM, timh wrote: > There are lots of chnages, you should read the release notes > https://code.googl

Re: [google-appengine] Re: Wait, what? App Engine doesn't work with latest version of WordPress?

2013-12-17 Thread Gopal Patel
I am waiting for the day when Wordpress do all the above in order for it to be compatible with Google App Engine, and not the other way around. Would you change the car or would you change the road ? ( you are absolutely free to choose either, but not both ) On Thu, Dec 12, 2013 at 10:29 AM, Va

Re: [google-appengine] How to prevent overwriting an entity simultaneously?

2013-10-19 Thread Gopal Patel
Simplest is to do it in task queue in sequence On Oct 19, 2013 7:45 PM, "Kaan Soral" wrote: > I've implemented routines to handle contention at a large level, a custom > pipeline implementation, there also also basic checks to prevent > overwriting an entity. > > However there are some operations

Re: [google-appengine] Re: App engine is down on some apps

2013-10-17 Thread Gopal Patel
nice idea, will remember it, thanks of sharing On Thu, Oct 17, 2013 at 1:07 PM, ZeroCool wrote: > OK, after desperately trying to contact google for a few hours. > I disabled my app and re-enabled it. > Guess what, it brought it back to life. > > If anyone has a similar problem in the futur

Re: [google-appengine] Best Practices for Continuous Deployment on AppEngine

2013-08-11 Thread Gopal Patel
You can set default from command line. On Aug 10, 2013 10:38 PM, "Jeff Schnitzer" wrote: > We do zero-downtime rolling deployments. Our solution is to deploy to a > new version each time (identified by a timestamp), warm up the version, and > then switch. If you have a high-traffic app you may ne

[google-appengine] Python Google App Engine Shopping Cart

2013-06-17 Thread Gopal Patel
Is there any Open Source Python Shopping Cart that I could use to host my store on google app engine ? ( +1 if it is being used in live site..) I would need a lot of customization ( and hence can contribute a lot back ). -- You received this message because you are subscribed to the Google Group

[google-appengine] New python app engine framework

2013-03-02 Thread Gopal Patel
https://bitbucket.org/cloudsherpas/ferris-framework/overview -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com.

Re: [google-appengine] How many people are using google app engine?

2013-01-30 Thread Gopal Patel
its reaching 1B$ very soon. On Sun, Jan 13, 2013 at 3:27 AM, Brandon Wirtz wrote: > Lots, and lots. > > This appears to be a loaded question. > > ** ** > > Better questions are things like “how much revenue does AppEngine > generate” and “how many requests a day does it serve” > > I don

[google-appengine] joining datastore and search

2013-01-23 Thread Gopal Patel
is there a simpler way to avoid creating document for search every time a new datastore record created ? can not it be possible to have database model ndb.searchModel which automatically do so ? -- You received this message because you are subscribed to the Google Groups "Google App Engine" gro

Re: [google-appengine] Re: Is App Engine suitable for write intensive applications?

2012-10-27 Thread Gopal Patel
if data is independent of each other , yes you can easily reach that speed of writing. and unless it is ok to lost a one or two data point ( in case of memcache eviction ) i recommend directly writing to datastore. On Wed, Oct 24, 2012 at 5:46 AM, Bradley Ford wrote: > Hi All, > > I hope I can

Re: [google-appengine] Re: Channel API and "fan out" to multiple clients

2012-10-09 Thread Gopal Patel
its undefined behavior. they never said it will not work or prohibited. they said undefined. On Tue, Oct 9, 2012 at 1:54 AM, Richard Watson wrote: > I'm sure it's very unlikely to work reliably. If you need that, until > Google makes a policy change I'd suggest using something like Pusher. > ht

Re: [google-appengine] Re: How to bill a user for an appengine application?

2012-10-06 Thread Gopal Patel
try bitcoin On Sun, Oct 7, 2012 at 1:50 AM, Kaan Soral wrote: > Getting money from a user is EXTREMELY hard, especially if you are outside > US. > > If you want frictionless payments, you should probably get a merchant > account for credit cards, you cant get CC info to Appengine, for that > rea

[google-appengine] How reliable is google high replicaiton data storage ?

2012-10-04 Thread Gopal Patel
I found google high replication pretty stable. what I would like to know is to what level you have tested it to return entity which was saved successfully in database ? i.e. if entity was stored succesfully. if i get it by id after 10 years, what chance that it will be returned correctly ? --

Re: [google-appengine] Re: Get file size with Python

2012-09-30 Thread Gopal Patel
It prohibits "writing". It allows reading anyway you want. On Mon, Oct 1, 2012 at 9:02 AM, GregF wrote: > Appengine does not give you access to the filesystem. You will need to use > either the datastore or the blobstore to store local information. > > Cheers! > Greg. > > > On Saturday, 29 Septe

Re: [google-appengine] Custom SSL certificate with more than two intermediate CAs

2012-09-28 Thread Gopal Patel
Thanks. Did it. Worked Great. On Wed, Sep 26, 2012 at 2:12 PM, Timofey Koolin wrote: > You must convert all in PEM, than open each of they in text editor and > copy all content into one file. > > it says invalid key when trying with combined crt, it work with single crt. > > On Wed, Sep 26, 2012

Re: [google-appengine] Custom SSL certificate with more than two intermediate CAs

2012-09-26 Thread Gopal Patel
it says invalid key when trying with combined crt, it work with single crt. On Wed, Sep 26, 2012 at 8:17 AM, Ivan Volosyuk wrote: > You may want to concatenate the files into your certificate.pem for extra > compatibility with various browsers. > > > On Tuesday, September 25, 2012 2:22:33 PM UTC

Re: [google-appengine] Custom SSL certificate with more than two intermediate CAs

2012-09-24 Thread Gopal Patel
newbie here. my ca provide 3 .crt format certificates. and I am allowed to upload only one pem via google apps ssl tab. one is sslca.crt, another is addexternalcaroot.crt and one is mywebsite.crt I converted mywebsite.crt to pem and uploaded and it works with SNI. what do I need to do with oth

Re: [google-appengine] Re: is antlr3 library available in python27 ?

2012-07-29 Thread Gopal Patel
i have copied pasted and used it, but since google itself uses it for their "cron" scheduler, its quite nice if its included by default. On Mon, Jul 30, 2012 at 6:45 AM, Anand Mistry wrote: > It is a small, pure-python library, so it is unlikely we will add it to > the production runtime. > > >

[google-appengine] is antlr3 library available in python27 ?

2012-07-29 Thread Gopal Patel
antlr3 is available in sdk but not in production. is there any possiblity of including it in production ? -- 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 unsubscrib

Re: [google-appengine] App Engine 1.6.5 Released

2012-04-25 Thread Gopal Patel
does ndb supports projection query ? On Wed, Apr 25, 2012 at 11:43 AM, Alfred Fuller wrote: > I agree :-), the doc update is in progress. > > > On Tue, Apr 24, 2012 at 10:41 PM, Sun Jing wrote: > >> Thank you, it works. I think the document should be updated: >> >> https://developers.google.com

Re: [google-appengine] Re: Seeing huge delays on task queue execution - 13sec+ per task

2012-03-27 Thread Gopal Patel
i think this happen only when they release a new version of app engine. so it linked to app wise upgrade. On Wed, Mar 28, 2012 at 3:30 AM, vlad wrote: > I have been screaming about this for a looong time. The offcial position > of GAE team is - we don't guarantee on time execution. Even though t

Re: [google-appengine] In your opinion what are the most complex web applications built on top of google app engine ?

2012-03-26 Thread Gopal Patel
2012 at 10:17 AM, Jeff Schnitzer wrote: > On Sun, Mar 25, 2012 at 11:04 AM, Gopal Patel > wrote: > > > > I would also like to know if someone out there is making highly complex > > system on top of google app engine ? ( By Complex, I mean, lots of cross > > en

[google-appengine] In your opinion what are the most complex web applications built on top of google app engine ?

2012-03-25 Thread Gopal Patel
We all know that google app engine scales and the prince's wedding website was a prime example of that. I would also like to know if someone out there is making highly complex system on top of google app engine ? ( By Complex, I mean, lots of cross entity transaction, more than hundred different t

Re: [google-appengine] Python2.7 Port: My 10x one line of code

2012-03-17 Thread Gopal Patel
nice findings. ( if you are doing this for sanity check on html, markupsafe can be of lot of help ) On Sat, Mar 17, 2012 at 7:30 PM, stevep wrote: > I hope this may be helpful as others look for 2.7 optimizations. I > just ported to 2.7 threadsafe: true. Am running on an F1 instance with > very

Re: [google-appengine] High Replication latencies and it's related costs.

2012-03-13 Thread Gopal Patel
if request/second dropped, nothing could be done. latency has nothing to do with request/second. if nothing else, it will increase the instance count, google have no control over request/second. On Wed, Mar 14, 2012 at 9:47 AM, thecheatah wrote: > Hi, > > I am noticing that the latency on my HR

Re: [google-appengine] Re: It seems "Cold Starts" is an unavoidable problem for GAE. So why not to conquer it?

2012-03-13 Thread Gopal Patel
you mean, always have one instance more than required ? ( who is going to pay for that ? ) , and is not minimum idle instance same thing ? On Wed, Mar 14, 2012 at 10:36 AM, Tapir wrote: > I means "why not to conquer it instead of trying to avoid it?". > > If you can't conquer it, please lower th

Re: [google-appengine] Huge number of "Error Code 204" in my log files today, happens on static and dynamic content, results in http 500 error

2012-03-06 Thread Gopal Patel
thats a good thing. I am back to nil cost for my website because of that. ;) its caching. google uses edge caching for static content and if you have cache header defined. for all such request your log will show 204. On Mon, Mar 5, 2012 at 9:02 PM, Kenneth wrote: > Anyone else seeing this or is

[google-appengine] setuptools added as third party library

2012-02-29 Thread Gopal Patel
in recent change, setuptools added as third party library to google app engine. I am wondering, what is the use case for it in google 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-

Re: [google-appengine] A bug that hits every 4 years* and takes everything

2012-02-29 Thread Gopal Patel
not every four year, you will be safe for year 2400 , 2800 and on... ( and thanks for pointing out, I will now take more care ) On Wed, Feb 29, 2012 at 8:41 PM, Andrin von Rechenberg wrote: > At least it's not your birthday today :) > > > On Wed, Feb 29, 2012 at 1:31 PM, Kaan Soral wrote: > >>

Re: [google-appengine] Thought : Request Queue Management in Google app Engine

2012-02-25 Thread Gopal Patel
i think google is already doing something similar and it will not disclose how they manage it. On Sat, Feb 25, 2012 at 2:07 PM, pradeep wrote: > Hi Google guys, > > I have some thought in the Request Queue Management > > * any of the first call takes more time to server and if the age of > inst

Re: [google-appengine] Re: 1.6.3 Prerelease SDK Available

2012-02-23 Thread Gopal Patel
http://code.google.com/p/googleappengine/issues/detail?id=5770 this is imp too in traffic splitting and in general multi-threading. On Thu, Feb 23, 2012 at 3:26 PM, Andrin von Rechenberg wrote: > Watch out though. The Channel API will be broken when you use traffic > splitting! > > See: http://c

Re: [google-appengine] Re: Feature Request For Scheduler

2011-12-22 Thread Gopal Patel
+1 , i wonder if they are already doing it ? On Wed, Dec 21, 2011 at 10:28 PM, voscausa wrote: > I'll add another patent. Make it inteligent, let it learn from previous > requests. > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > T

Re: [google-appengine] Re: GAE for a web based MMORPG

2011-12-20 Thread Gopal Patel
you can compare a massive game to a version control system, with each file being their players, with state of game being state of directory. with that said, just study how git works. http://whygitisbetterthanx.com/ On Wed, Dec 21, 2011 at 1:08 AM, Kaan Soral wrote: > My initial idea was to keep

Re: [google-appengine] Re: GAE for a web based MMORPG

2011-12-20 Thread Gopal Patel
can you do something like git ? whenever there is state change, update hash and save as new entity. that way, you will have whole chain of event, current state, etc. On Tue, Dec 20, 2011 at 6:35 PM, Jeff Schnitzer wrote: > Even worse than the communication issue is the fact that there's no >

Re: [google-appengine] Stuck delete in progress from Datastore Admin due to out of quota

2011-12-20 Thread Gopal Patel
afaik, development server do not have any quota. and instead of clearing datastore ( unless thats the operation you are testing ) , delete the datastore file directly on development server. that will be way easier. On Tue, Dec 20, 2011 at 6:37 PM, andrew wrote: > A few days ago I wanted to dele

[google-appengine] go language performance:

2011-12-14 Thread Gopal Patel
as per this blog post http://blog.golang.org/2011/12/from-zero-to-go-launching-on-google.html he created a doodle on google's homepage and used go lang on app engine. although that post was about go lang, it would be nice if someone from google have exact performance data on the app on app engine

Re: [google-appengine] Conversion API and Images

2011-12-13 Thread Gopal Patel
it works if added as assets, it will not work if it is external url. . On Wed, Dec 14, 2011 at 8:47 AM, PizzaPanther wrote: > When converting HTML to PDF, it is noted that external CSS is not > supported which is cool. My question is what about images? Is the IMG tag > supported? How about ba

Re: [google-appengine] Re: App Engine 1.6.1 Released!

2011-12-13 Thread Gopal Patel
http://code.google.com/p/googleappengine/issues/detail?id=6550 star this issue. which allows options available in online admin console to be incorporated in app config file. -- and awesome release. conversation api rocks. does it support image inside html ? ( will test it anyhow, but official an

Re: [google-appengine] 1.6.0 Prerelease SDKs are out

2011-10-31 Thread Gopal Patel
does python sdk now works with py2.7 ? On Tue, Nov 1, 2011 at 6:58 AM, Johan Euphrosine wrote: > Hi, > > We've just uploaded the 1.6.0 Prerelease SDKs: > http://code.google.com/p/googleappengine/downloads/list > > Please note that new features are not available in production until the > final re

Re: [google-appengine] Re: New Pricing ROCKS! for Small apps

2011-09-17 Thread Gopal Patel
I think $2.10 also count towards resource usage if I am not mistaken. so gae is cheapest for app that is costing $2.10 to run. On Sun, Sep 18, 2011 at 10:43 AM, Gerald Tan wrote: > You're forgetting the $2.10 per week (~$9/month) minimum charge, which is > actually annoying for small apps that o

Re: [google-appengine] Question about datastore cost optimization by reusing old entities for new data

2011-09-16 Thread Gopal Patel
nice idea but you are not counting the "search for an entity that is 3+ months old" data stores cycle On Fri, Sep 16, 2011 at 1:01 AM, Rishi Arora wrote: > In my app I have a an Entity group that stores user activity data - like a > high level application log of user activity. This is the En

Re: [google-appengine] Entity name vs property

2011-09-09 Thread Gopal Patel
you could also created derivative entity which combined both country and state and query for it == operator. On Sat, Sep 10, 2011 at 11:32 AM, Thomas Wiradikusuma < wiradikus...@gmail.com> wrote: > Hi guys, > > I have this entity: > > House { > - country > - state > - address > - owner > - ... >

Re: [google-appengine] 1.5.4 SDK Prerelease

2011-09-07 Thread Gopal Patel
its preview , actual sdk is not out yet... On Wed, Sep 7, 2011 at 8:40 PM, Muneer Malik wrote: > I see the SDK is being updated but eclipse plugin is still showing 1.5.2 .. > > any reason for that ? > > Thanks > > On Tue, Sep 6, 2011 at 2:20 PM, Johan Euphrosine wrote: > >> Hi everyone, >> >> Pr

Re: [google-appengine] Aw: Re: How do I set maximum total instances to 1 ? OR How do I run my app for free for 24 hrs a day ?

2011-09-07 Thread Gopal Patel
you cant. the option is only for maximum idle instance. it took me a lot of time and graph to grasp the idea of maximum idle instance. lol. i would rather like maximum total instance option which can be set to any number from 1 to infinite. would and like to use latency to actually control the cos

Re: [google-appengine] Google's Strategy with the New Pricing Scheme

2011-09-05 Thread Gopal Patel
on the lighter note, man, I wish my app cost $1/month to run. ;) what are you using ? java or python ? On Mon, Sep 5, 2011 at 2:15 PM, Andrin von Rechenberg wrote: > Hi there > > We are a bit confused. From all the threads we see on this mailing list > it seems that it is expensive to run sm

Re: [google-appengine] frontend instance specs

2011-09-03 Thread Gopal Patel
1.2Ghz is not our app runs on. That's reference point to calculate cpu charge. i.e. if a 3.6Ghz server take 300ms to response, it will be charged as 900ms. but thats history now, no more cpu. only instance time. On Sun, Sep 4, 2011 at 8:20 AM, Raymond C. wrote: > As far as I can remember, I dont

Re: [google-appengine] frontend instance specs

2011-09-03 Thread Gopal Patel
dont know what we are using, but we are charged for 1.2Ghz intel single core. and 128MB Max before instance get killed. On Sat, Sep 3, 2011 at 9:50 PM, GR wrote: > What are the memory and CPU specs of the frontend instances we are paying > for? > > -- > You received this message because you are

Re: [google-appengine] Re: App Engine will not be leaving preview prior to Sept 26th

2011-09-03 Thread Gopal Patel
initially I misunderstood the maximum idle instances. it exactly means that. if your app set to 2 idle instance. your app will have as many instances as it needs. but if traffic reduces it will kill rest of the idle instance apart from last two AFTER their 15 minutes cycle over. so if there is a sm

Re: [google-appengine] New Prices + Really Small Apps - what will happen??

2011-09-02 Thread Gopal Patel
+1 exact my questionfor blobstore api you need biliing I have set max instance to 1 and latency to 15s. thats *almost* ensure free quota. On Fri, Sep 2, 2011 at 5:07 PM, Joe wrote: > After seeing all the uproar regarding the new pricing model, I'm wondering > how it will affect small a

Re: [google-appengine] Re: App Engine is finished, here's why

2011-09-01 Thread Gopal Patel
I remember some talks that, google is going for instance-hour for better predictability for resource allocation and revenue. here are my free suggestions, that can make app engine looks bit good -- keep free quota but keep small amount for an app. i.e. 5$ per year per app. ( that way, you wil

Re: [google-appengine] Re: Estimated Charges Under New Pricing

2011-08-31 Thread Gopal Patel
anybody try to tweak idle time and instances to see how much it changes ? I have low traffic site so can't tell muchbut people with apps that uses lots of cpu hours, the result of tweaking idle time and instances is interessting On Thu, Sep 1, 2011 at 6:12 AM, Raymond C. wrote: > For mine

Re: [google-appengine] google-app-engine-samples DVCS poll

2011-08-26 Thread Gopal Patel
it will be great if you can do git for deployment also. 10-20% of all my deployment fails. On Fri, Aug 26, 2011 at 2:30 PM, wrote: > If you have trouble viewing or submitting this form, you can fill it out > online: > > https://docs.google.com/spreadsheet/viewform?formkey=dFhvYzA2SFlIRFZadmw1YVp

Re: [google-appengine] redirection to HTTPS is not working for Python app.yaml

2011-08-18 Thread Gopal Patel
as of now this only works on appspot domains. for custom domain, https is still "coming soon". On Fri, Aug 19, 2011 at 11:09 AM, Robert Kluin wrote: > Are you testing on the development server or production? > > > > > > > > On Thu, Aug 18, 2011 at 16:43, thstart wrote: > > to my Python app.yaml

Re: [google-appengine] Re: Stackoverflow

2011-08-03 Thread Gopal Patel
AFAIK , questions are filtered based on ontopic or offtopic and not if they are technological or not. so if there is a different category for appengine, I think most of the related question can be answered there, and they need not be a technological question. On Thu, Aug 4, 2011 at 1:26 AM, Vivek

Re: [google-appengine] Google App Engine for commercial purposes.

2011-08-02 Thread Gopal Patel
you can but it will not work. try typhoonae ro appscale. On Mon, Aug 1, 2011 at 11:19 PM, jhatzics wrote: > Hello, > > Does anyone know if I can deploy an application in my Windows 2003 > Server using GAE for commercial purposes? > > Thank you in advance, > > -- > You received this message becau

Re: [google-appengine] Re: 1.5.2 is out!

2011-07-21 Thread Gopal Patel
Any first hand experience with Go Language on GAE ? Is it fast ? should I consider moving to it for my new project ( which is not going to releasing until it comes out of experimental status.. ) ? On Fri, Jul 22, 2011 at 10:06 AM, Nick Johnson (Google) < nick.john...@google.com> wrote: > Hi Walee

[google-appengine] Does mail sending from google apps domain user ( logged in via google openid login ) allowed ?

2011-07-16 Thread Gopal Patel
if that is not allowed , is reply-to header allowed ? 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-appe

Re: [google-appengine] Re: GAE Pricing Changes - Sucker Punching the Development Community

2011-07-05 Thread Gopal Patel
and in the meanwhile aws and ms both making incoming data completely free... ( lets see how google behave when their own game of "free" played against the. ) On Tue, Jul 5, 2011 at 4:29 PM, zdravko wrote: > Stephen, thanks for basically repeating what you already said because > the first time I

Re: [google-appengine] Re: Off Topic: Google Plus

2011-07-01 Thread Gopal Patel
i think you can create google account with your own email id, and that's what he is using. On Sat, Jul 2, 2011 at 7:29 AM, JH wrote: > drakaal at digerat.com ... ? are you using google apps to access + ? > I'd like to but I can't get profiles yet... > > On Jul 1, 7:52 pm, "Brandon Wirtz" wrote:

Re: [google-appengine] Suggestion: ACL Management API

2011-06-07 Thread Gopal Patel
sharing information across user is requirement for most web applications. What I do is , create a stringlistproperty with people who have right to write on that entity. sometime even use parent property if large number of people are sharing the model. things get complicated when there is very compl

Re: [google-appengine] How can I block bot which do not follow robots.txt ?

2011-05-16 Thread Gopal Patel
thanks for correction. On Sun, May 15, 2011 at 10:57 PM, Stephen wrote: > On Sat, May 14, 2011 at 6:12 AM, Gopal Patel wrote: > > there is exabot crawler crawling my unfinished website > continuouslywhat > > can I do to stop it ? I have disallowed everything in robot.txt

[google-appengine] How can I block bot which do not follow robots.txt ?

2011-05-13 Thread Gopal Patel
there is exabot crawler crawling my unfinished website continuouslywhat can I do to stop it ? I have disallowed everything in robot.txt . -- 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

Re: [google-appengine] Lot's of requests per user, aggressive caching or what?

2011-05-13 Thread Gopal Patel
you can use in-instance caching. It may not be always up to date but will give you extreme speeds. http://appengine-cookbook.appspot.com/recipe/decorator-to-getset-from-the-memcache-automatically/?id=ahJhcHBlbmdpbmUtY29va2Jvb2tyngELEgtSZWNpcGVJbmRleCJAYWhKaGNIQmxibWRwYm1VdFkyOXZhMkp2YjJ0eUdnc1NDRU

Re: RE: [google-appengine] Re: Party like it's 1970? auto_now_add=True

2011-05-13 Thread Gopal Patel
nice information, thnks ! did't know they use same space but always used datetimeproperty. On Fri, May 13, 2011 at 8:40 PM, Rodrigo Moraes wrote: > Just FYI, DateProperty, TimeProperty and DatetimeProperty all store the > same type in the datastore: a datetime representation. The difference is >

Re: [google-appengine] Party like it's 1970? auto_now_add=True

2011-05-13 Thread Gopal Patel
is it doing this on production ? On Fri, May 13, 2011 at 12:57 PM, Brandon Wirtz wrote: > This code > > > > storedate = db.TimeProperty(auto_now_add=True) > > > > is storing > > > > 1970-01-01 07:24:59.747331 > > > > In my data store. The Time looks right, but the date is Jan 1 1970. > > > > A

Re: [google-appengine] Re: Cannot log in. Not authorized to access this application

2011-05-10 Thread Gopal Patel
http://appengine.google.com/a/awfullychocolate-bj.com 2011/5/10 Gordon & Teresa > The same:( > > 1. open http://appengine.google.com > 2. log in as gor...@awfullychocolate-bj.com (the domain admin account) > 3. unauthorized message again:-( (top-right corner display " > gor...@awfullychocolate-b

Re: [google-appengine] Multitenant Design and Indexes

2011-05-08 Thread Gopal Patel
i have same question. my guess is , it is single index. On Sun, May 8, 2011 at 9:59 PM, someone1 wrote: > Hello, > > Are indexes between different namespaces shared or is a new index used > for each namespace? If it is the latter, then is the 200 maximum set > for the App or each namespace, or d

Re: [google-appengine] OpenID+OAuth+MarketPlace

2011-04-25 Thread Gopal Patel
the key you get when testing oauth is different from what you will get for a approved app for google apps. and that same key can be used for all application that are installed my their respective domain admin. On Mon, Apr 25, 2011 at 6:09 PM, Felipe Teixeira wrote: > Hi, > > How i can get secret

Re: [google-appengine] How can i downgrade the size of "Total Stored Data"

2011-04-23 Thread Gopal Patel
OR, data is deleted immediately but the calculation of data occurs once in a while, so it will take time to reflect on stats ? On Sat, Apr 23, 2011 at 2:21 PM, Simon Knott wrote: > Deleting with the admin interface carries out a "soft" delete, which > schedules a background "hard" delete.  You'l

Re: [google-appengine] Re: Appropriate way to save hundreds of thousands of ids per user

2011-04-19 Thread Gopal Patel
use parent property. http://dl.google.com/io/2009/pres/W_0415_Building_Scalable_Complex_App_Engines.pdf this article best explains many to many huge number of relations. On Tue, Apr 19, 2011 at 2:28 PM, Kyle Mulka wrote: > My guess is that the ListProperty does have a maximum. Even if it > didn

Re: [google-appengine] Thanks for increasing Free Quota, Google!

2011-04-11 Thread Gopal Patel
lol...its for one day onlyso use it or it will not be there tomorrow... :P On Tue, Apr 12, 2011 at 8:04 AM, pdknsk wrote: > I've got generous free quotas in my dashboard :D > > Datastore API Calls              0%      7,405 of 9,223,372,036,854,775,808   >    Okay > Datastore Queries        

Re: [google-appengine] how to reduce image size (in bytes)

2011-04-04 Thread Gopal Patel
you can specify output encoding as jpeg and than can use the quality argument in composite function in image api. On Mon, Apr 4, 2011 at 5:31 PM, Yonatan Maman wrote: > I have an Image, which I want to reduce its size (in bytes). > I tried to do it by resizing the image dimensions but the size (l

Re: [google-appengine] Re: Huge latencies and so many 500 errors/Deadline Exceeded

2011-03-31 Thread Gopal Patel
HR is REPAIRED version of MS I think. AFAIK , they have built the moving facility in to the admin console. you have to make your ds read only for a while and move the data , upload your app and again stop read only mode. On Thu, Mar 31, 2011 at 5:10 PM, Ice13ill wrote: > 1. My datastore has abou

Re: [google-appengine] Re: Lifting the 43,200,000 Requests/Day limit

2011-03-24 Thread Gopal Patel
yes, ooc , whats your applicatioin ? On Fri, Mar 25, 2011 at 3:32 AM, Kaan Soral wrote: > Out of curiosity, can you send a link to your application? - please > > On Mar 23, 8:49 am, "Adam Green (AutoComplete+)" > wrote: >> Hi - I'd appreciate any help on finding the best solution to our scale >>

Re: [google-appengine] How many time App Engine Servers down per moth!?

2011-03-20 Thread Gopal Patel
@brandon , that doubled my confidance in google... :D On Sun, Mar 20, 2011 at 6:37 AM, Brandon Wirtz wrote: > Running HR rather than MS... > > Looking at the last 45 days (and my numbers are getting higher) > > I serve 700k requests a day, 21M Requests a month. And have 46 Errored > requests whi

Re: [google-appengine] Re: Scalability

2011-03-17 Thread Gopal Patel
@Timofey I think , the day you touch max limits by google, you will have people to worry about scalability while you enjoy nice holiday on galapagos. 2011/3/17 Brandon Wirtz > Nothing is infinite, Google is More infinite than most things. > > > > *From:* google-appengine@googlegroups.com [mailto

Re: [google-appengine] Scalability

2011-03-16 Thread Gopal Patel
if you are giving away *free source code* so others can use your system to create their sites, yet it can work. but "free" and "unlimited" is not possible, i think. On Wed, Mar 16, 2011 at 8:55 PM, rekby wrote: > Hello, I want create hosting system on google appes engine platform. It’ll > be many

Re: [google-appengine] Login and Google Apps RANT

2011-03-12 Thread Gopal Patel
+1. custom login pages/sign up links redirection etc are pretty old problems that haven't been solved... On Sat, Mar 12, 2011 at 2:28 PM, jay wrote: > Hello All, > > Please allow me to rant for a few minutes about some very annoying > problems I've recently had with logins and authentication. Hop

Re: [google-appengine] Re: can we assume time is sync across all servers?

2011-03-03 Thread Gopal Patel
urlfetch google.com and check date header... ;) On Thu, Mar 3, 2011 at 7:24 PM, Ng Ka Ka Eric wrote: > Hi Raymond, > Just watched the video. Thx for pointing this reference. > > I really didnt expect that the machines are not time synced (can be off for > 40mins?!) are there any technical difficu

Re: [google-appengine] WTF... new SDK and new local datastore ???

2011-02-11 Thread Gopal Patel
what is this s~ doing there anyway ? On Sat, Feb 12, 2011 at 6:21 AM, djidjadji wrote: > I had a problem that the python 1.3.8 SDK was unable to write in a > 1.3.7 SDK datastore. > They must have changed something because SDK 1.4.1 was able to > read/write a 1.3.7 SDK datastore. > > 2011/2/11 Mat