1. Increase disk space in vCenter 2. scan disk on the Linux VM # fdisk -lu > /tmp/fdisk. # > /sys/block/sdb/device/rescan # > /sys/block/sdd/device/rescan # fdisk -lu > /tmp/fdisk. 3. umount the partition # umount /Backup # umount /Data/ 4. Ex…
There is also a quick remedy for the emergency situation when your root partition runs out of disk space. There is a feature specific to ext3 and ext4 that can help the goal of resolving the full disk situation. Unless explicitly changed during files…
Enlarge the disk using fdisk fdisk -l (to see the partition layout, typically we're dealing with /dev/sda2) fdisk /dev/sda d (delete a partition) 2 (if the part we want to grow is /dev/sda2; note this does not delete any data on disk) n (create a new…
[root@node1 ~]# df -hFilesystem Size Used Avail Use% Mounted on/dev/mapper/centos-root 26G 17G 9.8G 63% / ★totally 26Gdevtmpfs 1.4G 0 1.4G 0% /devtmpfs 1.4G 0 1.4G 0% /dev/shmtmpfs 1.4G 8.8M 1.4G 1% /runtmpfs 1.4G 0 1.4G 0% /sys/fs/cgroup/dev/sda1 10…
kafka版本0.8.2.1 Java客户端版本0.9.0.0 为了更好的实现负载均衡和消息的顺序性,Kafka Producer可以通过分发策略发送给指定的Partition.Kafka保证在partition中的消息是有序的.Kafka Java客户端有默认的Partitioner.实现如下: public int partition(ProducerRecord<byte[], byte[]> record, Cluster cluster) { List partitions = cl…
http://blog.csdn.net/haiross/article/category/1488205/2   block size: 是文件系统最小的单位,Ext2/Ext3/Ext4 的区块大小可以是 1024.2048 或 4096 字节. (Compaq Alpha 可 以使用 8192 字节区块) mke2fs 一般缺省会把小于 512 MiB 的文件系统使用 1024 字节区块格式化,等于或大于 512 MiB 的文件系统使用 4096 字节区块.(实际是视乎 mke2fs.co…
编写程序,求大于等于一个给定长度的单词有多少.我们还会修改输出,使程序只打印大于等于给定长度的单词. 使用find_if实现的代码如下: #include<algorithm> #include<vector> #include<iostream> #include<string> using namespace std; void biggies(vector<string> &words,vector<string>::s…
格式化 用系统管理员帐户 (即 root) 身份打「mkfs -t ext2|ext3|ext4 储存装置」: mkfs -t ext3 /dev/sdb5 要格式化档案系统为 Ext2,亦可以直接使用命令 mkfs.ext2 或 mke2fs,例如: mkfs.ext2 /dev/sdb5 或者: mke2fs /dev/sdb5 要格式化档案系统为 Ext3,亦可以使用命令 mkfs.ext3 或 mke2fs -j,例如: mkfs.ext3 /dev/sdb5 或者: mke2fs -j…
Help on module guestfs: NAME guestfs - Python bindings for libguestfs FILE /usr/lib64/python2.7/site-packages/guestfs.py DESCRIPTION import guestfs g = guestfs.GuestFS(python_return_dict=True) g.add_drive_opts("guest.img", format="raw"…
众所周知drop table会严重的消耗服务器IO性能,如果被drop的table容量较大,甚至会影响到线上的正常. 首先,我们看一下为什么drop容量大的table会影响线上服务 直接执行drop table,mysql会将表定义和表数据全都删除,包括磁盘上的物理文件,也包括buffer pool中的内存数据. 这就分两步,第一步从buffer pool中删除,这会涉及到table_cache的lock,如果持有table_cache的lock,这将导致其他查询都无法执行.这种情况在没有inn…