Errorupdatingchanges:svn:E155036:Pleaseseethe‘svnupgrade‘commandsvn:E155036:Theworkingcopyat‘D:bootVPADemo‘istooold(format29)toworkwithclientversion‘1.12.2(r1863366)‘(expectsfo
分类:
其他好文 时间:
2020-05-20 09:28:05
阅读次数:
185
网上看到的关于Executor,Cores和Memory的分配相关博客,先记录下来,再汇总。 <1>第一篇 Spark处理多少数据是否需要多少内存 Spark处理1Tb数据不需要1Tb的内存。 具体需要多少内存是根据executor的core数量和每次读取数据集的block大小决定的。以读取hdfs ...
分类:
其他好文 时间:
2020-05-19 16:47:03
阅读次数:
82
In this lesson, we build a little app that fetches dog photos from the dog.ceo API, based on a "breed" search field. We want the API call to happen ag ...
1.谷歌浏览器(WebKit内核): //滚动条设置 .element::-webkit-scrollbar{ width: 10px; height: 10px; } //滚动槽设置 .element::-webkit-scrollbar-track { border-radius: 10px; ...
分类:
其他好文 时间:
2020-05-15 18:25:36
阅读次数:
78
项目在git下分为四个状态:工作目录管理,暂存区(git add),本地库(git commit),远程库(git push); git status命令展示的是暂存区和工作目录的状态,不涉及到本地库和远程库; 如图所示(在idea中截的图): 其中changes to be committed 下 ...
分类:
其他好文 时间:
2020-05-15 17:28:44
阅读次数:
109
请求地址: https://abc.baidu.com/?track_number=1234567890 页面通过表单提交转发: <html> <head></head> <body onload="document.form1.submit()"> <form name="form1" metho ...
分类:
其他好文 时间:
2020-05-14 15:45:57
阅读次数:
63
常用单词翻译 disk 磁盘 head 磁头 sector 扇区 track 磁道 cylinder 柱面 units 单元块(一个柱面的大小) block 数据块 inode 索引节点 查看磁盘命令:fdisk RAID简介 Raid是廉价冗余磁盘阵列(Redundant Array of Ine ...
分类:
系统相关 时间:
2020-05-14 01:02:42
阅读次数:
96
# flask_sqlalchemy.py
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
app.config[‘SQLALCHEMY_DATABASE_URI‘] = ‘sqlite://‘
app.config[‘SQLALCHEMY_TRACK_MODIFICATIO...
分类:
数据库 时间:
2020-05-13 11:50:27
阅读次数:
173
实例 播放带有字幕的视频: <video width="320" height="240" controls="controls"> <source src="forrest_gump.mp4" type="video/mp4" /> <source src="forrest_gump.ogg" t ...
分类:
Web程序 时间:
2020-05-11 18:50:35
阅读次数:
66