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;
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
add a comment |
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
try$ pip install aiodns
– Andriy Maletsky
Mar 23 at 8:29
Try to make request usingrequests
orurllib3
. 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
add a comment |
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
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
python-3.x python-asyncio aiohttp
asked Mar 23 at 2:32
rickcouprickcoup
140115
140115
try$ pip install aiodns
– Andriy Maletsky
Mar 23 at 8:29
Try to make request usingrequests
orurllib3
. 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
add a comment |
try$ pip install aiodns
– Andriy Maletsky
Mar 23 at 8:29
Try to make request usingrequests
orurllib3
. 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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
try
$ pip install aiodns
– Andriy Maletsky
Mar 23 at 8:29
Try to make request using
requests
orurllib3
. 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