概述
Xendesktop 7.X 以后的版本在架构上发生了改变,从原来的Independent Management Architecture (IMA)架构变成了现在的FlexCast Management Architecture (FMA) ; 原来的IMA 架构下的Zone Data Collector ,Zone Preference Policies , Local Hos...
分类:
移动开发 时间:
2015-01-18 15:48:36
阅读次数:
355
问题环境FP:Precise901+oracle11gAgent:Oracle Linux Server release 6.4、Oracle11g(RAC)问题描述巡检发现Precise Agent实例2监控未能收集到数据verify报错:Error in collector startup分析过...
分类:
数据库 时间:
2015-01-16 18:35:43
阅读次数:
306
英文原文:LinkedIn Feed: Faster with Less JVM Garbage 最近在刷各大公司的技术博客的时候,我在Linkedin的技术博客上面发现了一篇很不错博文。这篇博文介绍了Linkedin信息流中间层Feed Mixer,它为Linkedin的Web主页,大学主页,公....
分类:
编程语言 时间:
2015-01-13 21:12:14
阅读次数:
222
先看这篇文章
http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/
一个很小的GC,如何实现的呢?看一下源代码
#include
#include
#define STACK_MAX 256
typedef enum {
OBJ_INT,
OBJ_PAIR
} Obj...
分类:
其他好文 时间:
2015-01-12 14:42:04
阅读次数:
152
参考文档:http://wrapper.tanukisoftware.com/doc/english/integrate-start-stop-nix.html目录Java Service Wrapper使用总结1.概述2.Java Service Wrapper目录结构{WRAPPER_HOME}3.使用WrapperSimpleApp进行集成3.1 ams-collector-v...
分类:
移动开发 时间:
2015-01-06 15:38:49
阅读次数:
218
2014年12月总结:这月1号新工作开始了我的大数据之旅,从.NET转向Hadoop。工作期间遇到了解决的没有解决的有各种坑,不过好在算是把整套业务给搭建了下来。大体使用的技术及流程如下:mosquittio->flume agent->flume collector->sparkstreaming...
分类:
其他好文 时间:
2014-12-31 22:50:23
阅读次数:
208
dumpheap 时提示:0:105> !dumpheap -stat The garbage collector data structures are not in a valid state for traversal. It is either in the "plan phase...
分类:
数据库 时间:
2014-12-26 20:14:45
阅读次数:
398
【Fundamentals of Garbage Collection】1、Reclaims objects that are no longer being used, clears their memory, and keeps the memory available for future a...
分类:
其他好文 时间:
2014-12-26 14:22:18
阅读次数:
192
题意:经典的01背包题,给出了石头的数量与背包的容量,然后分别给出每个石头的容量与价值,要求最优解,可以说是01背包果题。http://acm.hdu.edu.cn/showproblem.php?pid=2602#include#include#include#includeusing names...
分类:
其他好文 时间:
2014-12-25 20:02:37
阅读次数:
144
GC是垃圾收集的意思(Garbage Collection),内存处理是编程人员容易出现问题的地方,忘记或者错误的内存回收会导致程序或系统的不稳定甚至崩溃,Java提供的GC功能可以自动监测对象是否超过作用域从而达到自动回收内存的目的。有向图垃圾回收机制.NET的垃圾回收采用引用计数,java的垃圾...
分类:
编程语言 时间:
2014-12-25 18:13:37
阅读次数:
273