select object_id('dbo.FT_CFP_TRADE_SUBACCOUNT')select * from sys.partitions where [object_id]=1467256382select * from sys.allocation_units where conta...
分类:
数据库 时间:
2015-12-25 15:14:44
阅读次数:
188
一直在搞spark,也没时间弄hadoop,不过Hadoop基本的编程我觉得我还是要会吧,看到一篇不错的文章,不过应该应用于hadoop2.0以前,因为代码中有 conf.set("mapred.job.tracker","192.168.1.2:9001");新框架中已改为 Yarn-site.x...
分类:
其他好文 时间:
2015-12-09 00:24:20
阅读次数:
256
Hobt_id和Partition_id这两个字段的值是相同的,每一个分区都有一个ID值,这个值是Partition_id。在每一个partition中,最多有三个allocation unit,type分别是 in_row, Lob, row_overflow。每一个allocation unit...
分类:
其他好文 时间:
2015-12-04 20:52:19
阅读次数:
400
FAT文件系统有两个重要的数据结构:文件分配表和目录项There are two important data structures in FAT (the File Allocation Table and directoryentries)FAT文件系统的布局如下图下面从上一章定义的文件系统的五...
分类:
其他好文 时间:
2015-12-01 00:11:28
阅读次数:
206
对象初始化两种不同方法创建对象:1、是[类名 new],2、[[类名 alloc] init].这两种方法是等价的,不过Cocoa惯例使用alloc和init而不使用new。分配对象分 配(allocation)是一个新对象诞生的过程。向某个类发送alloc消息,就能为类分配一块足够大的内存,以存放...
分类:
其他好文 时间:
2015-11-30 17:49:05
阅读次数:
143
环境及目标:-系统:VMWare / Ubuntu 12.04-Hadoop版本:0.20.2-我的节点配置 (完全分布式集群)Master (job tracker)192.168.221.130h1Slave (task tracker/data node)192.168.221.141h2Sl...
分类:
其他好文 时间:
2015-11-28 20:03:23
阅读次数:
303
The minimum allocation for every container request at the RM, in MBs. Memory requests lower than this won't take effect, and the specified value will....
分类:
其他好文 时间:
2015-11-28 10:31:27
阅读次数:
206
5.1 Introduction 这章介绍的standard I/O都是ISOC标准的。用这些standard I/O可以不用考虑一些buffer allocation、I/O optimal-sized的细节,增加了易用性。但是也有一些问题。5.2 Streams and FILE Object....
分类:
其他好文 时间:
2015-11-28 00:59:31
阅读次数:
325
xdoj1065 Efficent Allocation 动态开点的线段树1065: Efficent Allocation时间限制:8 Sec内存限制:256 MB提交:24解决:3[提交][状态][讨论版]题目描述由于XDOJ评测机的一些奇怪行为,本题时限调整到8s。lx正在写一个内存分配器,支...
分类:
其他好文 时间:
2015-11-26 13:07:46
阅读次数:
318
本文转载是网络,只叙述方法,,,第一问:Turn off page allocation in xv6修改sysproc.c中的sys_sbrk()函数即可: 1 int sys_sbrk(void) 2 { 3 int addr; 4 int n; 5 if(a...
分类:
其他好文 时间:
2015-11-19 00:24:18
阅读次数:
387