设为首页 收藏本站
查看: 979|回复: 0

[经验分享] Apache Tez Design

[复制链接]

尚未签到

发表于 2015-8-1 11:30:13 | 显示全部楼层 |阅读模式
  http://tez.incubator.apache.org/
  http://dongxicheng.org/mapreduce-nextgen/apache-tez/
  http://dongxicheng.org/mapreduce-nextgen/apache-tez-newest-progress/
  
  Tez aims to be a general purpose execution runtime that enhances various scenarios that are not well served by classic Map-Reduce.   
In the short term the major focus is to support Hive and Pig, specifically to enable performance improvements to batch and ad-hoc interactive queries.
DSC0000.png
  
  What services will Tez provide
Tez兼容传统的map-reduce jobs, 当然主要focus提供基于DAG的jobs和相应的API以及primitives.   
  Tez provides runtime components:
  
       
  • An execution environment that can handle traditional map-reduce jobs   
  • An execution environment that handles DAG-based jobs comprising various built-in and extendable primitives   
  • Cluster-side determination of input pieces   
  • Runtime planning such as task cardinality determination and dynamic modification to the DAG structure
  
Tez provides APIs to access these services:
  
       
  • Traditional map-reduce functionality is accessed via java classes written to the Job interface: org.apache.hadoop.mapred.Job and/or org.apache.hadoop.mapreduce.v2.app.job.Job;      
    and by specifying in yarn-site that the map-reduce framework should be Tez.   
  • DAG-based execution is accessed via the new Tez DAG API: org.apache.tez.dag.api.*, org.apache.tez.engine.api.*.
  
Tez provides pre-made primitives for use with the DAG API (org.apache.tez.engine.common.*)
  
       
  • Vertex Input   
  • Vertex Output   
  • Sorting   
  • Shuffling   
  • Merging   
  • Data transfer
  
  Tez-YARN architecture
  In the above figure Tez is represented by the red components: client-side API, an AppMaster, and multiple containers that execute child processes under the control of the AppMaster.
DSC0001.png
  Three separate software stacks are involved in the execution of a Tez job, each using components from the clientapplication, Tez, and YARN:
DSC0002.png
  
  DAG topologies and scenarios
  The following terminology is used:
  Job Vertex: A “stage” in the job plan. 逻辑顶点, 可以理解成stage   
Job Edge: The logical connections between Job Vertices. 逻辑边, 关联   
Vertex: A materialized stage at runtime comprising a certain number of materialized tasks. 物理顶点, 由并行的tasks节点组成   
Edge: Represents actual data movement between tasks. 物理边, 代表实际数据流向   
Task: A process performing computation within a YARN container. Task, 一个执行节点   
Task cardinality: The number of materialized tasks in a Vertex. Task基数, Vertex的并发度   
Static plan: Planning decisions fixed before job submission.     
Dynamic plan: Planning decisions made at runtime in the AppMaster process.
  
  Tez API
  The Tez API comprises many services that support applications to run DAG-style jobs. An application that makes use of Tez will need to:   
1. Create a job plan (the DAG) comprising vertices, edges, and data source references   
2. Create task implementations that perform computations and interact with the DAG AppMaster   
3. Configure Yarn and Tez appropriately
  DAG definition API
  抽象DAG的定义接口
  
public class DAG{
DAG();
void addVertex(Vertex);
void addEdge(Edge);
void addConfiguration(String, String);
void setName(String);
void verify();
DAGPlan createDaG();
}
public class Vertex {
Vertex(String vertexName, String processorName, int parallelism);
void setTaskResource();
void setTaskLocationsHint(TaskLocationHint[]);
void setJavaOpts(String);
String getVertexName();
String getProcessorName();
int getParallelism();
Resource getTaskResource();
TaskLocationHint[] getTaskLocationsHint();
String getJavaOpts();
}
public class Edge {
Edge(Vertex inputVertex, Vertex outputVertex, EdgeProperty edgeProperty);
String getInputVertex();
String getOutputVertex();
EdgeProperty getEdgeProperty();
String getId();
}

Execution APIs
  Task作为Tez的执行者, 遵循input, output, processor的模式



public interface Master
//a context object for task execution. currently only stub
public interface Input{
void initialize(Configuration conf, Master master)
boolean hasNext()
Object getNextKey()
Iterable getNextValues()
float getProgress()
void close()
}
public interface Output{
void initialize(Configuration conf, Master master);
void write(Object key, Object value);
OutputContext getOutputContext();
void close();
}
public interface Partitioner {
int getPartition(Object key, Object value, int numPartitions);
}
public interface Processor {
void initialize(Configuration conf, Master master)
void process(Input[] in, Output[] out)
void close()
}
public interface Task{
void initialize(Configuration conf, Master master)
Input[] getInputs();
Processor getProcessor();
Output[] getOutputs();
void run()
void close()
}

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-92967-1-1.html 上篇帖子: java.lang.ClassCastException: org.apache.taglibs.standard.tlv.JstlCoreTLV cannot 下篇帖子: apache 2.4.6 +php5.5.3 for windows
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表