[google-appengine] Re: URL Fetch Exception

2018-10-10 Thread samiislam via Google App Engine
Hello Gabriel, I am aware of the Issue Tracker that you have opened with us addressing the issue of ‘ApiProxy$UnknownException in Blobstore and URL Fetch calls’. I am currently investigating the issue on my end and definitely will provide you an

[google-appengine] Re: URL Fetch Exception

2018-10-07 Thread Gabriel Axel
Now I started getting this for Blobstore calls. I opened an issue: https://issuetracker.google.com/issues/117343597 On Sunday, October 7, 2018 at 2:51:55 AM UTC+3, Gabriel Axel wrote: > > I figured the use of URL Fetch was a remnant from when the app used the > Java 7 runtime and is no longer

[google-appengine] Re: URL Fetch Exception

2018-10-06 Thread Gabriel Axel
I figured the use of URL Fetch was a remnant from when the app used the Java 7 runtime and is no longer needed in the Java 8 runtime, so I switched from UrlFetchTransport to NetHttpTransport which works fine so far. On Sunday, October 7, 2018 at 2:21:48 AM UTC+3, Gabriel Axel wrote: > >

[google-appengine] Re: URL Fetch server not found - DNS updates post DDOS attack?

2016-10-24 Thread 'Adam (Cloud Platform Support)' via Google App Engine
Can anyone confirm if they are still having issues, and share some details if so? On Saturday, October 22, 2016 at 9:20:53 AM UTC-4, Robert Fox wrote: > > Can you share info on the SSL outage? This might be why I can no longer > connect to my SSL-only Cloud SQL instance. > > > On Friday,

[google-appengine] Re: URL Fetch server not found - DNS updates post DDOS attack?

2016-10-22 Thread Robert Fox
Can you share info on the SSL outage? This might be why I can no longer connect to my SSL-only Cloud SQL instance. On Friday, October 21, 2016 at 4:46:20 PM UTC-4, Will Reiher wrote: > > I WAS ABLE TO FIX IN THE SHORT TERM. > > It seems to be related to a cached ssl certificate on google cloud

[google-appengine] Re: URL Fetch server not found - DNS updates post DDOS attack?

2016-10-21 Thread Will Reiher
I WAS ABLE TO FIX IN THE SHORT TERM. It seems to be related to a cached ssl certificate on google cloud but I was able to skip the validation with url fetch and everything works. urlfetch.fetch(url, validate_certificate=False)... On Friday, October 21, 2016 at 12:52:46 PM UTC-7, Will Reiher

[google-appengine] Re: URL Fetch server not found - DNS updates post DDOS attack?

2016-10-21 Thread Will Reiher
All my urlfetch calls are failing since they cant get to the host... DNS is not updated. On Friday, October 21, 2016 at 12:52:46 PM UTC-7, Will Reiher wrote: > > I'm able to contact a remote API server just fine from my local testing > server... but the live server is not able to find/route to

[google-appengine] Re: URL Fetch Quota

2014-09-18 Thread Mihail Russu
Take a look at this page: https://developers.google.com/appengine/docs/quotas#When_a_Resource_is_Depleted (Is your app exceeding the default limits? section) Google will usually increase any of the limits, even on free apps given a good reason. Thanks, Mihail. On Thursday, September 18,

[google-appengine] Re: URL fetch timeout bigger than 10 sec

2011-09-16 Thread DAndrea
On 15 Set, 20:40, Rishi Arora rishi.ar...@ship-rack.com wrote: Actually, you're right, backends are exempt from the 10 second deadline for URL fetch operations, Reading the documentation the deadline should be always 10 sec

Re: [google-appengine] Re: URL fetch timeout bigger than 10 sec

2011-09-16 Thread Rishi Arora
Here's what I read in the documentation: For front-ends: (http://code.google.com/appengine/docs/java/urlfetch/overview.html#Requests) *You can set a deadline for a request, the most amount of time the service will wait for a response. By default, the deadline for a fetch is 5 seconds. The maximum

