[google-appengine] API for data in app engine admin console

2011-10-28 Thread Mark Jen
Hi,

Is there an API to grab the stats/data that are displayed in an 
application's admin console?

Specifically, I'd like to get access to the stats about my various task 
queues (# of tasks in a queue). Generally, I'd like to be able to access 
any of the stats for monitoring/etc.

Thanks,
Mark

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



[google-appengine] blobstore file

2011-10-26 Thread Mark Jen
Hi,

I've run into a problem using the file API for blobstore 
(http://code.google.com/appengine/docs/python/blobstore/overview.html#Writing_Files_to_the_Blobstore)
 on 
dev_appserver.py with --high_replication. It seems that after 
files.finalize(file_name) is called, the blob_key is not immediately 
available. Is this a known issue? I couldn't find it here 
(http://code.google.com/p/googleappengine/issues/list).

Thanks,
Mark

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



[google-appengine] Re: dev_appserver python multi threaded?

2011-02-09 Thread Mark Jen
I noticed the same thing when using closure library in our dev environment.

First, I highly recommend setting up closure compiler. In addition to making 
your JS output smaller for production, it has multiple modes of operation 
including a mode that figures out your JS dependencies and concatenates all 
the necessary files into one file. This operation runs very fast (compared 
to doing an actual compilation) and your code will not be obfuscated for 
easier debugging. However, since the code is concatenated, the single JS 
file will be huge and hard to navigate during debugging.

I had been operating in this mode until recently, when I finally sat down 
and configured plovr. In addition to being able to recompile your code on 
every refresh, plovr can also serve out all closure library and your app's 
JS files separately and does it in a multithreaded manner, very quickly. For 
me, plovr has been absolutely amazing.

Lastly, in your development environment you could run a simple Apache server 
with a docroot pointing to your source files and have your app code load 
from an alterate url (http://localhost:/...). I have not 
actually played with this configuration, but it should work much better than 
serving these static files through dev_appserver.py

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



[google-appengine] Disconnect notification via Channel API?

2010-12-14 Thread Mark Jen
Hi,

I noticed that one of the caveats in the new Channel API was that there's no 
disconnect notification and it is suggested that applications implement a 
heartbeat if they wish to maintain client presence. Is connect/disconnect 
notification something that's in the works and may be available in the 
future? Or are there limitations in the infrastructure that prevent such 
events from being routed to a GAE application as a request?

Thanks,
Mark

-- 
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] Using closure with channel API

2010-12-09 Thread Mark Jen
Hi,


Has anyone been using the closure library/compiler with GAE channel
API?


Can we have the uncompiled file(s) for
http://talkgadget.google.com/talkgadget/channel.js so they can be
compiled together with other JS code using closure compiler?


And/or is it possible to use goog.net.BrowserChannel or other closure
library classes to communicate with the GAE channel API backend?


Thanks!
Mark

-- 
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.