上一页 1 2 3 4 5 6 7 8 ··· 16 下一页
摘要: 顶点:VertexRDD边:EdgeRDD、Edge、EdgeDirectionTriplet:EdgeTriplet存储:PartitionStrategy通常的存储方式有两种:切边或切顶点,GraphX用的是切顶点,有四种存储方式:EdgePartition2DEdgePartition1DRa... 阅读全文
posted @ 2015-11-26 14:33 sunflower627 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 1 OverviewGraphX is a new component in Spark for graphs and graph-parallel computation. At a high level, GraphX extends the Spark RDD by introducing a... 阅读全文
posted @ 2015-11-26 14:32 sunflower627 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 1 OverviewSpark Streaming is an extension of the core Spark API that enables scalable, high-throughput, fault-tolerant stream processing of live data ... 阅读全文
posted @ 2015-11-26 14:31 sunflower627 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 1 OverviewSpark SQL is a Spark module for structured data processing. It provides a programming abstraction called DataFrames and can also act as dist... 阅读全文
posted @ 2015-11-26 14:31 sunflower627 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1、RDD是Resilient Distributed Dataset(即"弹性分布式数据”)的缩写,它是Spark中的基本抽象类,包含在所有RDD中存在的基本操作:map、filter、persist。immutable:不可变的;implicit conversion:隐式变换;propagat... 阅读全文
posted @ 2015-11-26 14:30 sunflower627 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 过去的几十年中,计算模式经历了大机时代的终端-主机模式(T-S模式),个人PC时代的客户机-服务器模式(C-S模式),到互联网时代的浏览器-服务器模式(B-S模式),一直到如今的网格计算和云计算的繁荣。 但是,网格计算缺少商业化实现,而且是基于中间件技术,需要用户通过编程或者安装设置来搭建底层架构, 阅读全文
posted @ 2015-11-03 15:41 sunflower627 阅读(983) 评论(0) 推荐(0) 编辑
摘要: 1. Spring Core: Core封装包是框架的最基础部分,提供IOC和依赖注入特性。这里的基础概念是BeanFactory,它提供对Factory模式的经典实现来消除对程序性单例模式的需要,并真正地允许你从程序逻辑中分离出依赖关系和配置。 2.Spring Context: 构建于Core封 阅读全文
posted @ 2015-10-14 09:34 sunflower627 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 不管采用何种持久化技术,都需要定义数据源。Spring中提供了4种不同形式的数据源配置方式: spring自带的数据源(DriverManagerDataSource),DBCP数据源,C3P0数据源,JNDI数据源。 http://blog.csdn.net/orclight/article/de 阅读全文
posted @ 2015-10-14 09:20 sunflower627 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 所谓事务传播行为就是多个事务方法相互调用时,事务如何在这些方法间传播。Spring 支持 7 种事务传播行为: PROPAGATION_REQUIRED 如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中。这是最常见的选择。 PROPAGATION_SUPPORTS 支持当前 阅读全文
posted @ 2015-10-14 09:14 sunflower627 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 1. 机制:spring mvc的入口是servlet,而struts2是filter,这样就导致了二者的机制不同。 2. 性能:spring会稍微比struts快。spring mvc是基于方法的设计,而sturts是基于类,每次发一次请求都会实例一个action,每个action都会被注入属性, 阅读全文
posted @ 2015-10-14 09:08 sunflower627 阅读(1731) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页