Bigdata and HadoopFlume Installation and Streaming Twitter Data Using Flume

Flume Installation and Streaming Twitter Data Using Flume

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.

Flume lets Hadoop users make the most of valuable log data. Specifically, Flume allows users to:

  • Stream data from multiple sources into Hadoop for analysis
  • Collect high-volume Web logs in real time
  • Insulate themselves from transient spikes when the rate of incoming data exceeds the rate at which data can be written to the destination
  • Guarantee data delivery
  • Scale horizontally to handle additional data volume

Flume’s high-level architecture is focused on delivering a streamlined codebase that is easy-to-use and easy-to-extend. The project team has designed Flume with the following components:

  • Event – a singular unit of data that is transported by Flume (typically a single log entry
  • Source – the entity through which data enters into Flume. Sources either actively poll for data or passively wait for data to be delivered to them. A variety of sources allow data to be collected, such as log4j logs and syslogs.
  • Sink – the entity that delivers the data to the destination. A variety of sinks allow data to be streamed to a range of destinations. One example is the HDFS sink that writes events to HDFS.
  • Channel – the conduit between the Source and the Sink. Sources ingest events into the channel and the sinks drain the channel.
  • Agent – any physical Java virtual machine running Flume. It is a collection of sources, sinks and channels.
  • Client – produces and transmits the Event to the Source operating within the Agent

1

A flow in Flume starts from the Client (Web Server). The Client transmits the event to a Source operating within the Agent. The Source receiving this event then delivers it to one or more Channels. These Channels are drained by one or more Sinks operating within the same Agent. Channels allow decoupling of ingestion rate from drain rate using the familiar producer-consumer model of data exchange. When spikes in client side activity cause data to be generated faster than what the provisioned capacity on the destination can handle, the channel size increases. This allows sources to continue normal operation for the duration of the spike. Flume agents can be chained together by connecting the sink of one agent to the source of another agent. This enables the creation of complex dataflow topologies.

Now we will install apache flume on our virtual machine.

STEP 1:

Download flume:
Command: wget https://archive.apache.org/dist/flume/1.4.0/apache-flume-1.4.0-bin.tar.gz
2

Command: ls
3

STEP 2:

Extract file from flume tar file.
Command: tar -xvf apache-flume-1.4.0-bin.tar.gz
Command: ls
4

STEP 3:

Put apache-flume-1.4.0-bin directory inside /usr/lib/ directory.

Command: sudo mv apache-flume-1.4.0-bin /usr/lib/
5

STEP 4:

We need to remove protobuf-java-2.4.1.jar and guava-10.1.1.jar from lib directory of apache-flume-1.4.0-bin ( when using hadoop-2.x )

Command: sudo rm /usr/lib/apache-flume-1.4.0-bin/lib/protobuf-java-2.4.1.jar /usr/lib/apache-flume-1.4.0-bin/lib/guava-10.0.1.jar
6
Learn HTML5 Programming For Beginners
STEP 5:

Use below link and download flume-sources-1.0-SNAPSHOTS.jar

7

Save the file.
8

STEP 6:

Move the flume-sources-1.0-SNAPSHOT.jar file from Downloads directory to lib directory of apache flume:

Command: sudo mv Downloads/flume-sources-1.0-SNAPSHOT.jar /usr/lib/apache-flume-1.4.0-bin/lib/
9

STEP 7:

Check whether flume SNAPSHOT has moved to the lib folder of apache flume:

Command: ls /usr/lib/apache-flume-1.4.0-bin/lib/flume*
10

STEP 8:

Copy flume-env.sh.template content to flume-env.sh

Command: cd /usr/lib/apache-flume-1.4.0-bin/

Command: sudo cp conf/flume-env.sh.template conf/flume-env.sh
11

STEP 9:

Edit flume-env.sh as mentioned in below snapshot.

command: sudo gedit conf/flume-env.sh
12

Set JAVA_HOME and FLUME_CLASSPATH as shown in below snapshot.
13

Now we have installed flume on our machine. Lets run flume to stream twitter data on to HDFS.
We need to create an application in twitter and use its credentials to fetch data.

STEP 10:

Open a Browser and go to the below URL:

URL:https://twitter.com/
14

STEP 11:

Enter your Twitter account credentials and sign in:
15
Ultimate Java Development and Certification Course
STEP 12:

Your twitter home page will open:
16

STEP 13:

Change the URL to https://apps.twitter.com
17

STEP 14:

Click on Create New App to create a new application and enter all the details in the application:
18

STEP 15:

Check Yes, I agree and click on Create your Twitter application:
19

STEP 16:

Your Application will be created:
20

STEP 17:

Click on Keys and Access Tokens, you will get Consumer Key and Consumer Secret.
21
https://blog.eduonix.com/wp-content/uploads/2015/10/Learn-Javascript-And-JQuery-From-Scratch.png
STEP 18:

Scroll down and Click on Create my access token:
22

Your Access token got created:
23
Consumer Key (API Key) 4AtbrP50QnfyXE2NlYwROBpTm
Consumer Secret (API Secret) jUpeHEZr5Df4q3dzhT2C0aR2N2vBidmV6SNlEELTBnWBMGAwp3
Access Token 1434925639-p3Q2i3l2WLx5DvmdnFZWlYNvGdAOdf5BrErpGKk
Access Token Secret AghOILIp9JJEDVFiRehJ2N7dZedB1y4cHh0MvMJN5DQu7

STEP 19:

Use below link to download flume.conf file
https://drive.google.com/file/d/0B-Cl0IfLnRozdlRuN3pPWEJ1RHc/view?usp=sharing
24
Save the file.

25

STEP 20:

Put the flume.conf in the conf directory of apache-flume-1.4.0-bin
Command: sudo cp /home/centos/Downloads/flume.conf /usr/lib/apache-flume-1.4.0-bin/conf/
26

STEP 21:

Edit flume.conf

Command: sudo gedit conf/flume.conf

Replace all the below highlighted credentials in flume.conf with the credentials (Consumer Key, Consumer Secret, Access Token, Access Token Secret) you received after creating the application very carefully, rest all will remain same, save the file and close it.
27

28
Ultimate Java Development and Certification Course
STEP 22:

Change permissions for flume directory.

Command: sudo chmod -R 755 /usr/lib/apache-flume-1.4.0-bin/
29

STEP 23:

Start fetching the data from twitter:

Command: ./bin/flume-ng agent -n TwitterAgent -c conf -f /usr/lib/apache-flume-1.4.0-bin/conf/flume.conf
30
31

Now wait for 20-30 seconds and let flume stream the data on HDFS, after that press ctrl + c to break the command and stop the streaming. (Since you are stopping the process, you may get few exceptions, ignore it)
Learn the Basics of C Programming Language
STEP 24:

Open the Mozilla browser in your VM, and go to /user/flume/tweets in HDFS

Click on FlumeData file which got created:
32

If you can see data similar as shown in below snapshot, then the unstructured data has been streamed from twitter on to HDFS successfully. Now you can do analytics on this twitter data using Hive.

33

11 COMMENTS

  1. i’ve tried and succeeded in fluming twitter data but today i repeated the same but unable to download any data.And no error is being displayed in the terminal and the agent is getting killed on its own.Is flume 1.4 enough? or shall i upgrade my flume to 1.6.

  2. Hi thanks for such an awesome post. But I am not able to load twitter data into my directory in hadoop user. its not giving any errors.

  3. Hi thanks for such an awesome post. But I am not able to load twitter data into my directory in hadoop user. its not giving any errors. Can you please help me on that ?

  4. Sir/Mam,

    I did everything as it is mentioned in your blog but in last step number 23. After the command for executing it nothing is happening. I waited for a very long time. Neither i am getting an error nor i am able to stream and store the twitter data in my hdfs.

    The courser is just blipping at the end and nothing is happening.

    Does this process take more time if we have lower bandwidth connection or is there any other problem.

    Regards,
    Pranav

  5. Worked great, thanks! Was able to download about 1.8mb of Twitter data until my system choked:

    org.apache.flume.ChannelException: Take list for MemoryTransaction, capacity 100 full, consider committing more frequently, increasing capacity, or increasing thread count

    I suppose I just need to make some tweaks to my config.

    • how you download data?
      I am done with step 22 but after executing step 23 i am not able gather tweets.
      What exactly problem can you please tell me?
      I require it urgently my problem is stuck because i am not getting tweeter data.
      Please help me.

  6. hii,

    Upto step 22 everything is working fine but after executing step 23 i am not able to collect tweets.
    Please help me what exactlt the problem is?

  7. Excellent Post. Thanks Sabeer

    Just One Point I want to add here if you have Virtual Machine then :

    Then Host Machine and Virtual Machine should be same TIME. Otherwise it will not work.

    Thanks
    Subhankar

  8. hii
    i follow these steps but no any data is fetch into hdfs it showing me from longer time
    Establishing Connection
    waiting for some seconds

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Exclusive content

- Advertisement -

Latest article

21,501FansLike
4,106FollowersFollow
106,000SubscribersSubscribe

More article

- Advertisement -