python aiohttp slow response timeHow can I represent an 'Enum' in Python?Way to create multiline comments in Python?What is the Python 3 equivalent of “python -m SimpleHTTPServer”Why is “1000000000000000 in range(1000000000000001)” so fast in Python 3?How to reset/clear aiohttp sessionResponse time using aiohttp increases over timeInstances constantly timing out with aiohttpAwaiting multiple aiohttp requests cause 'Session is closed' errorasyncio aiohttp errors when threadingTypeError: _request() got an unexpected keyword argument 'cookies' (aiohttp)

Dangerous workplace travelling

How to preserve a rare version of a book?

In linear regression why does regularisation penalise the parameter values as well?

Make me a minimum magic sum

Sci-fi/fantasy book - ships on steel runners skating across ice sheets

Can my 2 children, aged 10 and 12, who are US citizens, travel to the USA on expired American passports?

How did the Apollo guidance computer handle parity bit errors?

The Adventures of a Chocolate Cookie

Krull dimension of the ring of global sections

Can full drive backup be used instead of MSSQL database backup?

Drawing an hexagonal cone in TikZ 2D

What Kind of Wooden Beam is this

What does にとり mean?

about academic proof-reading, what to do in this situation?

In Futurama, how many beings has Leela slept with?

Sparring against two opponents test

Will a God Eternal enchanted with Deep Freeze shuffle back into the deck if it dies?

What do you call a painting on a wall?

Counting the Number of Real Roots of A Polynomial

Constitutional limitation of criminalizing behavior in US law?

In "Avengers: Endgame", what does this name refer to?

GitLab account hacked and repo wiped

How can a hefty sand storm happen in a thin atmosphere like Martian?

Is it normal for gliders not to have attitude indicators?



python aiohttp slow response time


How can I represent an 'Enum' in Python?Way to create multiline comments in Python?What is the Python 3 equivalent of “python -m SimpleHTTPServer”Why is “1000000000000000 in range(1000000000000001)” so fast in Python 3?How to reset/clear aiohttp sessionResponse time using aiohttp increases over timeInstances constantly timing out with aiohttpAwaiting multiple aiohttp requests cause 'Session is closed' errorasyncio aiohttp errors when threadingTypeError: _request() got an unexpected keyword argument 'cookies' (aiohttp)






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I am using the aiohttp client session to retrieve webpage asynchronously.



async def fetch(session, url):
#async with session.get(url) as response:
async with getattr(session,"get")(url) as response:
return await response.text()


async with aiohttp.ClientSession() as session: # call 5
html = await fetch(session, 'http://localhost:8081')


There are other async methods to prepare the data and massage the data.



The response is very slow. Enabled the async logging. It shows:




Getting address info localhost:8081, type=
took 5016.262 ms: [(,
, 6, '',




Why does it take 5016ms?










share|improve this question






















  • try $ pip install aiodns

    – Andriy Maletsky
    Mar 23 at 8:29











  • Try to make request using requests or urllib3. Is result the same?

    – Mikhail Gerasimov
    Mar 23 at 12:28











  • @MikhailGerasimov it's much faster in a single request. But the concern is if it's under load, it would be slower.

    – rickcoup
    Mar 23 at 14:36

















1















I am using the aiohttp client session to retrieve webpage asynchronously.



async def fetch(session, url):
#async with session.get(url) as response:
async with getattr(session,"get")(url) as response:
return await response.text()


async with aiohttp.ClientSession() as session: # call 5
html = await fetch(session, 'http://localhost:8081')


There are other async methods to prepare the data and massage the data.



The response is very slow. Enabled the async logging. It shows:




Getting address info localhost:8081, type=
took 5016.262 ms: [(,
, 6, '',




Why does it take 5016ms?










share|improve this question






















  • try $ pip install aiodns

    – Andriy Maletsky
    Mar 23 at 8:29











  • Try to make request using requests or urllib3. Is result the same?

    – Mikhail Gerasimov
    Mar 23 at 12:28











  • @MikhailGerasimov it's much faster in a single request. But the concern is if it's under load, it would be slower.

    – rickcoup
    Mar 23 at 14:36













1












1








1








I am using the aiohttp client session to retrieve webpage asynchronously.



async def fetch(session, url):
#async with session.get(url) as response:
async with getattr(session,"get")(url) as response:
return await response.text()


async with aiohttp.ClientSession() as session: # call 5
html = await fetch(session, 'http://localhost:8081')


There are other async methods to prepare the data and massage the data.



The response is very slow. Enabled the async logging. It shows:




Getting address info localhost:8081, type=
took 5016.262 ms: [(,
, 6, '',




Why does it take 5016ms?










share|improve this question














I am using the aiohttp client session to retrieve webpage asynchronously.



async def fetch(session, url):
#async with session.get(url) as response:
async with getattr(session,"get")(url) as response:
return await response.text()


async with aiohttp.ClientSession() as session: # call 5
html = await fetch(session, 'http://localhost:8081')


There are other async methods to prepare the data and massage the data.



The response is very slow. Enabled the async logging. It shows:




Getting address info localhost:8081, type=
took 5016.262 ms: [(,
, 6, '',




Why does it take 5016ms?







python-3.x python-asyncio aiohttp






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 23 at 2:32









rickcouprickcoup

140115




140115












  • try $ pip install aiodns

    – Andriy Maletsky
    Mar 23 at 8:29











  • Try to make request using requests or urllib3. Is result the same?

    – Mikhail Gerasimov
    Mar 23 at 12:28











  • @MikhailGerasimov it's much faster in a single request. But the concern is if it's under load, it would be slower.

    – rickcoup
    Mar 23 at 14:36

















  • try $ pip install aiodns

    – Andriy Maletsky
    Mar 23 at 8:29











  • Try to make request using requests or urllib3. Is result the same?

    – Mikhail Gerasimov
    Mar 23 at 12:28











  • @MikhailGerasimov it's much faster in a single request. But the concern is if it's under load, it would be slower.

    – rickcoup
    Mar 23 at 14:36
















try $ pip install aiodns

– Andriy Maletsky
Mar 23 at 8:29





try $ pip install aiodns

– Andriy Maletsky
Mar 23 at 8:29













Try to make request using requests or urllib3. Is result the same?

– Mikhail Gerasimov
Mar 23 at 12:28





Try to make request using requests or urllib3. Is result the same?

– Mikhail Gerasimov
Mar 23 at 12:28













@MikhailGerasimov it's much faster in a single request. But the concern is if it's under load, it would be slower.

– rickcoup
Mar 23 at 14:36





@MikhailGerasimov it's much faster in a single request. But the concern is if it's under load, it would be slower.

– rickcoup
Mar 23 at 14:36












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55310046%2fpython-aiohttp-slow-response-time%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55310046%2fpython-aiohttp-slow-response-time%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript