海运的博客

Centos下编译安装parity

发布时间:August 20, 2017 // 分类: // No Comments

安装环境:

yum install openssl-devel gcc gcc-c++ libudev-devel git
git clone https://github.com/paritytech/parity
cargo build --release
cp target/release/parity /usr/bin/
parity --max-peers 200 --jsonrpc-apis web3,eth,net,parity,parity_accounts,traces,rpc,parity_set,personal

Linux安装rust语言

发布时间:August 20, 2017 // 分类: // No Comments

自动安装脚本:

curl https://sh.rustup.rs -sSf | sh 

手工选择安装:

wget  https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init
chmod +x rustup-init 
./rustup-init 

golang使用chan限制多协程单位时执行次数

发布时间:August 10, 2017 // 分类: // No Comments

限制单位时间内执行次数,并保持先后顺序。

package main

import "fmt"
import "time"

var c chan chan int

func worker(i int) {
        t := make(chan int)
        c <- t
        fmt.Println(i, "启动任务")
loop:
        for {
                select {
                case <-t:
                        fmt.Println(i)
                        break loop
                default:
                        fmt.Println(i, "等待可用")
                        time.Sleep(100 * time.Millisecond)
                }
        }

        fmt.Println(i, "开始任务")
}
func master() {
        for {
                for i := 0; i < 10; i++ {
                        t := <-c
                        t <- 1
                        time.Sleep(500 * time.Millisecond)
                }
        }
}

func main() {
        c = make(chan chan int, 20)
        for i := 0; i < 10; i++ {
                go worker(i)
                time.Sleep(500 * time.Millisecond)
        }
        go master()
        for {
                time.Sleep(1000 * time.Millisecond)

        }
}

LVM条带化raid0

发布时间:August 7, 2017 // 分类: // No Comments

新建:

pvcreate /dev/vd[b-c]1
vgcreate alivg /dev/vd[b-c]1
lvcreate -l +100%free -i 2 -I 128 alivg -n alilv
mkfs.ext4 /dev/alivg/alilv 
mount /dev/alivg/alilv /data/

查看lv信息:

lvdisplay -m
  --- Segments ---
  Logical extents 0 to 10237:
    Type        striped
    Stripes        2
    Stripe size        512.00 KiB
    Stripe 0:
      Physical volume    /dev/vdb1
      Physical extents    0 to 5118
    Stripe 1:
      Physical volume    /dev/vdc1
      Physical extents    0 to 5118

扩充:

pvcreate /dev/vd[d-e]1
vgextend alivg /dev/vd[d-e]1
lvresize -l +100%free -i 2 -I 128 /dev/alivg/alilv
resize2fs /dev/alivg/alilv

Linux下测试磁盘性能吞吐量/IOPS

发布时间:August 4, 2017 // 分类: // No Comments

使用dd测试吞吐量:

#默认启用写缓存
dd bs=64k count=4k if=/dev/zero of=test;rm -rf test
#最后一次性写入硬盘
dd bs=64k count=4k if=/dev/zero of=test conv=fdatasync;rm -rf test
#每次读取64k马上写入硬盘
dd if=/dev/zero of=test bs=64k count=4k oflag=dsync;rm -rf test

使用测试读吞吐量:

hdparm -Tt /dev/vdc1

使用fio测试iops和吞吐量:

fio --bs=4k --ioengine=libaio --iodepth=1 --direct=1 --rw=read --time_based --runtime=600  --refill_buffers --norandommap --randrepeat=0 --group_reporting --name=fio-read --size=100G --filename=/dev/sdb
block=4k iodepth=1 随机读测试,能反映磁盘的时延性能;
block=128K iodepth=32 能反映峰值吞吐性能 ;
block=4k iodepth=32 能反映峰值IOPS性能。

image.jpg
随机读写iops:
randread.jpg
吞吐量:
bw.jpg
延时:
time.jpg
参考:
https://www.qcloud.com/document/product/362/6741
https://www.qcloud.com/document/product/362/6745

分类
最新文章
最近回复
  • 海运: 恩山有很多。
  • swsend: 大佬可以分享一下固件吗,谢谢。
  • Jimmy: 方法一 nghtp3步骤需要改成如下才能编译成功: git clone https://git...
  • 海运: 地址格式和udpxy一样,udpxy和msd_lite能用这个就能用。
  • 1: 怎么用 编译后的程序在家里路由器内任意一台设备上运行就可以吗?比如笔记本电脑 m参数是笔记本的...
  • 孤狼: ups_status_set: seems that UPS [BK650M2-CH] is ...
  • 孤狼: 擦。。。。apcupsd会失联 nut在冲到到100的时候会ONBATT进入关机状态,我想想办...
  • 海运: 网络,找到相应的url编辑重发请求,firefox有此功能,其它未知。
  • knetxp: 用浏览器F12网络拦截或监听后编辑重发请求,修改url中的set为set_super,将POS...
  • Albert: 啊啊啊啊啊啊啊啊啊 我太激动了,终于好了英文区搜索了半天,翻遍了 pve 论坛没找到好方法,博...