Skip to content
This repository has been archived by the owner on Jun 16, 2023. It is now read-only.

Trident介绍

Longda edited this page Apr 14, 2014 · 3 revisions

Trident是Storm之上的高级抽象,提供了joins,grouping,aggregations,fuctions和filters等接口。如果你使用过Pig或Cascading,对这些接口就不会陌生。

Trident将stream中的tuples分成batches进行处理,API封装了对这些batches的处理过程,保证tuple只被处理一次。处理batches中间结果存储在TridentState对象中。

Trident事务性原理这里不详细介绍,有兴趣的读者请自行查阅资料。

参考:https://github.com/nathanmarz/storm/wiki/Trident-tutorial

中文翻译可以参考: http://blog.csdn.net/derekjiang/article/details/9126185

Clone this wiki locally