-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1005 lines (968 loc) · 71.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
t<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Hadoopecosystemtable.github.io : This page is a summary to keep the track of Hadoop related project, and relevant projects around Big Data scene focused on the open source, free software enviroment." />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>The Hadoop Ecosystem Table</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/hadoopecosystemtable/hadoopecosystemtable.github.io">Fork Me on GitHub</a>
<h1 id="project_title">The Hadoop Ecosystem Table</h1>
<h2 id="project_tagline">This page is a summary to keep the track of Hadoop related projects, focused on FLOSS environment.</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<!-- THE TABLE -->
<table class="example3">
<tr>
<th colspan="3">Distributed Filesystem</th>
</tr>
<tr>
<td width="30%">Apache HDFS</td>
<td>The Hadoop Distributed File System (HDFS) offers a way to store large files across
multiple machines. Hadoop and HDFS was derived from Google File System (GFS) paper.
Prior to Hadoop 2.0.0, the NameNode was a single point of failure (SPOF) in an HDFS cluster.
With Zookeeper the HDFS High Availability feature addresses this problem by providing
the option of running two redundant NameNodes in the same cluster in an Active/Passive
configuration with a hot standby. </td>
<td width="20%"><a href="http://hadoop.apache.org/">1. hadoop.apache.org</a>
<br> <a href="http://research.google.com/archive/gfs.html">2. Google FileSystem - GFS Paper</a>
<br> <a href="http://blog.cloudera.com/blog/2012/07/why-we-build-our-platform-on-hdfs/">3. Cloudera Why HDFS</a>
<br> <a href="http://hortonworks.com/blog/thinking-about-the-hdfs-vs-other-storage-technologies/">4. Hortonworks Why HDFS</a></td>
</tr>
<tr>
<td width="20%">Red Hat GlusterFS</td>
<td>GlusterFS is a scale-out network-attached storage file system. GlusterFS was
developed originally by Gluster, Inc., then by Red Hat, Inc., after their
purchase of Gluster in 2011. In June 2012, Red Hat Storage Server was
announced as a commercially-supported integration of GlusterFS with
Red Hat Enterprise Linux. Gluster File System, known now as Red Hat Storage Server. </td>
<td width="20%"><a href="http://www.gluster.org/">1. www.gluster.org</a>
<br><a href="http://www.redhat.com/about/news/archive/2013/10/red-hat-contributes-apache-hadoop-plug-in-to-the-gluster-community">2. Red Hat Hadoop Plugin</a></td>
</tr>
<tr>
<td width="20%">Quantcast File System QFS</td>
<td> (QFS) is an open-source distributed file system software package for
large-scale MapReduce or other batch-processing workloads. It was
designed as an alternative to Apache Hadoop’s HDFS, intended to deliver
better performance and cost-efficiency for large-scale processing clusters.
It is written in C++ and has fixed-footprint memory management. QFS uses
Reed-Solomon error correction as method for assuring reliable access to data. <br>
Reed–Solomon coding is very widely used in mass storage systems to correct the burst
errors associated with media defects. Rather than storing three full versions of
each file like HDFS, resulting in the need for three times more storage, QFS
only needs 1.5x the raw capacity because it stripes data across nine different disk drives. </td>
<td width="20%"><a href="https://www.quantcast.com/engineering/qfs/">1. QFS site</a>
<br><a href="https://github.com/quantcast/qfs">2. GitHub QFS</a>
<br><a href="https://issues.apache.org/jira/browse/HADOOP-8885">3. HADOOP-8885</a></td>
</tr>
<tr>
<td width="30%">Ceph Filesystem</td>
<td>Ceph is a free software storage platform designed to present object, block,
and file storage from a single distributed computer cluster. Ceph's main
goals are to be completely distributed without a single point of failure,
scalable to the exabyte level, and freely-available. The data is replicated,
making it fault tolerant. The problem right now is Ceph currently requires Hadoop 1.1.X stable series.</td>
<td width="20%"><a href="http://ceph.com/ceph-storage/file-system/">1. Ceph Filesystem site</a>
<br><a href="http://ceph.com/docs/next/cephfs/hadoop/">2. Ceph and Hadoop</a>
<br><a href="https://issues.apache.org/jira/browse/HADOOP-6253">3. HADOOP-6253</a></td>
</tr>
<tr>
<td width="30%">Lustre file system</td>
<td>The Lustre filesystem is a high-performance distributed filesystem
intended for larger network and high-availability environments.
Traditionally, Lustre is configured to manage remote data storage
disk devices within a Storage Area Network (SAN), which is two or
more remotely attached disk devices communicating via a Small Computer
System Interface (SCSI) protocol. This includes Fibre Channel, Fibre
Channel over Ethernet (FCoE), Serial Attached SCSI (SAS) and even iSCSI. <br>
With Hadoop HDFS the software needs a dedicated cluster of computers
on which to run. But folks who run high performance computing clusters
for other purposes often don't run HDFS, which leaves them with a bunch
of computing power, tasks that could almost certainly benefit from a bit
of map reduce and no way to put that power to work running Hadoop. Intel's
noticed this and, in version 2.5 of its Hadoop distribution that it quietly
released last week, has added support for Lustre: the Intel® HPC Distribution
for Apache Hadoop* Software, a new product that combines Intel Distribution
for Apache Hadoop software with Intel® Enterprise Edition for Lustre software.
This is the only distribution of Apache Hadoop that is integrated with Lustre,
the parallel file system used by many of the world's fastest supercomputers</td>
<td width="20%"><a href="http://wiki.lustre.org/">1. wiki.lustre.org/</a>
<br><a href="http://wiki.lustre.org/index.php/Running_Hadoop_with_Lustre">2. Hadoop with Lustre</a>
<br><a href="http://hadoop.intel.com/products/distribution">3. Intel HPC Hadoop</a></td>
</tr>
<tr>
<td width="30%">Tachyon</td>
<td>Tachyon is an memory distributed file system. By storing the file-system
contents in the main memory of all cluster nodes, the system achieves higher
throughput than traditional disk-based storage systems like HDFS.</td>
<td width="20%"><a href="http://tachyon-project.org/">1. Tachyon site</a>
</tr>
<tr>
<td width="30%">GridGain</td>
<td>GridGain is open source project licensed under Apache 2.0. One of the main pieces of this platform is the
In-Memory Apache Hadoop Accelerator which aims to accelerate HDFS and Map/Reduce by bringing both, data
and computations into memory. This work is done with the GGFS - Hadoop compliant in-memory file system.
For I/O intensive jobs GridGain GGFS offers performance close to 100x faster than standard HDFS.
Paraphrasing Dmitriy Setrakyan from GridGain Systems talking about GGFS regarding Tachyon:<br>
- GGFS allows read-through and write-through to/from underlying HDFS or any
other Hadoop compliant file system with zero code change. Essentially GGFS
entirely removes ETL step from integration.<br>
- GGFS has ability to pick and choose what folders stay in memory, what
folders stay on disc, and what folders get synchronized with underlying
(HD)FS either synchronously or asynchronously.<br>
- GridGain is working on adding native MapReduce component which will
provide native complete Hadoop integration without changes in API, like
Spark currently forces you to do. Essentially GridGain MR+GGFS will allow
to bring Hadoop completely or partially in-memory in Plug-n-Play fashion
without any API changes. </td>
<td width="20%"><a href="http://www.gridgain.org/">1. GridGain site</a>
</tr>
<tr>
<th colspan="3">Distributed Programming</th>
</tr>
<tr>
<td width="20%">Apache MapReduce</td>
<td>MapReduce is a programming model for processing large data sets with a parallel,
distributed algorithm on a cluster. Apache MapReduce was derived from Google
MapReduce: Simplified Data Processing on Large Clusters paper. The current
Apache MapReduce version is built over Apache YARN Framework. YARN stands
for “Yet-Another-Resource-Negotiator”. It is a new framework that facilitates
writing arbitrary distributed processing frameworks and applications. YARN’s
execution model is more generic than the earlier MapReduce implementation.
YARN can run applications that do not follow the MapReduce model, unlike the
original Apache Hadoop MapReduce (also called MR1). Hadoop YARN is an attempt
to take Apache Hadoop beyond MapReduce for data-processing.</td>
<td width="20%"><a href="http://wiki.apache.org/hadoop/MapReduce/">1. Apache MapReduce</a>
<br> <a href="http://research.google.com/archive/mapreduce.html">2. Google MapReduce paper</a>
<br> <a href="http://hadoop.apache.org/docs/stable/hadoop-yarn/hadoop-yarn-site/WritingYarnApplications.html">3. Writing YARN applications</a></td>
</tr>
<tr>
<td width="20%">Apache Pig</td>
<td>Pig provides an engine for executing data flows in parallel on Hadoop. It includes a language, Pig Latin, for expressing these data flows. Pig Latin includes operators for many of the traditional data operations (join, sort, filter, etc.), as well as the ability for users to develop their own functions for reading, processing, and writing data. Pig runs on Hadoop. It makes use of both the Hadoop Distributed File System, HDFS, and Hadoop’s processing system, MapReduce. <br>
Pig uses MapReduce to execute all of its data processing. It compiles the Pig Latin scripts
that users write into a series of one or more MapReduce jobs that it then executes. Pig Latin looks different from many of the programming languages you have seen. There are no if statements or for loops in Pig Latin. This is because traditional procedural and object-oriented programming languages describe control flow, and data flow is a side effect of the program. Pig Latin instead focuses on data flow.</td>
<td width="20%"><a href="https://pig.apache.org/">1. pig.apache.org/</a>
<br> <a href="https://github.com/alanfgates/programmingpig">2.Pig examples by Alan Gates</a></td>
</tr>
<tr>
<td width="20%">JAQL</td>
<td>JAQL is a functional, declarative programming language designed especially for working with large volumes of structured, semi-structured and unstructured data. As its name implies, a primary use of JAQL is to handle data stored as JSON documents, but JAQL can work on various types of data. For example, it can support XML, comma-separated values (CSV) data and flat files. A "SQL within JAQL" capability lets programmers work with structured SQL data while employing a JSON data model that's less restrictive than its Structured Query Language counterparts.<br>
Specifically, Jaql allows you to select, join, group, and filter data that is stored in HDFS, much like a blend of Pig and Hive. Jaql’s query language was inspired by many programming and query languages, including Lisp, SQL, XQuery, and Pig. <br>
JAQL was created by workers at IBM Research Labs in 2008 and released to open source. While it continues to be hosted as a project on Google Code, where a downloadable version is available under an Apache 2.0 license, the major development activity around JAQL has remained centered at IBM. The company offers the query language as part of the tools suite associated with InfoSphere BigInsights, its Hadoop platform. Working together with a workflow orchestrator, JAQL is used in BigInsights to exchange data between storage, processing and analytics jobs. It also provides links to external data and services, including relational databases and machine learning data. </td>
<td width="20%"><a href="https://code.google.com/p/jaql/">1. JAQL in Google Code</a>
<br> <a href="http://www-01.ibm.com/software/data/infosphere/hadoop/jaql/">2. What is Jaql? by IBM</a></td>
</tr>
<tr>
<td width="20%">Apache Spark</td>
<td>Data analytics cluster computing framework originally developed in the AMPLab at UC Berkeley. Spark fits into the Hadoop open-source community, building on top of the Hadoop Distributed File System (HDFS). However, Spark provides an easier to use alternative to Hadoop MapReduce and offers performance up to 10 times faster than previous generation systems like Hadoop MapReduce for certain applications.<br>
Spark is a framework for writing fast, distributed programs. Spark solves similar problems as Hadoop MapReduce does but with a fast in-memory approach and a clean functional style API. With its ability to integrate with Hadoop and inbuilt tools for interactive query analysis (Shark), large-scale graph processing and analysis (Bagel), and real-time analysis (Spark Streaming), it can be interactively used to quickly process and query big data sets.<br>
To make programming faster, Spark provides clean, concise APIs in Scala, Java and Python. You can also use Spark interactively from the Scala and Python shells to rapidly query big datasets. Spark is also the engine behind Shark, a fully Apache Hive-compatible data warehousing system that can run 100x faster than Hive.</td>
<td width="20%"><a href="http://spark.apache.org/">1. Apache Spark</a>
<br> <a href="https://github.com/apache/incubator-spark">2. Mirror of Spark on Github</a></td>
</tr>
<tr>
<td width="20%">Apache Flink</td>
<td>Apache Flink (formerly called Stratosphere) features powerful programming abstractions in Java and Scala, a high-performance runtime, and automatic program optimization. It has native support for iterations, incremental iterations, and programs consisting of large DAGs of operations.<br>
Flink is a data processing system and an alternative to Hadoop's MapReduce component. It comes with its own runtime, rather than building on top of MapReduce. As such, it can work completely independently of the Hadoop ecosystem. However, Flink can also access Hadoop's distributed file system (HDFS) to read and write data, and Hadoop's next-generation resource manager (YARN) to provision cluster resources. Since most Flink users are using Hadoop HDFS to store their data, it ships already the required libraries to access HDFS.
</td>
<td width="20%"><a href="http://flink.incubator.apache.org/">1. Apache Flink incubator page</a>
<br><a href="http://stratosphere.eu/">2. Stratosphere site</a></td>
</tr>
<tr>
<td width="20%">Netflix PigPen</td>
<td>PigPen is map-reduce for Clojure whiche compiles to Apache Pig. Clojure is dialect of the Lisp programming language created by Rich Hickey, so is a functional general-purpose language, and runs on the Java Virtual Machine, Common Language Runtime, and JavaScript engines. In PigPen there are no special user defined functions (UDFs). Define Clojure functions, anonymously or named, and use them like you would in any Clojure program. This tool is open sourced by Netflix, Inc. the American provider of on-demand Internet streaming media.</td>
<td width="20%"><a href="https://github.com/Netflix/PigPen">1. PigPen on GitHub</a></td>
</tr>
<tr>
<td width="20%">AMPLab SIMR</td>
<td>Apache Spark was developed thinking in Apache YARN. However, up to now, it has been relatively hard to run Apache Spark on Hadoop MapReduce v1 clusters, i.e. clusters that do not have YARN installed. Typically, users would have to get permission to install Spark/Scala on some subset of the machines, a process that could be time consuming. SIMR allows anyone with access to a Hadoop MapReduce v1 cluster to run Spark out of the box. A user can run Spark directly on top of Hadoop MapReduce v1 without any administrative rights, and without having Spark or Scala installed on any of the nodes.</td>
<td width="20%"><a href="http://databricks.github.io/simr/">1. SIMR on GitHub</a></td>
</tr>
<tr>
<td width="20%">Facebook Corona</td>
<td>“The next version of Map-Reduce" from Facebook, based in own fork of Hadoop. The current Hadoop implementation of the MapReduce technique uses a single job tracker, which causes scaling issues for very large data sets. The Apache Hadoop developers have been creating their own next-generation MapReduce, called YARN, which Facebook engineers looked at but discounted because of the highly-customised nature of the company's deployment of Hadoop and HDFS.
Corona, like YARN, spawns multiple job trackers (one for each job, in Corona's case). </td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Twill</td>
<td>Twill is an abstraction over Apache Hadoop® YARN that reduces the complexity of developing distributed applications, allowing developers to focus more on their business logic. Twill uses a simple thread-based model that Java programmers will find familiar. YARN can be viewed as a compute fabric of a cluster, which means YARN applications like Twill will run on any Hadoop 2 cluster.<br>
YARN is an open source application that allows the Hadoop cluster to turn into a collection of virtual machines. Weave, developed by Continuuity and initially housed on Github, is a complementary open source application that uses a programming model similar to Java threads, making it easy to write distributed applications. In order to remove a conflict with a similarly named project on Apache, called "Weaver," Weave's name changed to Twill when it moved to Apache incubation.<br>
Twill functions as a scaled-out proxy. Twill is a middleware layer in between YARN and any application on YARN. When you develop a Twill app, Twill handles APIs in YARN that resemble a multi-threaded application familiar to Java. It is very easy to build multi-processed distributed applications in Twill.</td>
<td width="20%"><a href="https://incubator.apache.org/projects/twill.html">1. Apache Twill Incubator</a></td>
</tr>
<tr>
<td width="20%">Damballa Parkour</td>
<td>Library for develop MapReduce programs using the LISP like language Clojure. Parkour aims to provide deep Clojure integration for Hadoop. Programs using Parkour are normal Clojure programs, using standard Clojure functions instead of new framework abstractions. Programs using Parkour are also full Hadoop programs, with complete access to absolutely everything possible in raw Java Hadoop MapReduce.</td>
<td width="20%"><a href="https://github.com/damballa/parkour">1. Parkour GitHub Project</a></td>
</tr>
<tr>
<td width="20%">Apache Hama</td>
<td>Apache Top-Level open source project, allowing you to do advanced analytics beyond MapReduce. Many data analysis techniques such as machine learning and graph algorithms require iterative computations, this is where Bulk Synchronous Parallel model can be more effective than "plain" MapReduce.</td>
<td width="20%"><a href="http://hama.apache.org/">1. Hama site</a></td>
</tr>
<tr>
<td width="20%">Datasalt Pangool</td>
<td>A new MapReduce paradigm. A new API for MR jobs, in higher level than Java.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Tez</td>
<td>Tez is a proposal to develop a generic application which can be used to process complex data-processing
task DAGs and runs natively on Apache Hadoop YARN. Tez generalizes the MapReduce paradigm to a more powerful framework based on expressing computations as a dataflow graph. Tez is not meant directly for end-users – in fact it enables developers to build end-user applications with much better performance and flexibility. Hadoop has traditionally been a batch-processing platform for large amounts of data. However, there are a lot of use cases for near-real-time performance of query processing. There are also several workloads, such as Machine Learning, which do not fit will into the MapReduce paradigm. Tez helps Hadoop address these use cases. Tez framework constitutes part of Stinger initiative (a low latency based SQL type query interface for Hadoop based on Hive).</td>
<td width="20%"><a href="http://incubator.apache.org/projects/tez.html">1. Apache Tez Incubator</a>
<br> <a href="http://hortonworks.com/hadoop/tez/">2. Hortonworks Apache Tez page</a></td>
</tr>
<tr>
<td width="20%">Apache DataFu</td>
<td>DataFu provides a collection of Hadoop MapReduce jobs and functions in higher level languages based on it to perform data analysis. It provides functions for common statistics tasks (e.g. quantiles, sampling), PageRank, stream sessionization, and set and bag operations. DataFu also provides Hadoop jobs for incremental data processing in MapReduce. DataFu is a collection of Pig UDFs (including PageRank, sessionization, set operations, sampling, and much more) that were originally developed at LinkedIn.</td>
<td width="20%"><a href="http://incubator.apache.org/projects/datafu.html">1. DataFu Apache Incubator</a></td>
</tr>
<tr>
<td width="20%">Pydoop</td>
<td>Pydoop is a Python MapReduce and HDFS API for Hadoop, built upon the C++
Pipes and the C libhdfs APIs, that allows to write full-fledged MapReduce applications with HDFS access. Pydoop has several advantages over Hadoop’s built-in solutions for Python programming, i.e., Hadoop Streaming and Jython: being a CPython package, it allows you to access all standard library and third party modules, some of which may not be available.</td>
<td width="20%"><a href="http://pydoop.sourceforge.net/docs/">1. SF Pydoop site</a>
<br> <a href="https://github.com/crs4/pydoop">2. Pydoop GitHub Project</a></td>
</tr>
<tr>
<td width="20%">Kangaroo</td>
<td>Open-source project from Conductor for writing MapReduce jobs consuming data from Kafka.
The introductory post explains Conductor’s use case—loading data from Kafka to HBase by way of a MapReduce job using the HFileOutputFormat. Unlike other solutions which are limited to a single InputSplit per Kafka partition, Kangaroo can launch multiple consumers at different offsets in the stream of a single partition for increased throughput and parallelism.
<td width="20%"><a href="http://www.conductor.com/nightlight/data-stream-processing-bulk-kafka-hadoop/">1. Kangaroo Introduction</a>
<br> <a href="https://github.com/Conductor/kangaroo">2. Kangaroo GitHub Project</a></td>
</tr>
<tr>
<th colspan="3">NoSQL Databases</th>
</tr>
<tr>
<th colspan="3" style="background-color:#0099FF;">Column Data Model</th>
</tr>
<tr>
<td width="20%">Apache HBase</td>
<td>Google BigTable Inspired. Non-relational distributed database. Ramdom, real-time r/w operations in column-oriented very large tables (BDDB: Big Data Data Base). It’s the backing system for MR jobs outputs. It’s the Hadoop database. It’s for backing Hadoop MapReduce jobs with Apache HBase tables</td>
<td width="20%"><a href="https://hbase.apache.org/">1. Apache HBase Home</a>
<br> <a href="https://github.com/apache/hbase">2. Mirror of HBase on Github</a></td>
</tr>
<tr>
<td width="20%">Apache Cassandra</td>
<td>Distributed Non-SQL DBMS, it’s a BDDB. MR can retrieve data from Cassandra. This BDDB can run without HDFS, or on-top of HDFS (DataStax fork of Cassandra). HBase and its required supporting systems are derived from what is known of the original Google BigTable and Google File System designs (as known from the Google File System paper Google published in 2003, and the BigTable paper published in 2006). Cassandra on the other hand is a recent open source fork of a standalone database system initially coded by Facebook, which while implementing the BigTable data model, uses a system inspired by Amazon’s Dynamo for storing data (in fact much of the initial development work on Cassandra was performed by two Dynamo engineers recruited to Facebook from Amazon).</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Hypertable</td>
<td>Database system inspired by publications on the design of Google's BigTable. The project is based on experience of engineers who were solving large-scale data-intensive tasks for many years. Hypertable runs on top of a distributed file system such as the Apache Hadoop DFS, GlusterFS, or the Kosmos File System (KFS). It is written almost entirely in C++. Sposored by Baidu the Chinese search engine.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Accumulo</td>
<td>Distributed key/value store is a robust, scalable, high performance data storage and retrieval system. Apache Accumulo is based on Google's BigTable design and is built on top of Apache Hadoop, Zookeeper, and Thrift. Accumulo is software created by the NSA with security features.</td>
<td width="20%"><a href="https://accumulo.apache.org/">1. Apache Accumulo Home</a></td>
</tr>
<tr>
<th colspan="3" style="background-color:#0099FF;">Document Data Model</th>
</tr>
<tr>
<td width="20%">MongoDB</td>
<td>Document-oriented database system. It is part of the NoSQL family of database systems. Instead of storing data in tables as is done in a "classical" relational database, MongoDB stores structured data as JSON-like documents</td>
<td width="20%"><a href="http://www.mongodb.org/">1. Mongodb site</a></td>
</tr>
<tr>
<td width="20%">RethinkDB</td>
<td>RethinkDB is built to store JSON documents, and scale to multiple machines with very little effort. It has a pleasant query language that supports really useful queries like table joins and group by, and is easy to setup and learn.</td>
<td width="20%"><a href="http://www.rethinkdb.com/">1. RethinkDB site</a></td>
</tr>
<tr>
<td width="20%">ArangoDB</td>
<td>An open-source database with a flexible data model for documents, graphs, and key-values. Build high performance applications using a convenient sql-like query language or JavaScript extensions.</td>
<td width="20%"><a href="https://www.arangodb.org/">1. ArangoDB site</a></td>
</tr>
<tr>
<th colspan="3" style="background-color:#0099FF;">Stream Data Model</th>
</tr>
<tr>
<td width="20%">EventStore</td>
<td>An open-source, functional database with support for Complex Event Processing.
It provides a persistence engine for applications using event-sourcing, or for
storing time-series data. Event Store is written in C#, C++ for the server which
runs on Mono or the .NET CLR, on Linux or Windows.
Applications using Event Store can be written in JavaScript. Event sourcing (ES)
is a way of persisting your application's state by storing the history that determines
the current state of your application.</td>
<td width="20%"><a href="http://geteventstore.com/">1. EventStore site</a></td>
</tr>
<tr>
<th colspan="3" style="background-color:#0099FF;">Key-value Data Model</th>
</tr>
<tr>
<td width="20%">Redis DataBase</td>
<td>Redis is an open-source, networked, in-memory, key-value data store with optional durability. It is written in ANSI C.
In its outer layer, the Redis data model is a dictionary which maps keys to values. One of the main differences between Redis and other structured storage systems is that Redis supports not only strings, but also abstract data types. Sponsored by Pivotal and VMWare. It’s BSD licensed.</td>
<td width="20%"><a href="http://redis.io/">1. Redis site</a></td>
</tr>
<tr>
<td width="20%">Linkedin Voldemort</td>
<td>Distributed data store that is designed as a key-value store used by LinkedIn for high-scalability storage.</td>
<td width="20%"><a href="http://www.project-voldemort.com/voldemort/">1. Voldemort site</a></td>
</tr>
<tr>
<td width="20%">RocksDB</td>
<td>RocksDB is an embeddable persistent key-value store for fast storage. RocksDB can also be the foundation for a client-server database but our current focus is on embedded workloads.</td>
<td width="20%"><a href="http://rocksdb.org/">1. RocksDB site</a></td>
</tr>
<tr>
<td width="20%">OpenTSDB</td>
<td>OpenTSDB is a distributed, scalable Time Series Database (TSDB) written on top of HBase. OpenTSDB was written to address a common need: store, index and serve metrics collected from computer systems (network gear, operating systems, applications) at a large scale, and make this data easily accessible and graphable.</td>
<td width="20%"><a href="http://opentsdb.net/">1. OpenTSDB site</a></td>
</tr>
<tr>
<th colspan="3" style="background-color:#0099FF;">Graph Data Model</th>
</tr>
<tr>
<td width="20%">ArangoDB</td>
<td>An open-source database with a flexible data model for documents, graphs, and key-values. Build high performance applications using a convenient sql-like query language or JavaScript extensions.</td>
<td width="20%"><a href="https://www.arangodb.org/">1. ArangoDB site</a></td>
</tr>
<tr>
<td width="20%">Neo4j</td>
<td>An open-source graph database writting entirely in Java. It is an embedded, disk-based, fully transactional Java persistence engine that stores data structured in graphs rather than in tables.</td>
<td width="20%"><a href="http://www.neo4j.org/">1. Neo4j site</a></td>
</tr>
<tr>
<th colspan="3">NewSQL Databases</th>
</tr>
<tr>
<td width="20%">TokuDB</td>
<td>TokuDB is a storage engine for MySQL and MariaDB that is specifically designed for high performance on write-intensive workloads. It achieves this via Fractal Tree indexing. TokuDB is a scalable, ACID and MVCC compliant storage engine. TokuDB is one of the technologies that enable Big Data in MySQL.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">HandlerSocket</td>
<td>HandlerSocket is a NoSQL plugin for MySQL/MariaDB (the storage engine of MySQL). It works as a daemon inside the mysqld process, accepting TCP connections, and executing requests from clients. HandlerSocket does not support SQL queries. Instead, it supports simple CRUD operations on tables.
HandlerSocket can be much faster than mysqld/libmysql in some cases because it has lower CPU, disk, and network overhead.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Akiban Server</td>
<td>Akiban Server is an open source database that brings document stores and relational databases together. Developers get powerful document access alongside surprisingly powerful SQL.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Drizzle</td>
<td>Drizzle is a re-designed version of the MySQL v6.0 codebase and is designed around a central concept of having a microkernel architecture. Features such as the query cache and authentication system are now plugins to the database, which follow the general theme of "pluggable storage engines" that were introduced in MySQL 5.1. It supports PAM, LDAP, and HTTP AUTH for authentication via plugins it ships. Via its plugin system it currently supports logging to files, syslog, and remote services such as RabbitMQ and Gearman. Drizzle is an ACID-compliant relational database that supports transactions via an MVCC design</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Haeinsa</td>
<td>Haeinsa is linearly scalable multi-row, multi-table transaction library for HBase. Use Haeinsa if you need strong ACID semantics on your HBase cluster. Is based on Google Perlocator concept.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">SenseiDB</td>
<td>Open-source, distributed, realtime, semi-structured database. Some Features: Full-text search, Fast realtime updates, Structured and faceted search, BQL: SQL-like query language, Fast key-value lookup, High performance under concurrent heavy update and query volumes, Hadoop integration</td>
<td width="20%"><a href="http://senseidb.com/">1. SenseiDB site</a></td>
</tr>
<tr>
<td width="20%">Sky</td>
<td>Sky is an open source database used for flexible, high performance analysis of behavioral data. For certain kinds of data such as clickstream data and log data, it can be several orders of magnitude faster than traditional approaches such as SQL databases or Hadoop.</td>
<td width="20%"><a href="http://skydb.io/">1. SkyDB site</a></td>
</tr>
<tr>
<td width="20%">BayesDB</td>
<td>BayesDB, a Bayesian database table, lets users query the probable implications of their tabular data as easily as an SQL database lets them query the data itself. Using the built-in Bayesian Query Language (BQL), users with no statistics training can solve basic data science problems, such as detecting predictive relationships between variables, inferring missing values, simulating probable observations, and identifying statistically similar database entries.</td>
<td width="20%"><a href="http://probcomp.csail.mit.edu/bayesdb/index.html">1. BayesDB site</a></td>
</tr>
<tr>
<td width="20%">InfluxDB</td>
<td>InfluxDB is an open source distributed time series database with no external dependencies. It's useful for recording metrics, events, and performing analytics.
It has a built-in HTTP API so you don't have to write any server side code to get up and running. InfluxDB is designed to be scalable, simple to install and manage, and fast to get data in and out. It aims to answer queries in real-time. That means every data point is indexed as it comes in and is immediately available in queries that should return in < 100ms. </td>
<td width="20%"><a href="http://influxdb.org/">1. InfluxDB site</a></td>
</tr>
<tr>
<th colspan="3">SQL-on-Hadoop</th>
</tr>
<tr>
<td width="20%">Apache Hive</td>
<td>Data Warehouse infrastructure developed by Facebook. Data summarization, query, and analysis. It’s provides SQL-like language (not SQL92 compliant): HiveQL.</td>
<td width="20%"><a href="http://hive.apache.org/">1. Apache HIVE site</a>
<br> <a href="https://github.com/apache/hive">2. Apache HIVE GitHub Project</a></td>
</tr>
<tr>
<td width="20%">Apache HCatalog</td>
<td>HCatalog’s table abstraction presents users with a relational view of data in the Hadoop Distributed File System (HDFS) and ensures that users need not worry about where or in what format their data is stored. Right now HCatalog is part of Hive. Only old versions are separated for download.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Trafodion: Transactional SQL-on-HBase</td>
<td>Trafodion is an open source project sponsored by HP, incubated at HP Labs and HP-IT, to develop an enterprise-class SQL-on-HBase solution targeting big data transactional or operational workloads. </td>
<td width="20%"><a href="https://wiki.trafodion.org/wiki/index.php/Main_Page">1. Trafodion wiki</a></td>
</tr>
<tr>
<td width="20%">Apache Drill</td>
<td>Drill is the open source version of Google's Dremel system which is available as an infrastructure service called Google BigQuery. In recent years open source systems have emerged to address the need for scalable batch processing (Apache Hadoop) and stream processing (Storm, Apache S4). Apache Hadoop, originally inspired by Google's internal MapReduce system, is used by thousands of organizations processing large-scale datasets. Apache Hadoop is designed to achieve very high throughput, but is not designed to achieve the sub-second latency needed for interactive data analysis and exploration. Drill, inspired by Google's internal Dremel system, is intended to address this need</td>
<td width="20%"><a href="http://incubator.apache.org/drill/">1. Apache Incubator Drill</a></td>
</tr>
<tr>
<td width="20%">Cloudera Impala</td>
<td>The Apache-licensed Impala project brings scalable parallel database technology to Hadoop, enabling users to issue low-latency SQL queries to data stored in HDFS and Apache HBase without requiring data movement or transformation. It's a Google Dremel clone (Big Query google).</td>
<td width="20%"><a href="http://www.cloudera.com/content/cloudera/en/products-and-services/cdh/impala.html">1. Cloudera Impala site</a>
<br> <a href="https://github.com/cloudera/impala">2. Impala GitHub Project</a></td>
</tr>
<tr>
<td width="20%">Facebook Presto</td>
<td>Facebook has open sourced Presto, a SQL engine it says is on average 10 times faster than Hive for running queries across large data sets stored in Hadoop and elsewhere.</td>
<td width="20%"><a href="http://prestodb.io/">1. Presto site</a></td>
</tr>
<tr>
<td width="20%">Datasalt Splout SQL</td>
<td>Splout allows serving an arbitrarily big dataset with high QPS rates and at the same time provides full SQL query syntax.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Tajo</td>
<td>Apache Tajo is a robust big data relational and distributed data warehouse system for Apache Hadoop. Tajo is designed for low-latency and scalable ad-hoc queries, online aggregation, and ETL (extract-transform-load process) on large-data sets stored on HDFS (Hadoop Distributed File System) and other data sources. By supporting SQL standards and leveraging advanced database techniques, Tajo allows direct control of distributed execution and data flow across a variety of query evaluation strategies and optimization opportunities. For reference, the Apache Software Foundation announced Tajo as a Top-Level Project in April 2014.</td>
<td width="20%"><a href="http://tajo.apache.org/">1. Apache Tajo site</a></td>
</tr>
<tr>
<td width="20%">Apache Phoenix</td>
<td>Apache Phoenix is a SQL skin over HBase delivered as a client-embedded JDBC driver targeting low latency queries over HBase data. Apache Phoenix takes your SQL query, compiles it into a series of HBase scans, and orchestrates the running of those scans to produce regular JDBC result sets. The table metadata is stored in an HBase table and versioned, such that snapshot queries over prior versions will automatically use the correct schema. Direct use of the HBase API, along with coprocessors and custom filters, results in performance on the order of milliseconds for small queries, or seconds for tens of millions of rows.</td>
<td width="20%"><a href="http://phoenix.incubator.apache.org/index.html">1. Apache Phoenix site</a></td>
</tr>
<tr>
<td width="20%">Apache MRQL</td>
<td>MRQL is a query processing and optimization system for large-scale, distributed data analysis, built on top of Apache Hadoop, Hama, and Spark.<br>
MRQL (pronounced miracle) is a query processing and optimization system for large-scale, distributed data analysis. MRQL (the MapReduce Query Language) is an SQL-like query language for large-scale data analysis on a cluster of computers. The MRQL query processing system can evaluate MRQL queries in three modes:
<ul>
<li>in Map-Reduce mode using Apache Hadoop,</li>
<li>in BSP mode (Bulk Synchronous Parallel mode) using Apache Hama, and</li>
<li>in Spark mode using Apache Spark.</li>
<li>in Flink mode using Apache Flink.</li>
</ul>
</td>
<td width="20%"><a href="http://mrql.incubator.apache.org/">1. Apache Incubator MRQL site</a></td>
</tr>
<tr>
<td width="20%">Kylin</td>
<td>Kylin is an open source Distributed Analytics Engine from eBay Inc. that provides SQL interface and multi-dimensional analysis (OLAP) on Hadoop supporting extremely large datasets</td>
<td width="20%"><a href="http://www.kylin.io/">1. Kylin project site</a></td>
</tr>
<tr>
<th colspan="3">Data Ingestion</th>
</tr>
<tr>
<td width="20%">Apache Flume</td>
<td>Flume is a distributed, reliable, and available service for efficiently collecting, aggregating, and moving large amounts of log data. It has a simple and flexible architecture based on streaming data flows. It is robust and fault tolerant with tunable reliability mechanisms and many failover and recovery mechanisms. It uses a simple extensible data model that allows for online analytic application.</td>
<td width="20%"><a href="http://flume.apache.org/">1. Apache Flume project site</a></td>
</tr>
<tr>
<td width="20%">Apache Sqoop</td>
<td>System for bulk data transfer between HDFS and structured datastores as RDBMS. Like Flume but from HDFS to RDBMS.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Facebook Scribe</td>
<td>Log agregator in real-time. It’s a Apache Thrift Service.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Chukwa</td>
<td>Large scale log aggregator, and analytics.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Storm</td>
<td>Storm is a complex event processor and distributed computation framework written predominantly in the Clojure programming language. Is a distributed real-time computation system for processing fast, large streams of data. Storm is an architecture based on master-workers paradigma. So a Storm cluster mainly consists of a master and worker nodes, with coordination done by Zookeeper. <br>
Storm makes use of zeromq (0mq, zeromq), an advanced, embeddable networking library. It provides a message queue, but unlike message-oriented middleware (MOM), a 0MQ system can run without a dedicated message broker. The library is designed to have a familiar socket-style API.<br>
Originally created by Nathan Marz and team at BackType, the project was open sourced after being acquired by Twitter. Storm was initially developed and deployed at BackType in 2011. After 7 months of development BackType was acquired by Twitter in July 2011. Storm was open sourced in September 2011. <br>
Hortonworks is developing a Storm-on-YARN version and plans finish the base-level integration in 2013 Q4. This is the plan from Hortonworks. Yahoo/Hortonworks also plans to move Storm-on-YARN code from github.com/yahoo/storm-yarn to be a subproject of Apache Storm project in the near future.<br>
Twitter has recently released a Hadoop-Storm Hybrid called “Summingbird.” Summingbird fuses the two frameworks into one, allowing for developers to use Storm for short-term processing and Hadoop for deep data dives,. a system that aims to mitigate the tradeoffs between batch processing and stream processing by combining them into a hybrid system.
</td>
<td width="20%"><a href="http://storm-project.net/">1. Storm Project/</a>
<br> <a href="github.com/yahoo/storm-yarn">2. Storm-on-YARN</a></td>
</tr>
<tr>
<td width="20%">Apache Kafka</td>
<td>Distributed publish-subscribe system for processing large amounts of streaming data. Kafka is a Message Queue developed by LinkedIn that persists messages to disk in a very performant manner. Because messages are persisted, it has the interesting ability for clients to rewind a stream and consume the messages again. Another upside of the disk persistence is that bulk importing the data into HDFS for offline analysis can be done very quickly and efficiently. Storm, developed by BackType (which was acquired by Twitter a year ago), is more about transforming a stream of messages into new streams.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Netflix Suro</td>
<td>Suro has its roots in Apache Chukwa, which was initially adopted by Netflix. Is a log agregattor like Storm, Samza.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Samza</td>
<td>Apache Samza is a distributed stream processing framework. It uses Apache Kafka for messaging, and Apache Hadoop YARN to provide fault tolerance, processor isolation, security, and resource management. Developed by http://www.linkedin.com/in/jaykreps Linkedin.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Cloudera Morphline</td>
<td>Cloudera Morphlines is a new open source framework that reduces the time and skills necessary to integrate, build, and change Hadoop processing applications that extract, transform, and load data into Apache Solr, Apache HBase, HDFS, enterprise data warehouses, or analytic online dashboards. </td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">HIHO</td>
<td>This project is a framework for connecting disparate data sources with the Apache Hadoop system, making them interoperable. HIHO connects Hadoop with multiple RDBMS and file systems, so that data can be loaded to Hadoop and unloaded from Hadoop</td>
<td width="20%">TODO</td>
</tr>
<tr>
<th colspan="3">Service Programming</th>
</tr>
<tr>
<td width="20%">Apache Thrift</td>
<td>A cross-language RPC framework for service creations. It’s the service base for Facebook technologies (the original Thrift contributor). Thrift provides a framework for developing and accessing remote services. It allows developers to create services that can be consumed by any application that is written in a language that there are Thrift bindings for. Thrift manages serialization of data to and from a service, as well as the protocol that describes a method invocation, response, etc. Instead of writing all the RPC code -- you can just get straight to your service logic. Thrift uses TCP and so a given service is bound to a particular port.</td>
<td width="20%"><a href="http://thrift.apache.org//">1. Apache Thrift</a></td>
</tr>
<tr>
<td width="20%">Apache Zookeeper</td>
<td>It’s a coordination service that gives you the tools you need to write correct distributed applications. ZooKeeper was developed at Yahoo! Research. Several Hadoop projects are already using ZooKeeper to coordinate the cluster and provide highly-available distributed services. Perhaps most famous of those are Apache HBase, Storm, Kafka. ZooKeeper is an application library with two principal implementations of the APIs—Java and C—and a service component implemented in Java that runs on an ensemble of dedicated servers. Zookeeper is for building distributed systems, simplifies the development process, making it more agile and enabling more robust implementations. Back in 2006, Google published a paper on "Chubby", a distributed lock service which gained wide adoption within their data centers. Zookeeper, not surprisingly, is a close clone of Chubby designed to fulfill many of the same roles for HDFS and other Hadoop infrastructure.</td>
<td width="20%"><a href="http://zookeeper.apache.org/">1. Apache Zookeeper</a>
<br><a href="http://research.google.com/archive/chubby.html">2. Google Chubby paper</a></td>
</tr>
<tr>
<td width="20%">Apache Avro</td>
<td>Apache Avro is a framework for modeling, serializing and making Remote Procedure Calls (RPC). Avro data is described by a schema, and one interesting feature is that the schema is stored in the same file as the data it describes, so files are self-describing. Avro does not require code generation. This framework can compete with other similar tools like: Apache Thrift, Google Protocol Buffers, ZeroC ICE, and so on. </td>
<td width="20%"><a href="http://avro.apache.org/">1. Apache Avro</a></td>
</tr>
<tr>
<td width="20%">Apache Curator</td>
<td>Curator is a set of Java libraries that make using Apache ZooKeeper much easier.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache karaf</td>
<td>Apache Karaf is an OSGi runtime that runs on top of any OSGi framework and provides you a set of services, a powerful provisioning concept, an extensible shell & more.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Twitter Elephant Bird</td>
<td>Elephant Bird is a project that provides utilities (libraries) for working with LZOP-compressed data. It also provides a container format that supports working with Protocol Buffers, Thrift in MapReduce, Writables, Pig LoadFuncs, Hive SerDe, HBase miscellanea. This open source library is massively used in Twitter.</td>
<td width="20%"><a href="https://github.com/kevinweil/elephant-bird">1. Elephant Bird GitHub</a></td>
</tr>
<tr>
<td width="20%">Linkedin Norbert</td>
<td>Norbert is a library that provides easy cluster management and workload distribution. With Norbert, you can quickly distribute a simple client/server architecture to create a highly scalable architecture capable of handling heavy traffic. Implemented in Scala, Norbert wraps ZooKeeper, Netty and uses Protocol Buffers for transport to make it easy to build a cluster aware application. A Java API is provided and pluggable load balancing strategies are supported with round robin and consistent hash strategies provided out of the box.</td>
<td width="20%"><a href="http://data.linkedin.com/opensource/norbert">1. Linedin Project</a>
<br><a href="https://github.com/rhavyn/norbert">2. GitHub source code</a></td>
</tr>
<tr>
<th colspan="3">Scheduling</th>
</tr>
<tr>
<td width="20%">Apache Oozie</td>
<td>Workflow scheduler system for MR jobs using DAGs (Direct Acyclical Graphs). Oozie Coordinator can trigger jobs by time (frequency) and data availabilit</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Linkedin Azkaban</td>
<td>Hadoop workflow management. A batch job scheduler can be seen as a combination of the cron and make Unix utilities combined with a friendly UI.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Falcon</td>
<td>Apache™ Falcon is a data management framework for simplifying data lifecycle management and processing pipelines on Apache Hadoop®. It enables users to configure, manage and orchestrate data motion, pipeline processing, disaster recovery, and data retention workflows. Instead of hard-coding complex data lifecycle capabilities, Hadoop applications can now rely on the well-tested Apache Falcon framework for these functions. Falcon’s simplification of data management is quite useful to anyone building apps on Hadoop. Data Management on Hadoop encompasses data motion, process orchestration, lifecycle management, data discovery, etc. among other concerns that are beyond ETL. Falcon is a new data processing and management platform for Hadoop that solves this problem and creates additional opportunities by building on existing components within the Hadoop ecosystem (ex. Apache Oozie, Apache Hadoop DistCp etc.) without reinventing the wheel.</td>
<td width="20%">TODO</td>
</tr>
<!---------------------------->
<!-- Machine Learning tools -->
<!---------------------------->
<tr>
<th colspan="3">Machine Learning</th>
</tr>
<tr>
<td width="20%">Apache Mahout</td>
<td>Machine learning library and math library, on top of MapReduce.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">WEKA</td>
<td>Weka (Waikato Environment for Knowledge Analysis) is a popular suite
of machine learning software written in Java, developed at the
University of Waikato, New Zealand. Weka is free software available
under the GNU General Public License.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Cloudera Oryx</td>
<td>The Oryx open source project provides simple, real-time large-scale
machine learning / predictive analytics infrastructure. It implements
a few classes of algorithm commonly used in business applications:
collaborative filtering / recommendation, classification / regression,
and clustering.</td>
<td width="20%"><a href="https://github.com/cloudera/oryx">1. Oryx at GitHub</a>
<br> <a href="https://community.cloudera.com/t5/Data-Science-and-Machine/bd-p/Mahout">2. Cloudera forum for Machine Learning</a></td>
</tr>
<tr>
<td width="20%">MADlib</td>
<td>The MADlib project leverages the data-processing capabilities of an RDBMS to analyze data.
The aim of this project is the integration of statistical data analysis into databases.
The MADlib project is self-described as the Big Data Machine Learning in SQL for Data Scientists.
The MADlib software project began the following year as a collaboration between researchers
at UC Berkeley and engineers and data scientists at EMC/Greenplum (now Pivotal)</td>
<td width="20%"><a href="http://madlib.net/community/">1. MADlib Community</a></td>
</tr>
<tr>
<td width="20%">H2O</td>
<td><p>H2O is a statistical, machine learning and math runtime tool for bigdata analysis.
Developed by the predictive analytics company H2O.ai, H2O has established a leadership
in the ML scene together with R and Databricks’ Spark. According to the team,
H2O is the world’s fastest in-memory platform for machine learning and predictive analytics
on big data. It is designed to help users scale machine learning, math, and statistics over large datasets.</p>
<p>In addition to H2O’s point and click Web-UI, its REST API allows easy integration into various
clients. This means explorative analysis of data can be done in a typical fashion in R, Python, and Scala;
and entire workflows can be written up as automated scripts.</p>
</td>
<td width="20%"><a href="https://github.com/h2oai/h2o-dev">1. H2O at GitHub</a>
<br/><a href="http://h2o.ai/blog">2. H2O Blog</a>
</td>
</tr>
<tr>
<td width="20%">Sparkling Water</td>
<td><p>Sparkling Water combines two open source technologies: Apache Spark and H2O - a machine learning engine.
It makes H2O’s library of Advanced Algorithms including Deep Learning, GLM, GBM, KMeans, PCA, and Random Forest
accessible from Spark workflows.
Spark users are provided with the options to select the best features from either platforms to meet their Machine Learning needs.
Users can combine Sparks’ RDD API and Spark MLLib with H2O’s machine learning algorithms,
or use H2O independent of Spark in the model building process and post-process the results in Spark.
</p>
<p>
Sparkling Water provides a transparent integration of H2O’s framework and data structures into Spark’s
RDD-based environment by sharing the same execution space as well as providing a RDD-like API for H2O data structures.
</p>
</td>
<td width="20%"><a href="https://github.com/h2oai/sparkling-water">1. Sparkling Water at GitHub</a>
<br/><a href="https://github.com/h2oai/sparkling-water/tree/master/examples">2. Sparkling Water Examples</a>
</td>
</tr>
<!------------------------>
<!-- Benchmarking tools -->
<!------------------------>
<tr>
<th colspan="3">Benchmarking</th>
</tr>
<tr>
<td width="20%">Apache Hadoop Benchmarking</td>
<td>There are two main JAR files in Apache Hadoop for benchmarking. This JAR are micro-benchmarks for testing particular parts of the infrastructure, for instance TestDFSIO analyzes the disk system, TeraSort evaluates MapReduce tasks, WordCount measures cluster performance, etc. Micro-Benchmarks are packaged in the tests and exmaples JAR files, and you can get a list of them, with descriptions, by invoking the JAR file with no arguments. With regards Apache Hadoop 2.2.0 stable version we have available the following JAR files for test, examples and benchmarking. The Hadoop micro-benchmarks, are bundled in this JAR files: hadoop-mapreduce-examples-2.2.0.jar, hadoop-mapreduce-client-jobclient-2.2.0-tests.jar.</td>
<td width="20%"><a href="https://issues.apache.org/jira/browse/MAPREDUCE-3561">1. MAPREDUCE-3561 umbrella ticket to track all the issues related to performance</a></td>
</tr>
<tr>
<td width="20%">Yahoo Gridmix3</td>
<td>Hadoop cluster benchmarking from Yahoo engineer team.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">PUMA Benchmarking</td>
<td>Benchmark suite which represents a broad range of MapReduce applications exhibiting application characteristics with high/low computation and high/low shuffle volumes. There are a total of 13 benchmarks, out of which Tera-Sort, Word-Count, and Grep are from Hadoop distribution. The rest of the benchmarks were developed in-house and are currently not part of the Hadoop distribution. The three benchmarks from Hadoop distribution are also slightly modified to take number of reduce tasks as input from the user and generate final time completion statistics of jobs.</td>
<td width="20%"><a href="https://issues.apache.org/jira/browse/MAPREDUCE-5116">1. MAPREDUCE-5116</a>
<br> <a href="https://sites.google.com/site/farazahmad/">2. Faraz Ahmad researcher</a>
<br> <a href="https://sites.google.com/site/farazahmad/pumabenchmarks">3. PUMA Docs</a></td>
</tr>
<tr>
<td width="20%">Berkeley SWIM Benchmark</td>
<td>The SWIM benchmark (Statistical Workload Injector for MapReduce), is a benchmark representing a real-world big data workload developed by University of California at Berkley in close cooperation with Facebook. This test provides rigorous measurements of the performance of MapReduce systems comprised of real industry workloads..</td>
<td width="20%"><a href="https://github.com/SWIMProjectUCB/SWIM/wiki">1. GitHub SWIN</a></td>
</tr>
<tr>
<td width="20%">Intel HiBench</td>
<td>HiBench is a Hadoop benchmark suite.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<th colspan="3">Security</th>
</tr>
<tr>
<td width="20%">Apache Sentry</td>
<td>Sentry is the next step in enterprise-grade big data security and delivers fine-grained authorization to data stored in Apache Hadoop™. An independent security module that integrates with open source SQL query engines Apache Hive and Cloudera Impala, Sentry delivers advanced authorization controls to enable multi-user applications and cross-functional processes for enterprise data sets. Sentry was a Cloudera development.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Knox Gateway</td>
<td> System that provides a single point of secure access for Apache Hadoop clusters. The goal is to simplify Hadoop security for both users (i.e. who access the cluster data and execute jobs) and operators (i.e. who control access and manage the cluster). The Gateway runs as a server (or cluster of servers) that serve one or more Hadoop clusters.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Ranger</td>
<td> Apache Argus Ranger (formerly called Apache Argus or HDP Advanced Security) delivers comprehensive approach to central security policy administration across the core enterprise security requirements of authentication, authorization, accounting and data protection. It extends baseline features for coordinated enforcement across Hadoop workloads from batch, interactive SQL and real–time and leverages the extensible architecture to apply policies consistently against additional Hadoop ecosystem components (beyond HDFS, Hive, and HBase) including Storm, Solr, Spark, and more. </td>
<td width="20%"><a href="http://hortonworks.com/hadoop/ranger/"></a>1. Apache Ranger Hortonworks web</a>
<br><a href="http://hortonworks.com/blog/announcing-apache-argus-call-arms/">2. Hortonworks announcement of Apache Argus</a>
</td>
</tr>
<tr>
<th colspan="3">System Deployment</th>
</tr>
<tr>
<td width="20%">Apache Ambari</td>
<td>Intuitive, easy-to-use Hadoop management web UI backed by its RESTful APIs.
Apache Ambari was donated by Hortonworks team to the ASF. It's a powerful and
nice interface for Hadoop and other typical applications from the Hadoop
ecosystem. Apache Ambari is under a heavy development, and it will incorporate
new features in a near future. For example Ambari is able to deploy a complete
Hadoop system from scratch, however is not possible use this GUI in a Hadoop
system that is already running. The ability to provisioning the operating
system could be a good addition, however probably is not in the roadmap..</td>
<td width="20%"><a href="http://ambari.apache.org/">1. Apache Ambari</a></td>
</tr>
<tr>
<td width="20%">Cloudera HUE</td>
<td>Web application for interacting with Apache Hadoop. It's not a deploment tool,
is an open-source Web interface that supports Apache Hadoop and its ecosystem,
licensed under the Apache v2 license. HUE is used for Hadoop and its ecosystem
user operations.</td>
<td width="20%"><a href="http://gethue.com/">1. HUE home page</a></td>
</tr>
<tr>
<td width="20%">Apache Whirr</td>
<td>Apache Whirr is a set of libraries for running cloud services. It allows you
to use simple commands to boot clusters of distributed systems for testing and
experimentation. Apache Whirr makes booting clusters easy.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Mesos</td>
<td>Mesos is a cluster manager that provides resource sharing and isolation across
cluster applications. Like HTCondor, SGE or Troque can do it. However Mesos
is hadoop centred design</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Myriad</td>
<td>Myriad is a mesos framework designed for scaling YARN clusters on Mesos. Myriad
can expand or shrink one or more YARN clusters in response to events as per
configured rules and policies.
</td>
<td width="20%"><a href="https://github.com/mesos/myriad">1. Myriad Github</a></td>
</tr>
<tr>
<td width="20%">Marathon</td>
<td>Marathon is a Mesos framework for long-running services. Given that you have
Mesos running as the kernel for your datacenter, Marathon is the init or upstart daemon.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Brooklyn</td>
<td>Brooklyn is a library that simplifies application deployment and management.
For deployment, it is designed to tie in with other tools, giving single-click
deploy and adding the concepts of manageable clusters and fabrics:
Many common software entities available out-of-the-box.
Integrates with Apache Whirr -- and thereby Chef and Puppet -- to deploy well-known
services such as Hadoop and elasticsearch (or use POBS, plain-old-bash-scripts)
Use PaaS's such as OpenShift, alongside self-built clusters, for maximum flexibility</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Hortonworks HOYA</td>
<td>HOYA is defined as “running HBase On YARN”. The Hoya tool is a Java tool,
and is currently CLI driven. It takes in a cluster specification – in terms
of the number of regionservers, the location of HBASE_HOME, the ZooKeeper
quorum hosts, the configuration that the new HBase cluster instance should
use and so on.<br>
So HOYA is for HBase deployment using a tool developed on top of YARN. Once the
cluster has been started, the cluster can be made to grow or shrink using the
Hoya commands. The cluster can also be stopped and later resumed. Hoya implements
the functionality through YARN APIs and HBase’s shell scripts. The goal of
the prototype was to have minimal code changes and as of this writing, it has
required zero code changes in HBase.</td>
<td width="20%"><a href="http://hortonworks.com/blog/introducing-hoya-hbase-on-yarn/">1. Hortonworks Blog</a></td>
</tr>
<tr>
<td width="20%">Apache Helix</td>
<td>Apache Helix is a generic cluster management framework used for the automatic
management of partitioned, replicated and distributed resources hosted on a
cluster of nodes. Originally developed by Linkedin, now is in an incubator
project at Apache. Helix is developed on top of Zookeeper for coordination tasks. .</td>
<td width="20%"><a href="http://helix.apache.org/">1. Apache Helix</a></td>
</tr>
<tr>
<td width="20%">Apache Bigtop</td>
<td>Bigtop was originally developed and released as an open source packaging
infrastructure by Cloudera. BigTop is used for some vendors to build their
own distributions based on Apache Hadoop (CDH, Pivotal HD, Intel's distribution),
however Apache Bigtop does many more tasks, like continuous integration testing
(with Jenkins, maven, ...) and is useful for packaging (RPM and DEB), deployment
with Puppet, and so on. BigTop also features vagrant recipes for spinning up "n-node"
hadoop clusters, and the bigpetstore blueprint application which demonstrates
construction of a full stack hadoop app with ETL, machine learning,
and dataset generation. Apache Bigtop could be considered as a community effort
with a main focus: put all bits of the Hadoop ecosystem as a whole, rather
than individual projects.</td>
<td width="20%"><a href="http://bigtop.apache.org//">1. Apache Bigtop.</a></td>
</tr>
<tr>
<td width="20%">Buildoop</td>
<td>Buildoop is an open source project licensed under Apache License 2.0, based on Apache BigTop idea.
Buildoop is a collaboration project that provides templates and tools to help you create custom
Linux-based systems based on Hadoop ecosystem. The project is built from scrach using Groovy language,
and is not based on a mixture of tools like BigTop does (Makefile, Gradle, Groovy, Maven), probably
is easier to programming than BigTop, and the desing is focused in the basic ideas behind the buildroot
Yocto Project. The project is in early stages of development right now.</td>
<td width="20%"><a href="http://buildoop.github.io/">1. Hadoop Ecosystem Builder.</a></td>
</tr>
<tr>
<td width="20%">Deploop</td>
<td>Deploop is a tool for provisioning, managing and monitoring Apache Hadoop
clusters focused in the Lambda Architecture. LA is a generic design based on
the concepts of Twitter engineer Nathan Marz. This generic architecture was
designed addressing common requirements for big data. The Deploop system is
in ongoing development, in alpha phases of maturity. The system is setup
on top of highly scalable techologies like Puppet and MCollective.
</td>
<td width="20%"><a href="http://deploop.github.io/">1. The Hadoop Deploy System.</a></td>
</tr>
<tr>
<th colspan="3">Applications</th>
</tr>
<tr>
<td width="20%">Apache Nutch</td>
<td>Highly extensible and scalable open source web crawler software project. A search engine based on Lucene: A Web crawler is an Internet bot that systematically browses the World Wide Web, typically for the purpose of Web indexing. Web crawlers can copy all the pages they visit for later processing by a search engine that indexes the downloaded pages so that users can search them much more quickly.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Sphnix Search Server</td>
<td>Sphinx lets you either batch index and search data stored in an SQL database, NoSQL storage, or just files quickly and easily — or index and search data on the fly, working with Sphinx pretty much as with a database server.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache OODT</td>
<td>OODT was originally developed at NASA Jet Propulsion Laboratory to support capturing, processing and sharing of data for NASA's scientific archives</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">HIPI Library</td>
<td>HIPI is a library for Hadoop's MapReduce framework that provides an API for performing image processing tasks in a distributed computing environment.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">PivotalR</td>
<td>PivotalR is a package that enables users of R, the most popular open source statistical
programming language and environment to interact with the Pivotal (Greenplum) Database
as well as Pivotal HD / HAWQ and the open-source database PostgreSQL for Big Data analytics.
R is a programming language and data analysis software: you do data analysis in R by writing
scripts and functions in the R programming language. R is a complete, interactive,
object-oriented language: designed by statisticians, for statisticians. The language
provides objects, operators and functions that make the process of exploring, modeling,
and visualizing data a natural one.</td>
<td width="20%"><a href="https://github.com/gopivotal/PivotalR">1. PivotalR on GitHub</a></td>
</tr>
<tr>
<th colspan="3">Development Frameworks</th>
</tr>
<tr>
<td width="20%">Spring XD</td>
<td>Spring XD (Xtreme Data) is a evolution of Spring Java application development framework to help Big Data Applications by Pivotal.
SpringSource was the company created by the founders of the Spring Framework. SpringSource was purchased by VMware where it was
maintained for some time as a separate division within VMware. Later VMware, and its parent company EMC Corporation, formally created
a joint venture called Pivotal. Spring XD is more than development framework library, is a distributed, and extensible system for data ingestion,
real time analytics, batch processing, and data export. It could be considered as alternative to Apache Flume/Sqoop/Oozie in some scenarios.
Spring XD is part of Pivotal Spring for Apache Hadoop (SHDP). SHDP, integrated with Spring, Spring Batch and Spring Data are part of
the Spring IO Platform as foundational libraries. Building on top of, and extending this foundation, the Spring IO platform provides
Spring XD as big data runtime. Spring for Apache Hadoop (SHDP) aims to help simplify the development of Hadoop based applications by
providing a consistent configuration and API across a wide range of Hadoop ecosystem projects such as Pig, Hive, and Cascading
in addition to providing extensions to Spring Batch for orchestrating Hadoop based workflows.
</td>
<td width="20%"><a href="https://github.com/spring-projects/spring-xd">1. Spring XD on GitHub</a></td>
</tr>
<tr>
<th colspan="3">Categorize Pending ... </th>
</tr>
<tr>
<td width="20%">Twitter Summingbird</td>
<td>a system that aims to mitigate the tradeoffs between batch processing and stream processing by combining them into a hybrid system. In the case of Twitter, Hadoop handles batch processing, Storm handles stream processing, and the hybrid system is called Summingbird.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Kiji</td>
<td>Build Real-time Big Data Applications on Apache HBase.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">S4 Yahoo</td>
<td>S4 is a general-purpose, distributed, scalable, fault-tolerant, pluggable platform that allows programmers to easily develop applications for processing continuous unbounded streams of data.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Metamarkers Druid</td>
<td>Realtime analytical data store.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Concurrent Cascading</td>
<td>Application framework for Java developers to simply develop robust Data Analytics and Data Management applications on Apache Hadoop.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Concurrent Lingual</td>
<td>Open source project enabling fast and simple Big Data application development on Apache Hadoop. project that delivers ANSI-standard SQL technology to easily build new and integrate existing applications onto Hadoop</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Concurrent Pattern</td>
<td>Machine Learning for Cascading on Apache Hadoop through an API, and standards based PMML</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Giraph</td>
<td>Apache Giraph is an iterative graph processing system built for high scalability. For example, it is currently used at Facebook to analyze the social graph formed by users and their connections. Giraph originated as the open-source counterpart to Pregel, the graph processing architecture developed at Google</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Talend</td>
<td>Talend is an open source software vendor that provides data integration, data management, enterprise application integration and big data software and solutions.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Akka Toolkit</td>
<td>Akka is an open-source toolkit and runtime simplifying the construction of concurrent applications on the Java platform.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Eclipse BIRT</td>
<td>BIRT is an open source Eclipse-based reporting system that integrates with your Java/Java EE application to produce compelling reports.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Spango BI</td>
<td>SpagoBI is an Open Source Business Intelligence suite, belonging to the free/open source SpagoWorld initiative, founded and supported by Engineering Group. It offers a large range of analytical functions, a highly functional semantic layer often absent in other open source platforms and projects, and a respectable set of advanced data visualization features including geospatial analytics</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Jedox Palo</td>
<td>Palo Suite combines all core applications — OLAP Server, Palo Web, Palo ETL Server and Palo for Excel — into one comprehensive and customisable Business Intelligence platform. The platform is completely based on Open Source products representing a high-end Business Intelligence solution which is available entirely free of any license fees.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Twitter Finagle</td>
<td>Finagle is an asynchronous network stack for the JVM that you can use to build asynchronous Remote Procedure Call (RPC) clients and servers in Java, Scala, or any JVM-hosted language.</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Intel GraphBuilder</td>
<td>library which provides tools to construct large-scale graphs on top of Apache Hadoop</td>
<td width="20%">TODO</td>
</tr>
<tr>
<td width="20%">Apache Tika</td>
<td>Toolkit detects and extracts metadata and structured text content from various documents using existing parser libraries.</td>
<td width="20%">TODO</td>
</tr>
</table>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a>
by <a href="http://es.linkedin.com/in/javiroman/">Javi Roman</a>, and
<a href="https://github.com/hadoopecosystemtable/hadoopecosystemtable.github.io/graphs/contributors">contributors</a>
</p>