当发现lv空间不够用时,就需要我们进行对lv的扩容。扩容分两种情况:(lv的有点,支持在线扩容) 1.VG有充足的空间,直接对lv进行扩容; 2.VG空间不足时,我们需要对VG进行扩容,然后再对lv进行扩容 1)首先我们做VG空间充足的情况。直接对lv进行扩容 查看我们的L挂在情况 直接扩容,lvs ...
分类:
其他好文 时间:
2019-06-14 21:59:19
阅读次数:
152
线程的状态 初始化—就绪—运行—终止 Sleep : 超时等待,过了一段时间就会进入就绪状态进行竞争cpu资源。 Wait: 等待状态,没有通过notify 或者 notifyAll 唤醒,就会一直进行等待。 Block: block io 或者 遇到加锁的代码时, 接受到数据或者获取到锁就会到运行 ...
分类:
编程语言 时间:
2019-06-08 19:18:02
阅读次数:
134
1.下载源码 https://github.com/ptitiano/cpuloadgen/archive/v0.94.tar.gz 解压 tar -zxvf cpuloadgen-0.94.tar.gz 2.Makefile CC = $(CROSS_COMPILE)gccMYCFLAGS += ...
分类:
其他好文 时间:
2019-06-06 18:49:41
阅读次数:
113
Cyclictest 是 rt-tests 下的一个测试工具,也是rt-tests 下使用最广泛的测试工具,一般主要用来测试使用内核的延迟,从而判断内核的实时性。 1.下载源码 git clone git://git.kernel.org/pub/scm/utils/rt-tests/rt-test ...
分类:
其他好文 时间:
2019-06-06 17:35:38
阅读次数:
253
According to the latest survey by Global Market Insights, the air compressor market will achieve unprecedented growth in the next few years. The globa ...
分类:
其他好文 时间:
2019-05-27 15:06:42
阅读次数:
90
说明:由于SmaEngine即将加入光照部分的各种实验,所以先把基础分析好。 (参考来源RealTime ,GEM,各种大神博客) 原文:https://blog.csdn.net/pizi0475/article/details/49272981 Performance Tunning for T... ...
分类:
其他好文 时间:
2019-05-15 14:41:06
阅读次数:
453
package com.example.alarm; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.wid... ...
分类:
其他好文 时间:
2019-04-06 19:15:16
阅读次数:
207
优点: 1.查询速度快 2.支持中文分词准备工作:安装es软件 1.拷贝到ubuntu 2.docker load -i 文件路径 3.配置 修改ip地址 4.docker run -dti --network=host --name=elasticsearch -v /home/python/el ...
分类:
其他好文 时间:
2018-12-13 23:26:41
阅读次数:
295
mongodb3+版本之后支持zlib和snappy。 创建压缩的集合 db.createCollection( "email", {storageEngine:{wiredTiger:{configString: 'block_compressor=zlib'}}}) 插入测试数据: for (v ...
分类:
数据库 时间:
2018-12-05 21:02:14
阅读次数:
291
Light Probes 光照探针 Only static objects are considered by Unity’s Baked or Precomputed Realtime GI systems. In order for dynamic objects such as interac ...
分类:
编程语言 时间:
2018-11-02 12:58:07
阅读次数:
260