Re: RE: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-07 Thread dudu
*Thanks all guys. The problem was solved with Appstats. * **I thougth appstats need GWT, but I just forgot to add the servlet filter in web.xml =[ I am ashamed. With appstats I discover too many JDO data calls being made unnecessary. * * When I used the Visual VM to profile the application, it

Re: RE: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-07 Thread Ikai Lan (Google)
Glad to hear it! Thanks for updating us and for further validating that AppStats is a very important tool we should invest more into. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter:

[google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread dudu
Note that just 1174 URL Fetch calls uses 8% of my CPU. -- 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

Re: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread David Mora
have you ran a profiler directly in your GAE instance? There are many factors that alter your result from a local server On 4 February 2011 12:59, dudu eduardopich...@gmail.com wrote: Note that just 1174 URL Fetch calls uses 8% of my CPU. -- You received this message because you are

Re: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread dudu
I can't run the profiler, because I don't use GWT on my project. I can just use the VisualVM. Do you think the delay to download the xml content response is responsible for all this CPU usage? -- You received this message because you are subscribed to the Google Groups Google App Engine

RE: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread Brandon Wirtz
40% of your total CPU Cycles. I'm using Python. From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of dudu Sent: Friday, February 04, 2011 10:59 AM To: google-appengine@googlegroups.com Subject: [google-appengine] Re: URL Fetch uses a lot of CPU

Re: RE: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread dudu
But have you called the URL fetch how much times to load all this data? My response is very short, but I need to call many times. Maybe this is a problem in Java implementation. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to

[google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread Geoffrey Spear
The URLfetch quota isn't billable; you shouldn't expect that you can exhaust most of the non-billable quotas within the free CPU you're given. You almost certainly can't make 417 million datastore queries or serve 43 million requests in 6.5 CPU hours either. -- You received this message

[google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread dudu
Ok Ok Ok both are right, but I'm sorry, both are not helping me. I know that I can't use all the quota in all fields of available resources But, my question is: As I posted, My task queue(see the pics) called a URL to fetch about 1000 times(see the pics). And this already cosumed 8% of my

RE: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread Brandon Wirtz
that just returns 4 regardless of the query. http://xkcd.com/221/ From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Geoffrey Spear Sent: Friday, February 04, 2011 11:50 AM To: google-appengine@googlegroups.com Subject: [google-appengine] Re: URL

Re: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread Ikai Lan (Google)
You're thinking of the GWT profiler. We're referring to AppStats: http://code.google.com/appengine/docs/java/tools/appstats.html http://code.google.com/appengine/docs/java/tools/appstats.htmlRun that to figure out where your CPU is going. I'm going to point out that no one in this thread can

Re: [google-appengine] Re: URL Fetch uses a lot of CPU time, Impossible to use the quota available.

2011-02-04 Thread dudu
I'll try again this appstats... i tried once but the links are not working. I thought appstats needs GWT. I'll post the result. 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] Re: URL Fetch cannot get multiple cookies

2010-06-23 Thread TL
Exact same problem using java.net.HttpURLConnection Filed bug: http://code.google.com/p/googleappengine/issues/detail?id=3379 If anyone has problems with maintaining sessions on other websites from app engine, this is a possible problem. Cookies get corrupted. So vote for it :) -- You received

[google-appengine] Re: URL fetch limits

2009-07-10 Thread Nick Johnson (Google)
Hi Shooter, The only way around this is if bit.ly/tinyurl/etc provide a 'bulk dereference' API. Without that, your only option is to do one URLFetch per URL. Note that you can use the asynchronous URLFetch support to parallelize this, though. -Nick Johnson On Fri, Jul 10, 2009 at 2:15 AM,

[google-appengine] Re: Url Fetch

2009-05-14 Thread Emil Kjer
Some restrictions is made to the urllib running in app engine due to security reasons. eg. urllib.fetch() is restricted to common HTTP ports like 80 and 443. On May 14, 5:47 pm, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, My Sitewww.twollo.comis having some issues connection to Twitter.

[google-appengine] Re: Url Fetch

2009-05-14 Thread Emil Kjer
Some restrictions is made to the urllib running in app engine due to security reasons. eg. urllib.fetch() is restricted to common HTTP ports like 80 and 443. On May 14, 5:47 pm, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, My Sitewww.twollo.comis having some issues connection to Twitter.

[google-appengine] Re: Url Fetch

2009-05-14 Thread Paul Kinlan
Hi Emil, The requests where plain http requests to port 80 on twitter. I am just trying to work out if it is related to Twitter's problems today, Google's problem's or something else. One of the devs at twitter suggested it was a rate limiting issue, but I have never seen these problems before

[google-appengine] Re: Url Fetch

2009-05-14 Thread djidjadji
As discussed in this group: All twitter apps on GAE together are viewed by twitter.com as one app and are thus limited as a group. 2009/5/14 Paul Kinlan paul.kin...@gmail.com: Hi Emil, The requests where plain http requests to port 80 on twitter.  I am just trying to work out if it is

[google-appengine] Re: Url Fetch

2009-05-14 Thread Paul Kinlan
I would agree with that statement if weren't that every request is authenticated and in the past I have passed many thousand per hour. Only just today have I seen this error occur. Paul On 14 May 2009, at 22:47, djidjadji djidja...@gmail.com wrote: As discussed in this group: All

[google-appengine] Re: Url Fetch

2009-05-14 Thread Paul Kinlan
Also ( I forgot to put in my last reply ), the majority of my requests are posts, which aren't/rarely rate limited. Paul On 14 May 2009, at 22:47, djidjadji djidja...@gmail.com wrote: As discussed in this group: All twitter apps on GAE together are viewed by twitter.com as one app and

[google-appengine] Re: URL fetch is not working, query parameter is getting ommited

2009-02-10 Thread Markanday Singh
hi its fixed.. error was in the earliar version of appengine.. urlfetch was not working on dev_appserver.. Now its working fine On Feb 2, 11:54 pm, Marzia Niccolai ma...@google.com wrote: Hi, Not knowing anything about YQL, it seems like the error message my indicate that the URL query

[google-appengine] Re: URL fetch is not working, query parameter is getting ommited

2009-02-02 Thread Marzia Niccolai
Hi, Not knowing anything about YQL, it seems like the error message my indicate that the URL query parameter for a call to yahooapis should look something like /yql?q=TEXT, and the URL you have generated would not look like that, hence the error message you are seeing form Yahoo!. Logging would

[google-appengine] Re: URL Fetch API --- Does Google log IP addresses to prevent abuses?

2009-01-08 Thread Marzia Niccolai
Hi, Logs are kept around for awhile in the admin console, and you can access different app version logs by changing the version number in your application's dashboard (the number on in the left hand corner). You can download your logs by using appcfg.py:

[google-appengine] Re: URL Fetch API --- Does Google log IP addresses to prevent abuses?

2009-01-07 Thread KillIEbrowser
...?? The other side of the question is: Can I don't make any log, delegating the checks to the GAE administrators Team? What is the responsability of a free developer about its free application? (Thanks for the patience) On Jan 6, 2:15 am, KillIEbrowser davide.rogn...@gmail.com wrote: Hi,

[google-appengine] Re: URL Fetch API --- Does Google log IP addresses to prevent abuses?

2009-01-05 Thread KillIEbrowser
Hi, the log will be deleted when I will update a new version of my application. - Can I see the old logs? - Can I export a log? I'm thinking to make a Table log... On Jan 5, 7:38 pm, Marzia Niccolai ma...@google.com wrote: Hi, The ip address of requests are also available in the logs.

[google-appengine] Re: URL Fetch API --- Does Google log IP addresses to prevent abuses?

2009-01-03 Thread KillIEbrowser
Now I'm building a new free web App using HTTPS: Private URL Fetching and I think is useful to see a URL Fetch Log into the App Engine Admin. Can you make this feature, please? On Dec 30 2008, 9:32 pm, Barry Hunter barrybhun...@googlemail.com wrote: IP addresses of what? 2008/12/30

[google-appengine] Re: URL Fetch API --- Does Google log IP addresses to prevent abuses?

2009-01-03 Thread Barry Hunter
Do it yourself: http://code.google.com/appengine/docs/python/logging.html 2009/1/3 KillIEbrowser davide.rogn...@gmail.com: Now I'm building a new free web App using HTTPS: Private URL Fetching and I think is useful to see a URL Fetch Log into the App Engine Admin. Can you make this

[google-appengine] Re: URL Fetch API --- Does Google log IP addresses to prevent abuses?

2009-01-01 Thread KillIEbrowser
... IP addresses of the clients (web browsers) ... On Dec 30 2008, 9:32 pm, Barry Hunter barrybhun...@googlemail.com wrote: IP addresses of what? 2008/12/30 KillIEbrowser davide.rogn...@gmail.com: Hi All, Does Google log IP addresses to prevent abuses? -- Barry

[google-appengine] Re: URL Fetch API --- Does Google log IP addresses to prevent abuses?

2008-12-30 Thread Barry Hunter
IP addresses of what? 2008/12/30 KillIEbrowser davide.rogn...@gmail.com: Hi All, Does Google log IP addresses to prevent abuses? -- Barry - www.nearby.org.uk - www.geograph.org.uk - --~--~-~--~~~---~--~~ You received this message because you are