[google-appengine] Re: In Python how do you detect if a JPEG uses CMYK color space and how do you convert it to RGB?

2011-05-20 Thread Alexander Maslov
JPEG format on it's own has nothing to do with CMYK color space. JPEG was 
made with RGB nature of on screen images in mind. Usage of CMYK color space 
before compression stage in JPEG file is handled by some software product 
with their own color space conversion algorithms. If there is no standards, 
why Google should support it?  

-- 
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] Re: Billing - Alerts when nearing maximum quota?

2011-07-21 Thread Alexander Maslov
I suppose you are able to do it yourself. Just make a simple cron job that 
will monitor your quota usage and send you and email alert after reaching 
some threshold.. 

-- 
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/-/Q4HPwQ9LVPsJ.
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: Announcing the High Replication Datastore for App Engine

2011-01-06 Thread Alexander Maslov
I have tried to post this comment GAE blog, but my message was deleted 
several times. So let me post it here.

Thanks for this update. The is one think I would like to comment. Why do you 
limit developers to use only one datastore per app? It mite be much better 
to include additional parameter in datastore API to allow developers to 
access data in both datastores. As application developer it's hard to tell 
before hand what replication method better for any specific application. 
Personally I prefer more reliable solution for any project. But in some 
large applications there mite be some critical data and some less important 
data.

Speaking about current implementation. It's really weird that we do not have 
any way to migrate to High Replication Datastore without creating new 
application. It mite look not a big issue from Google's point of view, but 
that makes a lot of troubles to those developers, who use appspot.com domain 
to host applications. New application name means new domain name, etc.

-- 
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: Prerelease SDK 1.4.3 now available for download

2011-03-21 Thread Alexander Maslov
Thanks for this update. FileService API is really great addition.

-- 
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] Task queue operation while datastore is in readonly mode.

2011-03-22 Thread Alexander Maslov
I'm really sorry, if this question has already been answered, but I haven't 
found any clear answer. Is task queue fully operational, while datastore is 
in readonly mode? Do we still able to add new tasks? In my case I have to 
add log entry in the datastore on each request. I don't mind if this log 
entry is persisted in datastore with some lag. So I was thinking over to add 
task queue task to store log entry at later time, if datastore is not 
available at the time of original request. Will it work? I do not want to 
use memcache, since it can be flushed.

-- 
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] Re: Task queue operation while datastore is in readonly mode.

2011-03-24 Thread Alexander Maslov
Nobody knows the clear answer?

-- 
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] Re: Task queue operation while datastore is in readonly mode.

2011-03-24 Thread Alexander Maslov
Thanks. That's exactly what I was looking for. So task queue does not depend 
on datastore to store it's own data. That is good. As for 10k limit, it's 
not an issue for my case, since I have quite small amount of data for each 
task run.

-- 
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] Re: Task queue operation while datastore is in readonly mode.

2011-03-24 Thread Alexander Maslov
Thanks for this link. Something that your should be aware of in case of 
datastore updates. In my case, I just have to put log entries into 
datastore, so nothing will be overwritten, just added at the later time.

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