[google-appengine] urlfetch.Fetch() 1MB size limit increased??

2011-03-23 Thread Ian Gillett
Hi - could you let me know if the response size for urlfetch.Fetch()
has been increased from the current limit of 1MB in the 1.4.3 SDK
release

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



Re: [google-appengine] urlfetch.Fetch() 1MB size limit increased??

2011-03-25 Thread Ikai Lan (Google)
Yes, I believe we are increasing this. Nothing is final until the SDK ships,
however. Should be relatively soon, though.

Ikai Lan
Developer Programs Engineer, Google App Engine
Blog: http://googleappengine.blogspot.com
Twitter: http://twitter.com/app_engine
Reddit: http://www.reddit.com/r/appengine



On Tue, Mar 22, 2011 at 11:26 AM, Ian Gillett wrote:

> Hi - could you let me know if the response size for urlfetch.Fetch()
> has been increased from the current limit of 1MB in the 1.4.3 SDK
> release
>
> --
> 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.
>
>

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



Re: [google-appengine] urlfetch.Fetch() 1MB size limit increased??

2011-03-26 Thread Stephen
On Tue, Mar 22, 2011 at 6:26 PM, Ian Gillett  wrote:
> Hi - could you let me know if the response size for urlfetch.Fetch()
> has been increased from the current limit of 1MB in the 1.4.3 SDK
> release


The limit was increased to 32MB in SDK 1.4.0.

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



Re: [google-appengine] urlfetch.Fetch() 1MB size limit increased??

2011-03-26 Thread Ian Gillett
Hello - Yes sorry I am aware of that - what I meant to ask was is the
REQUEST size for urlfetch.Fetch() going to be inceased from the current 1MB
limit?

Thanks,
Ian.

On Tue, Mar 22, 2011 at 6:26 PM, Ian Gillett  wrote:

> Hi - could you let me know if the response size for urlfetch.Fetch()
> has been increased from the current limit of 1MB in the 1.4.3 SDK
> release
>
> --
> 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.
>
>

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



Re: [google-appengine] urlfetch.Fetch() 1MB size limit increased??

2011-03-26 Thread @@
According to the documents, the request size is 1m.
I was wondering do we still have the 1m memory limit? If so, how to handle
the 32m http response.


http://code.google.com/appengine/docs/python/urlfetch/overview.html#Quotas_and_Limits

 Limit Amount request size 1 megabyte response size 32 megabytes



On Sat, Mar 26, 2011 at 9:47 PM, Ian Gillett  wrote:
> Hello - Yes sorry I am aware of that - what I meant to ask was is the
> REQUEST size for urlfetch.Fetch() going to be inceased from the current
1MB
> limit?
> Thanks,
> Ian.
>
> On Tue, Mar 22, 2011 at 6:26 PM, Ian Gillett 
wrote:
>>
>> Hi - could you let me know if the response size for urlfetch.Fetch()
>> has been increased from the current limit of 1MB in the 1.4.3 SDK
>> release
>>
>> --
>> 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.
>>
>
> --
> 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.
>

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



Re: [google-appengine] urlfetch.Fetch() 1MB size limit increased??

2011-03-26 Thread Robert Kluin
You couldn't do much with a 1m *memory* limit.

If you're referring to the datastore entity size limit, the common solution
is to shard data that's over 1m across multiple entities.



Robert





On Sat, Mar 26, 2011 at 21:18, @@  wrote:

> According to the documents, the request size is 1m.
> I was wondering do we still have the 1m memory limit? If so, how to handle
> the 32m http response.
>
>
>
> http://code.google.com/appengine/docs/python/urlfetch/overview.html#Quotas_and_Limits
>
>  Limit Amount request size 1 megabyte response size 32 megabytes
>
>
>
> On Sat, Mar 26, 2011 at 9:47 PM, Ian Gillett 
> wrote:
> > Hello - Yes sorry I am aware of that - what I meant to ask was is the
> > REQUEST size for urlfetch.Fetch() going to be inceased from the current
> 1MB
> > limit?
> > Thanks,
> > Ian.
> >
> > On Tue, Mar 22, 2011 at 6:26 PM, Ian Gillett 
> wrote:
> >>
> >> Hi - could you let me know if the response size for urlfetch.Fetch()
> >> has been increased from the current limit of 1MB in the 1.4.3 SDK
> >> release
> >>
> >> --
> >> 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.
> >>
> >
> > --
> > 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.
> >
>
>  --
> 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.
>

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



RE: [google-appengine] urlfetch.Fetch() 1MB size limit increased??

2011-03-26 Thread Brandon Wirtz
>You couldn't do much with a 1m *memory* limit.

 

When I started programming I had 64k of memory, and by the time you loaded
the OS and Basic, and used some for the display you had less than that. I
miss that old Commodore 64, and writing games in Basic from memory because
my parents wouldn't buy me a 5.25 to save to.  Back then the only clouds
were the ones made of blue smoke that burst forth from dying hardware.

 

 

From: google-appengine@googlegroups.com
[mailto:google-appengine@googlegroups.com] On Behalf Of Robert Kluin
Sent: Saturday, March 26, 2011 9:15 PM
To: google-appengine@googlegroups.com
Subject: Re: [google-appengine] urlfetch.Fetch() 1MB size limit increased??

 

You couldn't do much with a 1m *memory* limit.

 

If you're referring to the datastore entity size limit, the common solution
is to shard data that's over 1m across multiple entities.

 

 

 

Robert






On Sat, Mar 26, 2011 at 21:18, @@  wrote:

According to the documents, the request size is 1m.

I was wondering do we still have the 1m memory limit? If so, how to handle
the 32m http response.

 

 

http://code.google.com/appengine/docs/python/urlfetch/overview.html#Quotas_a
nd_Limits


Limit

Amount


request size

1 megabyte


response size

32 megabytes

 

 


On Sat, Mar 26, 2011 at 9:47 PM, Ian Gillett  wrote:
> Hello - Yes sorry I am aware of that - what I meant to ask was is the
> REQUEST size for urlfetch.Fetch() going to be inceased from the current
1MB
> limit?
> Thanks,
> Ian.
>
> On Tue, Mar 22, 2011 at 6:26 PM, Ian Gillett 
wrote:
>>
>> Hi - could you let me know if the response size for urlfetch.Fetch()
>> has been increased from the current limit of 1MB in the 1.4.3 SDK
>> release
>>
>> --
>> 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
<mailto:google-appengine%2bunsubscr...@googlegroups.com> .
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>
> --
> 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
<mailto:google-appengine%2bunsubscr...@googlegroups.com> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 

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
<mailto:google-appengine%2bunsubscr...@googlegroups.com> .
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.

 

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

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