编写容器内运行的集成测试,需要用到 MongoDB 的 replica set,在程序连接数据库时报了这样的错: server selection timeout, current topology: { Type: ReplicaSetNoPrimary, Servers: Type: RSGho ...
分类:
其他好文 时间:
2020-05-27 12:33:58
阅读次数:
182
隐式等待 driver.implicitly_wait(10) 默认参数的单位为秒,本例中设置等待时长为10秒。当脚本执行到某个元素定位时,如果元素可以定位,则继续执行; 如果元素定位不到,则它将以轮询的方式(0.5s)不断地判断元素是否被定位到。假设在第6秒定位到了元素则继续执行,若直到超出设置时 ...
分类:
其他好文 时间:
2020-05-26 18:39:57
阅读次数:
76
背景 数据处理平台从oracle迁移到hadoop平台后,原有的数据处理过程需要改写为sparkSql。由于sparkSql执行环境和数据的不确定,经常有资源竞争导致处理过程意外停止,数据倾斜导致任务执行失败。 为减少出错概率,需要对sparkSql进行规范与优化。 转换 1. exist 转换 为 ...
分类:
数据库 时间:
2020-05-25 19:47:59
阅读次数:
94
pip --default-timeout=100 install 库名称 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com ...
分类:
编程语言 时间:
2020-05-24 12:13:46
阅读次数:
68
php-fpm配置 配置文件:php-fpm.conf 开启慢日志功能的: slowlog = /usr/local/var/log/php-fpm.log.slowrequest_slowlog_timeout = 5s 当某个请求的时间超过了5秒,就会在慢日志中记录相应的记录,注意上面的时间5s ...
分类:
Web程序 时间:
2020-05-24 11:26:02
阅读次数:
70
在处理导入导出大数据的情况下,一般要调整以下一些参数: 1.php.ini: set_time_limit(0); max_execution_time=1200; 这个是程序执行时间; 2.php-fpm.conf: request_terminate_timeout 1200; 3.nginx_ ...
分类:
其他好文 时间:
2020-05-24 09:16:00
阅读次数:
47
一、 现象 用户打开消息推送有概率报错,后续发现推送消息阅读数、点赞数无法正常更新,mysql报警有行锁, DBA抓到有锁表语句,kill该语句未正常恢复,elk日志有大量的java.sql.SQLException: connection holder is null 重启应用恢复 二、分析 根据 ...
分类:
其他好文 时间:
2020-05-23 16:53:18
阅读次数:
50
axios.js import axios from 'axios'; import api from './api'; // 创建一个axios实例 const axiosService = axios.create({ timeout: 5000, // 设置超时时间为5s }); // 添加请 ...
分类:
移动开发 时间:
2020-05-23 15:00:46
阅读次数:
69
import requests from bs4 import BeautifulSoup allUniv=[] def getHTMLText(url): try: r=requests.get(url,timeout=30) r.raise_for_status() r.encoding = ' ...
分类:
其他好文 时间:
2020-05-23 09:57:50
阅读次数:
495
import requests from bs4 import BeautifulSoup allUniv=[] def getHTMLText(url): try: r=requests.get(url,timeout=30) r.raise_for_status() r.encoding = ' ...
分类:
其他好文 时间:
2020-05-23 09:18:05
阅读次数:
480