* 本篇随笔为《涂抹MySQL》一书的阅读摘抄,详细请查看正版书籍 关键性指标 IOPS(Input/Output operations Per Second) 每秒处理的I/O请求次数 需要说明的一点,通常提到磁盘读写能力,比如形容它每秒读300M写200M这个说的是数据吞吐量(I/O能力的另一个 ...
分类:
数据库 时间:
2019-03-29 14:48:25
阅读次数:
176
性能指标 衡量块存储产品的性能指标主要包括:IOPS、吞吐量和访问时延。 IOPS IOPS是Input/Output Operations per Second,即每秒能处理的I/O个数,用于表示块存储处理读写(输出/输入)的能力。如果要部署事务密集型应用,典型场景比如数据库类业务应用,需要关注I ...
分类:
其他好文 时间:
2019-03-27 11:17:29
阅读次数:
239
关于如何编写linux设备驱动1)首先确定硬件接口使用的总线,2)然后确定要实现的功能,是网卡、sensor还是什么?再确定对上层应用暴露的接口,从而选择子系统,例如iio、input子系统等。由于linux只有字符设备、块设备、网络设备三种设备,其实iio、input子系统都是字符设备,只是它们帮你封装好了字符设备的file_operations和Major设备号了,另外提供统一的sysfs接口
分类:
系统相关 时间:
2019-03-24 00:27:56
阅读次数:
237
题目描述 有一个r行c列的全0矩阵,有以下三种操作。 1 X1 Y1 X2 Y2 v 子矩阵(X1,Y1,X2,Y2)的元素加v 2 X1 Y1 X2 Y2 v 子矩阵(X1,Y1,X2,Y2)的元素变为v 3 X1 Y1 X2 Y2 查询子矩阵(X1,Y1,X2,Y2)的和,最大值,最小值 子矩阵 ...
分类:
其他好文 时间:
2019-03-23 00:53:17
阅读次数:
117
Hive经常使用命令https://cwiki.apache.org/confluence/display/Hive/GettingStartedhttp://richardxu.com/hiveql-common-operations/http://www.cnblogs.com/ggjuchen ...
分类:
其他好文 时间:
2019-03-17 18:28:18
阅读次数:
154
A - Switch Game Problem Description There are many lamps in a line. All of them are off at first. A series of operations are carried out on these lamp ...
分类:
其他好文 时间:
2019-03-17 18:18:02
阅读次数:
161
Let's say we are going to read some files, return the first file which pass the prediction method, this prediction method can be just check whether th ...
分类:
其他好文 时间:
2019-03-10 09:21:45
阅读次数:
142
注册字符驱动的一种老方法:注册一个字符设备的经典方法是使用:int register_chrdev(unsigned int major, const char *name, structfile_operations *fops);这里, major 的主编号, name 是驱动的名子(出现在 / ...
分类:
系统相关 时间:
2019-03-03 20:37:44
阅读次数:
292
字符设备驱动框架 #include <linux/init.h> //定义了module_init#include <linux/module.h> //最基本的头文件,其中定义了MODULE_LICENSE这一类宏#include <linux/fs.h> // file_operations结构 ...
分类:
其他好文 时间:
2019-02-26 11:49:35
阅读次数:
205
Linux Kernel文件系统写I/O流程代码分析(一) 在 "Linux VFS机制简析(二)" 这篇博客上介绍了struct address_space_operations里底层文件系统需要实现的操作,实际编码过程中发现不是那么清楚的知道这里面的函数具体是干啥,在什么时候调用。尤其是写IO相 ...
分类:
系统相关 时间:
2019-02-26 11:48:49
阅读次数:
300