- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我编写了一个 Python 脚本来从 Web 服务中获取内容 (json),该 Web 服务具有 2500 个不同的参数排列,同时具有 4 个线程。 Web 服务响应非常快速和稳定。在我的测试机上(Windows 7 x64、4 Core、Python 2.7.8),抓取所有结果需要 10-15 秒。
但是当我将脚本部署到 x64 Debian 6 或 CentOS 6.5 虚拟机上时,需要 10 多分钟才能获取相同的结果。真让我震惊。两个 VM 来自同一个网络,这意味着网络延迟应该是相同的。 VM 也分配了 4 个核心。恕我直言,硬件几乎相同。
from concurrent import futures
import urllib2
def parallel_query(urls):
results = {}
with futures.ThreadPoolExecutor(max_workers=4) as executor:
tasks = dict((executor.submit(query_html, url), url) for url in urls)
for task in futures.as_completed(tasks):
results[tasks[task]] = task.result()
print results
def query_html(url):
response = urllib2.urlopen(url)
return response.read()
parallel_query(
('http://api.server/?par1', # Here I only create 3 api calls. Actually
'http://api.server/?par2', # in my real test, there are 2500 api calls
'http://api.server/?par3') # to be generated
)
两个虚拟机都安装了 Python 2.6.6。我尝试安装 Python 2.7.8 和 Python 3.4.1,但结果是一样的。根本没有根本的改进。 Linux 上是否存在任何已知的性能问题?
最佳答案
代码对我来说看起来很不错。我添加了一个“统计”部分,并将并发线程数增加到 2*num_cpus+1,这是一个标准的启发式方法。
结果来 self 的 Linux Mint Petra lappytop,命中标准的 Nginx 网络服务器。
import multiprocessing, time
from concurrent import futures
import urllib2
NUM_WORKERS = multiprocessing.cpu_count() * 2 + 1
NUM_QUERIES = 25
def parallel_query(urls, nworkers):
results = {}
with futures.ThreadPoolExecutor(max_workers=nworkers) as executor:
tasks = dict(
(executor.submit(query_html, url), url)
for url in urls
)
for task in futures.as_completed(tasks):
results[tasks[task]] = task.result()
return results
def query_html(url):
start = time.time()
response = urllib2.urlopen(url)
_ = response.read()
return time.time() - start
res = parallel_query(
('http://localhost/?num={}'.format(num)
for num in range(NUM_QUERIES)
),
nworkers = NUM_WORKERS,
)
timing = res.values()
print 'STATS:'
total = sum(timing)
print 'min\t{:.3}'.format( min(timing) )
print 'max\t{:.3}'.format( max(timing) )
print 'avg\t{:.3}'.format( total / len(timing) )
STATS:
min 0.000849
max 0.00253
avg 0.00134
关于使用 urllib2 的 Python 并发查询性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25594726/
如有任何帮助,我将不胜感激。我使用 Python 3.4.1 并尝试导入 urllib.request 和 urllib.parse。没有成功。我总是收到: Traceback (most recen
我正在尝试一个教程代码,它从一个网站获取 html 代码并打印出来。我在 ubuntu 上使用 python 3.4.0。代码: import urllib.request page = urllib
根据这个answer几年前给出了一个相同的问题,Javascript 中的 encodeURIComponent(str) 应该等同于 Python 中的 urllib.quote(str, safe
1。弃用问题 在 Python 3.7 中,我使用 urllib.request.urlretrieve(..) 函数从 URL 下载了一个大文件。在文档 ( https://docs.python.
在 python 3 中,导入时出现此错误:没有名为“urllib.request.urlretrieve”的模块; “urllib.request”不是一个包 import urllib impor
import urllib print urllib.urlopen('http://www.reefgeek.com/equipment/Controllers_&_Monitors/Neptune
我在 gooogle colab 中使用来自 parselmouth 的 praat,在导入 from parselmouth.praat import call 时出现此错误 /usr/local/
是否有与 Python 的 urllib.parse.quote() 等效的 JavaScript 函数?和 urllib.parse.unquote() ? 我遇到的最接近的是encodeURI()
这个问题在这里已经有了答案: Importing installed package from script with the same name raises "AttributeError: m
Python 的 urllib.quote 和 urllib.unquote 在 Python 2.6.5 中无法正确处理 Unicode。这就是发生的事情: In [5]: print urllib
这个问题在这里已经有了答案: How to route urllib requests through the TOR network? [duplicate] (3 个回答) 关闭6年前。 示例代码
我正在制作一些简单的 python 帖子脚本,但效果不佳。 有两部分必须登录。 第一次登录使用' http://mybuddy.buddybuddy.co.kr/userinfo/UserInfo.a
我有以下脚本: from currency_converter import CurrencyConverter test = CurrencyConverter('http://www.ecb.eu
我正在编写一个小工具来监控学校的开课情况。 我编写了一个 python 脚本,每隔几分钟就会从每个部门获取当前类(class)的可用性。 该脚本一直正常运行,直到大学网站开始返回以下内容: SIS S
为什么下面的结果会出错? import re from urllib import quote as q s = re.compile(r'[^a-zA-Z0-9.: ^*$@!+_?-]') s.s
我正在开发一个网络爬虫来自动下载巴西网站上的一些文档。并且它使用了一些未知的编码(head 标签中没有定义字符集)。 人们只需付出很少的努力就可以阅读这些文档。但真正的问题是,列出文档的页面使用的链接
我有一个程序,我需要打开许多网页并下载其中的信息。然而,这些信息位于页面中间,需要很长时间才能找到。有没有办法让 urllib 只检索 x 行?或者,如果没有别的事,之后就不加载信息? 我在 Mac
我有一个脚本,使用 Urllib 打开我安装了谷歌分析的网页。我的问题是,为什么如果我执行脚本,GA 上不会显示访问次数? 最佳答案 Google Analytics 脚本是 JavaScript 代
我正在尝试下载航类搜索结果,但我不断收到一个与通过右键单击并手动存储网站获得的文件不同的文件。我已经尝试过 urllib 、 urllib2 以及我在这里找到的每个命令都无济于事。 这是一个 MWE:
我最近用Python(Windows 64位v3.3.1)编写了一个程序,并试图将其移植到D。我遇到的问题是我使用了urllib Python 中的模块,特别是 urllib.request.Requ
我是一名优秀的程序员,十分优秀!