码迷,mamicode.com
首页 >  
搜索关键字:task schedule    ( 8574个结果
hadoop作业调优参数整理及原理
1 Map side tuning参数1.1 MapTask运行内部原理 当map task开始运算,并产生中间数据时,其产生的中间结果并非直接就简单的写入磁盘。这中间的过程比较复杂,并且利用到了内存buffer来进行已经产生的部分结果的缓存,并在内存buffer中进行一些预排序来优化整个map.....
分类:其他好文   时间:2014-05-20 01:54:58    阅读次数:341
java 加载图片的几种方式
项目目录--src--testTable--image--active.gif||_Task.class方法1:通过项目目录访问。Stringa=System.getProperty("user.dir");//得到项目目录StringactiveString=a+"\\src\\testTable...
分类:编程语言   时间:2014-05-19 21:38:35    阅读次数:508
2014百度之星第二题Disk Schedule
Disk Schedule Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1463    Accepted Submission(s): 189 Problem Description 有很多从磁盘读取数据的需求,包括顺序读取、...
分类:其他好文   时间:2014-05-18 13:30:44    阅读次数:438
Android 使用系统的Activity播放音频文件 intent
Intent intent = new Intent(); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(Intent.ACTION_VIEW); inten...
分类:移动开发   时间:2014-05-17 19:03:17    阅读次数:257
代码艺术 CountDownTimer
/** * Schedule a countdown until a time in the future, with regular notifications on intervals along the way. * * Example of showing a 30 second count...
分类:其他好文   时间:2014-05-16 04:21:02    阅读次数:311
Activity和任务Task
在这之前,你要知道Task就是一个堆栈,栈顶的activity就是当前显示的activity,启动一个新的activity的时,一般直接压入堆栈,并成为当前运行的activity,前一个activity仍然在堆栈中,按下back键时,当前activity出栈,而前一个恢复为当前运行的activity...
分类:其他好文   时间:2014-05-16 00:40:58    阅读次数:521
Linux Kernel HomeWork---/proc/mtest
Memory management1.listvmastatic void mtest_dump_vma_list(void){ struct task_struct *task = current; //get the task_struct of the current process stru...
分类:系统相关   时间:2014-05-15 22:29:30    阅读次数:555
ftrace 使用方法
1. 追蹤Kernel function (以schedule()示範)先至/sys/kernel/debug/tracing# cat available_tracers確定有無 函式追蹤器(function)blk mmiotrace function_graph wakeup_rt wakeu...
分类:其他好文   时间:2014-05-15 17:50:00    阅读次数:339
hadoop-mapreduce中maptask运行分析
MapTask运行通过执行.run方法: 1.生成TaskAttemptContextImpl实例,此实例中的Configuration就是job本身。 2.得到用户定义的Mapper实现类,也就是map函数的类。 3.得到InputFormat实现类。 4.得到当前task对应的InputSplit. 5.通过InputFormat,得到对应的RecordReader。 6.生成Re...
分类:其他好文   时间:2014-05-14 14:31:59    阅读次数:381
SQL Server 多实例下的复制
原文:SQL Server 多实例下的复制一.本文所涉及的内容(Contents)本文所涉及的内容(Contents)背景(Contexts)搭建步骤(Procedure)注意事项(Attention)二.背景(Contexts) 在服务器A有一个数据库Task,需要把部分表部分字段发布订阅到服务器...
分类:数据库   时间:2014-05-14 10:34:57    阅读次数:555
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!