- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用多线程和随机代理抓取网页。无论需要多少进程,我的家用 PC 都能很好地处理这个问题(在当前代码中,我已将其设置为 100)。 RAM 使用量似乎达到 2.5gb 左右。然而,当我在我的 CentOS VPS 上运行它时,我收到一条通用的“Killed”消息并且程序终止。在运行 100 个进程的情况下,我很快就会收到 Killed 错误。我将它减少到一个更合理的 8 并且仍然得到相同的错误,但是经过了更长的时间。基于一些研究,我假设“Killed”错误与内存使用有关。没有多线程,就不会出现这个错误。
那么,我可以做些什么来优化我的代码以使其仍能快速运行,但又不会占用太多内存?我最好的选择是进一步减少流程数量吗?我可以在程序运行时从 Python 内部监控我的内存使用情况吗?
编辑:我刚刚意识到我的 VPS 有 256mb 的内存,而我的桌面上只有 24gb,这是我最初编写代码时没有考虑到的。
#Request soup of url, using random proxy / user agent - try different combinations until valid results are returned
def getsoup(url):
attempts = 0
while True:
try:
proxy = random.choice(working_proxies)
headers = {'user-agent': random.choice(user_agents)}
proxy_dict = {'http': 'http://' + proxy}
r = requests.get(url, headers, proxies=proxy_dict, timeout=5)
soup = BeautifulSoup(r.text, "html5lib") #"html.parser"
totalpages = int(soup.find("div", class_="pagination").text.split(' of ',1)[1].split('\n', 1)[0]) #Looks for totalpages to verify proper page load
currentpage = int(soup.find("div", class_="pagination").text.split('Page ',1)[1].split(' of', 1)[0])
if totalpages < 5000: #One particular proxy wasn't returning pagelimit=60 or offset requests properly ..
break
except Exception as e:
# print 'Error! Proxy: {}, Error msg: {}'.format(proxy,e)
attempts = attempts + 1
if attempts > 30:
print 'Too many attempts .. something is wrong!'
sys.exit()
return (soup, totalpages, currentpage)
#Return soup of page of ads, connecting via random proxy/user agent
def scrape_url(url):
soup, totalpages, currentpage = getsoup(url)
#Extract ads from page soup
###[A bunch of code to extract individual ads from the page..]
# print 'Success! Scraped page #{} of {} pages.'.format(currentpage, totalpages)
sys.stdout.flush()
return ads
def scrapeall():
global currentpage, totalpages, offset
url = "url"
_, totalpages, _ = getsoup(url + "0")
url_list = [url + str(60*i) for i in range(totalpages)]
# Make the pool of workers
pool = ThreadPool(100)
# Open the urls in their own threads and return the results
results = pool.map(scrape_url, url_list)
# Close the pool and wait for the work to finish
pool.close()
pool.join()
flatten_results = [item for sublist in results for item in sublist] #Flattens the list of lists returned by multithreading
return flatten_results
adscrape = scrapeall()
最佳答案
BeautifulSoup 是纯 Python 库,在中档网站上它会占用大量内存。如果可以,请尝试将其替换为 lxml ,速度更快,用 C 语言编写。如果您的页面很大,它可能仍会耗尽内存。
正如评论中已经建议的那样,您可以使用 queue.Queue存储响应。更好的版本是检索对磁盘的响应,将文件名存储在队列中,然后在单独的进程中解析它们。为此,您可以使用 multiprocessing图书馆。如果解析耗尽内存并被终止,则继续获取。这种模式称为 fork and die,是 Python 使用过多内存的常见解决方法。
然后您还需要有一种方法来查看哪些响应解析失败。
关于Python多线程内存占用高的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35664155/
我正在寻找一种方法来创建根据价格选择我的产品的过滤器(选择下拉菜单)。 我知道这样的查询是完全可能的: SELECT * FROM products ORDER BY price ASC SELECT
函数参数中或显示尺寸时(高度,宽度)的顺序是否有约定? 最佳答案 我不知道大量的语言,但我使用过的语言(宽度,高度)。它更适合沿着 (x, y) 坐标线。 关于language-agnostic -
在我的表单中,我让用户输入房间的长度高度和宽度以获得 m2、m3 和瓦特的计算值。但是用户也应该能够直接输入 height 和 m2 来获取值。我尝试了很多语法,但 if else 不能正常工作。我知
我在 Elasticsearch 中创建了一个索引,看起来像 {"amazingdocs":{"aliases":{},"mappings":{"properties":{"Adj Close":{"
我有以下功能,我需要清除数据库中的所有图片列并移动到文件系统。当我一次性完成这一切时,内存太多并且会崩溃。我切换到递归函数并执行 20 次写入和批量操作。 我需要为大约 6 个表执行此操作。我的 Re
我正在编写一个函数来计算 PI 的值,并将其作为 double 值返回。到目前为止,一切都很好。但是一旦函数到达小数点后14位,它就不能再保存了。我假设这是因为 double 有限。我应该怎么做才能继
2020年是中国CDN行业从98年诞生到今天快速发展的第二十四年,相关数据显示,全国感知网速持续上扬,达到了3.29兆/秒,标志着在宽带中国的政策指导下,中国的网速水平正在大步赶上世界发达国家的水平
在 aerospike 集合中,我们有四个 bin userId、adId、timestamp、eventype,主键是 userId:timestamp。在 userId 上创建二级索引以获取特定用
$('#container').highcharts('Map', { title : { text : 'Highmaps basic demo'
有没有办法显示自定义宽度/高度的YouTube视频? 最佳答案 在YouTube网站上的this link中: You can resize the player by editing the obj
我使用 Highcharts ,我想在 Highcharts 状态下悬停时制作动态不同的颜色。 正如你可以看到不同的颜色,这就是我做的 var usMapChart , data = [] ; va
在所有节点上运行 tpstats 后。我看到很多节点都有大量的 ALL TIME BLOCKED NTR。我们有一个 4 节点集群,NTR ALL TIME BLOCKED 的值为: 节点 1:239
我发现 APC 上存在大量碎片 (>80%),但实际上性能似乎相当不错。我有 read another post这建议在 wordpress/w3tc 中禁用对象缓存,但我想知道减少碎片是否比首先缓存
对于我的脚本类(class),我们必须制作更高/更低的游戏。到目前为止,这是我的代码: import random seedVal = int(input("What seed should be u
我发现 APC 上存在大量碎片 (>80%),但实际上性能似乎相当不错。我有 read another post这建议在 wordpress/w3tc 中禁用对象缓存,但我想知道减少碎片是否比首先缓存
对于我的脚本类(class),我们必须制作更高/更低的游戏。到目前为止,这是我的代码: import random seedVal = int(input("What seed should be u
我已经 seen >2 字节的 unicode 代码点,如 U+10000 可以成对编写,如 \uD800\uDC00。它们似乎以半字节 d 开头,但我只注意到了这一点。 这个 split Actio
有人可以帮我理解为什么我的饼图百分比计算不正确吗?看截图: 根据我的计算,如 RHS 上所示,支出百分比应为 24.73%。传递给 Highcharts 的值如下:- 花费:204827099.36-
我阅读了有关该问题的所有答案,但我还没有找到任何解决方案。 我有一个应用程序,由我的 api 服务器提供。 Wildfly 8.1 和 Mysql 5.6。当查看时间到来时(Wildfly 服务器连接
我正在用选定的项目创建圆形导航。当用户单击任何项目时,它将移动到定义的特定点。一切都很好,除了当你继续点击项目时,当动画表现不同并且项目在 360 度圆中移动并且它被重置直到你重复场景时,我希望它
我是一名优秀的程序员,十分优秀!