Project

General

Profile

Sample-hbase-mail-digester » History » Version 12

Henning Blohm, 02.08.2014 15:14

1 1 Henning Blohm
h1. Sample that combines HBase with full-stack Spring and Hibernate usage
2 2 Henning Blohm
3 12 Henning Blohm
This sample consists of an application that loads large Mbox archive files into HBase and extracts email addresses using a map reduce job. Extracted email addresses are then written to a relational database and offered for editing.
4 3 Henning Blohm
5 4 Henning Blohm
Being a full stack sample it shows how to design a multi-module application with a service tier that can be seamlessly used from a Web app as well as from an application-level map-reduce job.
6
7 1 Henning Blohm
*Note*: This sample still uses v2.2 of z2 - so making sure the correct versions are specified below is crucial.
8 5 Henning Blohm
*Note*: Due to HBase, you will need to run this on Linux or Mac OS.
9 4 Henning Blohm
10 11 Henning Blohm
Proceed to [[Sample-hbase-mail-digester#How-this-works|how this works]], if you do not want to run the sample but only learn about it.
11 9 Henning Blohm
12 4 Henning Blohm
h2. Install
13 1 Henning Blohm
14 5 Henning Blohm
Here is the quick guide to getting things up and running. This follows closely [[How_to_run_a_sample]] and [[Install_prepacked_CDH4]].
15
16
h3. Checkout
17
18
Create some installation folder and check out the z2 core and the HBase distribution, as well as the sample application. 
19
20 3 Henning Blohm
<pre><code class="bash">
21
git clone -b v2.2 http://git.z2-environment.net/z2-base.core
22
git clone -b v2.2 http://git.z2-environment.net/z2-samples.cdh4-base
23
git clone -b master http://git.z2-environment.net/z2-samples.hbase-mail-digester
24 1 Henning Blohm
</code></pre>
25 5 Henning Blohm
26
(Note: Do not use your shared git folder, if you have any, as the neighborhood of these projects may be inspected by z2 later on).
27
28
h3. Prepare
29
30
We need to apply some minimal configuration for HBase. At first, please follow [[Install_prepacked_CDH4]] on how to configure your HBase checkout. There are a few steps that need to be taken once only but still have to.
31
32
Assuming HBase has started and all processes show as described, there is one last thing to get running before starting the actual application:
33
34
{{include(How to run Java db)}}
35
36 6 Henning Blohm
h2. Start
37 5 Henning Blohm
38 7 Henning Blohm
Now that all databases are up we can start the application simply by running (as always):
39 5 Henning Blohm
40
<pre><code class="bash">
41
# on Linux / Mac OS:
42
cd z2-base.core/run/bin
43
./gui.sh
44
45
# on Windows:
46
cd z2-base.core\run\bin
47
gui.bat
48
</code></pre>
49
50 7 Henning Blohm
At first startup this will download some significant amount of dependencies (Spring, Vaadin, etc.). So go and get yourself some coffee....
51 5 Henning Blohm
52
When started, go to http://localhost:8080/digester-admin. You should see this:
53 1 Henning Blohm
54
!start.png!
55 7 Henning Blohm
56
h2. Using the application
57
58 8 Henning Blohm
To feed data into the application, please download some mail archive in mbox format, e.g. from http://tomcat.apache.org/mail/. Upload the file to the digester application as outline on the first tab. Mails from mail archives are imported into the HBase database.
59 7 Henning Blohm
60 8 Henning Blohm
When imported, run the analysis map-reduce job by clicking on "Start analysis job". The purpose of this job is to identify mail senders and provide some data like email address, full name, and number of mails into the relational database powered by Derby.
61 7 Henning Blohm
62 8 Henning Blohm
When the database is empty, progress reporting is rather coarse-grained. After a while you should see:
63 7 Henning Blohm
64 8 Henning Blohm
!job.png!
65 7 Henning Blohm
66 8 Henning Blohm
And work should be completed shortly after. When done, check the extraced sender data:
67 1 Henning Blohm
68
!counts.png!
69 8 Henning Blohm
70
h2. How this works
71
72
...