[google-appengine] What happens to requests in Instance Request Pending Queue when a backend instance gets terminated due to “Exceeded soft private memory limit”?

2017-06-28 Thread Ankur Choraywal
down votefavorite I have B* instances running on App Engine(Python env) to serve user facing requests. Sometimes I see B* instances getting terminated due to

[google-appengine] Re: How to server video content fast

2015-07-11 Thread Ankur Jatt
is busy doing something else so that he/she doesn't experience the load time as a delay? On Friday, July 3, 2015 at 3:56:07 AM UTC-5, Ankur Jatt wrote: Hello Jim, Well when I saw the response time from GAE than its same around from 15ms-80ms. ANd the response metrics I attached, plz have

[google-appengine] Wrong data storage in GAE NDB

2015-07-09 Thread Ankur Jatt
Here is the situation I have a model like class Content(ndb.Model): likeCount=ndb.IntegerProperty(default=0) likeUser = ndb.KeyProperty(kind=User, repeated=True) When a new content generate than a new Content object is generated like content_obj = Content(parent=objContentData.key,

[google-appengine] Re: How to server video content fast

2015-07-03 Thread Ankur Jatt
this problem. On Friday, July 3, 2015 at 12:51:22 AM UTC+5:30, Jim wrote: Ankur, I use that same basic approach to serve thousands of blobs per day in my app, and the average response time in the app engine logs is 15ms. The blobs I'm serving are text data and they vary in size from a few

[google-appengine] How to server video content fast

2015-07-02 Thread Ankur Jatt
Currently I'm using below class to serve videos: class VelfieVideoHandler(blobstore_handlers.BlobstoreDownloadHandler): def get(self, blobKey): blobKey = BlobKey(blobKey) blobinfo = blobstore.blobstore.BlobInfo(blobKey) self.send_blob(blobKey,content_type=video/mp4)

[google-appengine] XML parsing in GAE python

2011-09-08 Thread Ankur Deshwal
Hi all, I am trying to send data to a GAE app in xml format via http POST request. The GAE application is supposed to parse it. Code handling POST request in GAE is class Guestbook(webapp.RequestHandler): def post(self): global val_list guestbook_name =

[google-appengine] POST request to GAE through custom client

2011-08-11 Thread Ankur Deshwal
newbie in the field and will highly appreciate any help. Thanks, Ankur -- 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-java] Re: War fails to deploy locally due to FactoryConfigurationError

2010-12-08 Thread ankur
Works fine for Eclipse 3.4 and Eclipse 3.6 On Dec 6, 4:41 am, ankur ankur.jai...@gmail.com wrote: Hello, I am trying to deploy the sample app on local machine but getting the error below. The server starts but the application fails to deploy . This is confusing to me as only the appengine

[appengine-java] War fails to deploy locally due to FactoryConfigurationError

2010-12-05 Thread ankur
Hello, I am trying to deploy the sample app on local machine but getting the error below. The server starts but the application fails to deploy . This is confusing to me as only the appengine and standard java libraries are on the build path. Environment: Google App Engine Java SDK 1.4.0

[google-appengine] Is it possible to sell a CMS hosted on Google App Engine without the code being visible ?

2010-05-12 Thread Ankur Gupta
and conditions ? b) Is it possible that once the access to the dashboard is provided user can download the source code ? Ankur -- 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

[google-appengine] Re: Is it possible to sell a CMS hosted on Google App Engine without the code being visible ?

2010-05-12 Thread Ankur Gupta
Thanks a lot for the answer. I guess it makes sense to go the Private server route then. Cheers Ankur On May 12, 8:19 pm, Ikai L (Google) ika...@google.com wrote: I'm going to preface this with a warning that I am not a lawyer, this is just my interpretation of the Terms of Service. It could

[google-appengine] Datastore related question - fetch random records

2010-05-05 Thread Ankur
where category=female AND location=seattle AND category=celebrity (if the solution for this use case it complex, then I can ignore it for the time being) Any ideas from GAE community will be very helpful. Thanks, Ankur -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: getting wrong presence status for XMPP users

2010-01-05 Thread Ankur
as the second argument? On Sat, Jan 2, 2010 at 11:54 AM, Sahil Mahajan sahilm2...@gmail.com wrote: Hi I am facing same problem. Did you find any solution to this problem? getPresence is always returning false. On Dec 30 2009, 2:27 pm, Ankur stiitan...@gmail.com wrote: Hi, I have

[appengine-java] getting wrong presence status for XMPP users

2009-12-30 Thread Ankur
Hi, I have a very simple application where i sent a chat message to my application and check if user is available.But i am always getting as false. here is my code. XMPPService xmpp = XMPPServiceFactory.getXMPPService(); Message message = xmpp.parseMessage(req); JID

[google-appengine] Comets on Google App Engine

2009-12-23 Thread Ankur (iVEC)
Is it possible to use Comets on Google App Engine when using Java? e.g. using code similar to what is given here: http://tomcat.apache.org/tomcat-6.0-doc/aio.html -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] Possible problem with Datastore

2009-08-12 Thread Ankur
of AppEngine's Datastore. Can any help me in debugging this problem? Thanks, Ankur def download_data(my_datastore_table): KIND = my_datastore_table batchsize = 200 cnt = 0 num = 0 results = KIND.all().order('__key__').fetch(batchsize

[google-appengine] Timeout

2009-06-04 Thread Ankur
hi, I am using simple code to copy my database table data to another table code used is users = db.GqlQuery(SELECT * FROM UserProfile) for cur_user in users: up=UserProfile1() up.user=cur_user.user up.fname=cur_user.name up.lname=cur_user.lname

[google-appengine] Re: Timeout

2009-06-04 Thread Ankur
Thankx nick... i did it in batch of 25 entities at a time i migrated using where clause in query On Jun 4, 9:01 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Ankur, The easiest way to decrease your runtime is to decrease the number of round trips. .fetch() on a query

[google-appengine] Fetch more than 1000 entries from Datastore

2009-05-19 Thread Ankur
. Lots of people have asked similar question on this group but I couldn't find a single working solution. Can one of the AppEngine experts on this group help me on this matter? Thanks, Ankur --~--~-~--~~~---~--~~ You received this message because you are subscribed

[google-appengine] getting 403 error instead of 401

2009-03-31 Thread Ankur
Hi, I uploaded my application and made my config file such that only admin can access application as of now. But when i use a account which is not admin for my application i am getting 403 :forbidden error ,but i think it should be 401. if i am trying the same in local dev server and login

[google-appengine] Comprehensive list of open source appgine hosted projects

2008-11-14 Thread Ankur Gupta
Hi Guys, I have compiled a list of approx 70 OSS hosted on app engine projects here (found projects on github and code.google.com) http://www.uptosomething.in/weblog/?page_id=355 Ankur Gupta --~--~-~--~~~---~--~~ You received this message because you

[google-appengine] Re: Comprehensive list of open source appgine hosted projects

2008-11-14 Thread Ankur Gupta
I did copy all of them too. Thanks. Would be better to put up a wiki of OSS GAE apps then a webpage. I will put it on a appspot based wiki. Ankur On Nov 14, 6:54 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: There's this list posted in the group too, you might want to cross reference

[google-appengine] Re: Anyone working on an Issue Tracker GAE application?

2008-11-14 Thread Ankur Gupta
do search on code.google.com for open source projects. I remember seeing one. Also see if you can find one here http://code.google.com/search/#q=code%20review Ankur On Nov 14, 8:25 pm, Hernan [EMAIL PROTECTED] wrote: Please apologize if this is offtopic but searching for this is a bit