Análisis de datos de X con Apache Hive y Apache Hadoop en HDInsight
Aprenda a usar Apache Hive para procesar los datos de X. El resultado es una lista de usuarios de X que enviaron la mayoría de los tweets que contienen una palabra determinada.
Importante
Los pasos de este documento se probaron en HDInsight 3.6.
Obtener los datos
X permite recuperar los datos de cada tweet como un documento con formato de notación de objetos JavaScript (JSON) mediante una API REST. OAuth para autenticación en la API.
Crear una aplicación de X
Desde un explorador web, inicie sesión en https://developer.x.com. Seleccione el vínculo Regístrate ahora si no tiene una cuenta de X.
Seleccione Crear nueva aplicación.
Especifique los campos Name (Nombre), Description (Descripción), Website (Sitio web). Puede conformar una dirección URL para el campo Website (Sitio web). La siguiente tabla muestra algunos valores de ejemplo para utilizar:
Campo Valor Nombre MyHDInsightApp Descripción MyHDInsightApp Sitio web https://www.myhdinsightapp.com
Seleccione Yes, I agree (Acepto) y, a continuación, elija Create your Twitter application (Crear la aplicación de Twitter).
Seleccione la pestaña Permisos. El permiso predeterminado es Read only(Solo lectura).
Seleccione la pestaña Claves y tokens de acceso .
Seleccione Create my access token (Crear mi token de acceso).
Seleccione Test OAuth (Probar OAuth) en la esquina superior derecha de la página.
Rellene los campos consumer key (clave del consumidor), Consumer secret (Secreto del consumidor), Access token (Token de acceso) y Access token secret (Secreto del token de acceso).
Descarga de tweets
El siguiente código Python descarga 10 000 tweets de X y los guarda en un archivo denominado tweets.txt.
Nota:
Los siguientes pasos se realizan en el clúster de HDInsight, puesto que Python ya está instalada.
Use el comando SSH para conectarse al clúster. Modifique el comando siguiente: reemplace CLUSTERNAME por el nombre del clúster y, luego, escriba el comando:
ssh sshuser@CLUSTERNAME-ssh.azurehdinsight.net
Use los comandos siguientes para instalar Tweepy, Progressbar y otros paquetes requeridos:
sudo apt install python-dev libffi-dev libssl-dev sudo apt remove python-openssl python -m pip install virtualenv mkdir gettweets cd gettweets virtualenv gettweets source gettweets/bin/activate pip install tweepy progressbar pyOpenSSL requests[security]
Use el comando siguiente para crear un archivo denominado gettweets.py:
nano gettweets.py
Para modificar el comando siguiente, reemplace
Your consumer secret
,Your consumer key
,Your access token
yYour access token secret
por la información pertinente de su aplicación de X. A continuación, pegue el código editado como el contenido del archivo gettweets.py.#!/usr/bin/python from tweepy import Stream, OAuthHandler from tweepy.streaming import StreamListener from progressbar import ProgressBar, Percentage, Bar import json import sys #X app information consumer_secret='Your consumer secret' consumer_key='Your consumer key' access_token='Your access token' access_token_secret='Your access token secret' #The number of tweets we want to get max_tweets=100 #Create the listener class that receives and saves tweets class listener(StreamListener): #On init, set the counter to zero and create a progress bar def __init__(self, api=None): self.num_tweets = 0 self.pbar = ProgressBar(widgets=[Percentage(), Bar()], maxval=max_tweets).start() #When data is received, do this def on_data(self, data): #Append the tweet to the 'tweets.txt' file with open('tweets.txt', 'a') as tweet_file: tweet_file.write(data) #Increment the number of tweets self.num_tweets += 1 #Check to see if we have hit max_tweets and exit if so if self.num_tweets >= max_tweets: self.pbar.finish() sys.exit(0) else: #increment the progress bar self.pbar.update(self.num_tweets) return True #Handle any errors that may occur def on_error(self, status): print status #Get the OAuth token auth = OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) #Use the listener class for stream processing twitterStream = Stream(auth, listener()) #Filter for these topics twitterStream.filter(track=["azure","cloud","hdinsight"])
Sugerencia
Ajuste el filtro de temas en la última línea para realizar un seguimiento de las palabras clave populares. El uso de palabras clave populares en el momento de ejecutar el script permite la captura más rápida de los datos.
Use Ctrl+X y luego Y para guardar el archivo.
Use el siguiente comando para ejecutar el archivo y descargar tweets:
python gettweets.py
Aparece un indicador de progreso. Cuenta hasta el 100% a medida que se descargan los tweets.
Nota
Si la barra de progreso tarda mucho en avanzar, debería cambiar el filtro de seguimiento de las tendencias. Cuando hay muchos tweets sobre el tema en el filtro, puede obtener rápidamente los 100 tweets necesarios.
Carga de los datos
Para cargar los datos de almacenamiento para HDInsight, use los comandos siguientes:
hdfs dfs -mkdir -p /tutorials/x/data
hdfs dfs -put tweets.txt /tutorials/x/data/tweets.txt
Estos comandos almacenan los datos en una ubicación a la que pueden tener acceso todos los nodos del clúster.
Ejecución del trabajo de HiveQL
Use el siguiente comando para crear un archivo que contenga instrucciones de HiveQL:
nano x.hql
Use el texto siguiente como contenido del archivo:
set hive.exec.dynamic.partition = true; set hive.exec.dynamic.partition.mode = nonstrict; -- Drop table, if it exists DROP TABLE tweets_raw; -- Create it, pointing toward the tweets logged from X CREATE EXTERNAL TABLE tweets_raw ( json_response STRING ) STORED AS TEXTFILE LOCATION '/tutorials/x/data'; -- Drop and recreate the destination table DROP TABLE tweets; CREATE TABLE tweets ( id BIGINT, created_at STRING, created_at_date STRING, created_at_year STRING, created_at_month STRING, created_at_day STRING, created_at_time STRING, in_reply_to_user_id_str STRING, text STRING, contributors STRING, retweeted STRING, truncated STRING, coordinates STRING, source STRING, retweet_count INT, url STRING, hashtags array<STRING>, user_mentions array<STRING>, first_hashtag STRING, first_user_mention STRING, screen_name STRING, name STRING, followers_count INT, listed_count INT, friends_count INT, lang STRING, user_location STRING, time_zone STRING, profile_image_url STRING, json_response STRING ); -- Select tweets from the imported data, parse the JSON, -- and insert into the tweets table FROM tweets_raw INSERT OVERWRITE TABLE tweets SELECT cast(get_json_object(json_response, '$.id_str') as BIGINT), get_json_object(json_response, '$.created_at'), concat(substr (get_json_object(json_response, '$.created_at'),1,10),' ', substr (get_json_object(json_response, '$.created_at'),27,4)), substr (get_json_object(json_response, '$.created_at'),27,4), case substr (get_json_object(json_response, '$.created_at'),5,3) when "Jan" then "01" when "Feb" then "02" when "Mar" then "03" when "Apr" then "04" when "May" then "05" when "Jun" then "06" when "Jul" then "07" when "Aug" then "08" when "Sep" then "09" when "Oct" then "10" when "Nov" then "11" when "Dec" then "12" end, substr (get_json_object(json_response, '$.created_at'),9,2), substr (get_json_object(json_response, '$.created_at'),12,8), get_json_object(json_response, '$.in_reply_to_user_id_str'), get_json_object(json_response, '$.text'), get_json_object(json_response, '$.contributors'), get_json_object(json_response, '$.retweeted'), get_json_object(json_response, '$.truncated'), get_json_object(json_response, '$.coordinates'), get_json_object(json_response, '$.source'), cast (get_json_object(json_response, '$.retweet_count') as INT), get_json_object(json_response, '$.entities.display_url'), array( trim(lower(get_json_object(json_response, '$.entities.hashtags[0].text'))), trim(lower(get_json_object(json_response, '$.entities.hashtags[1].text'))), trim(lower(get_json_object(json_response, '$.entities.hashtags[2].text'))), trim(lower(get_json_object(json_response, '$.entities.hashtags[3].text'))), trim(lower(get_json_object(json_response, '$.entities.hashtags[4].text')))), array( trim(lower(get_json_object(json_response, '$.entities.user_mentions[0].screen_name'))), trim(lower(get_json_object(json_response, '$.entities.user_mentions[1].screen_name'))), trim(lower(get_json_object(json_response, '$.entities.user_mentions[2].screen_name'))), trim(lower(get_json_object(json_response, '$.entities.user_mentions[3].screen_name'))), trim(lower(get_json_object(json_response, '$.entities.user_mentions[4].screen_name')))), trim(lower(get_json_object(json_response, '$.entities.hashtags[0].text'))), trim(lower(get_json_object(json_response, '$.entities.user_mentions[0].screen_name'))), get_json_object(json_response, '$.user.screen_name'), get_json_object(json_response, '$.user.name'), cast (get_json_object(json_response, '$.user.followers_count') as INT), cast (get_json_object(json_response, '$.user.listed_count') as INT), cast (get_json_object(json_response, '$.user.friends_count') as INT), get_json_object(json_response, '$.user.lang'), get_json_object(json_response, '$.user.location'), get_json_object(json_response, '$.user.time_zone'), get_json_object(json_response, '$.user.profile_image_url'), json_response WHERE (length(json_response) > 500);
Presione Ctrl+X y luego Y para guardar el archivo.
Use el siguiente comando para ejecutar el HiveQL incluido en el archivo:
beeline -u 'jdbc:hive2://headnodehost:10001/;transportMode=http' -i x.hql
Este comando ejecuta el archivo x.hql. Una vez que se completa la consulta, verá el aviso
jdbc:hive2//localhost:10001/>
.Desde el símbolo del sistema de beeline, use la siguiente consulta para comprobar que se importaron datos:
SELECT name, screen_name, count(1) as cc FROM tweets WHERE text like "%Azure%" GROUP BY name,screen_name ORDER BY cc DESC LIMIT 10;
Esta consulta devolverá un máximo de 10 tweets que contienen la palabra Azure en el texto del mensaje.
Nota
Si cambió el filtro en el script
gettweets.py
, reemplace Azure por uno de los filtros que usó.
Pasos siguientes
Ha aprendido cómo transformar un conjunto de datos JSON no estructurado en una tabla de Apache Hive estructurada. Para obtener más información sobre Hive en HDInsight, consulte los siguientes documentos: