问题描述:
现在公司需要将集群中一台机器上的HIVE表数据同步至另一个集群一台机器的MySQL表中,且这两个机器的网段是不连通的。如何实现?
问题分析:
由于两台机器不连通,所以无法通过HIVE表所在集群中的Sqoop直接将数据同步至MySQL表。但是HIVE表所在集群有ftp服务,且MySQL表所在集群有一台机器可以访问外网。
解决思路:
具体涉及到的程序:
#!/bin/bash
source ~/.bash_profile
directory='/data/X. T. Xiao/HiveToMySQL/'
if [ -d $directory ]
then
echo "目录存在!"
else
echo “目录不存在!”
mkdir $directory
fi
cd $directory
rm -rf ./*
hive -e "select distinct cnt_date, click_cnt, play_cnt, user_cnt, recommended_cnt, click_percent, play_percent, per_capita_use, type from tag_model.t_live_on_demand" >> /data/X. T. Xiao/HiveToMySQL/JHTJ_tongbu.txt
hive -e "select distinct cnt_date, recommended_cnt, play_cnt, boot_cnt, play_percent, recommended_percent, type from tag_model.t_boot_live" >> /data/X. T. Xiao/HiveToMySQL/KJTJ_tongbu.txt
hive -e "select distinct cnt_date, recommended_cnt, click_cnt, user_cnt, click_percent, per_capita_use, type from tag_model.t_vip_film" >> /data/X. T. Xiao/HiveToMySQL/VIPTS_tongbu.txt
hive -e "select distinct cnt_date, recommended_cnt, click_cnt, user_cnt, click_percent, per_capita_use, type from tag_model.t_binge_watching" >> /data/X. T. Xiao/HiveToMySQL/ZJTS_tongbu.txt
hive -e "select distinct cnt_date, click_cnt, play_cnt, user_cnt, recommended_cnt, click_percent, play_percent, per_capita_use, type from tag_model.t_search_individuation" >> /data/X. T. Xiao/HiveToMySQL/QJTJ_tongbu.txt
echo 'Loading hive data to Local is OK !'
cd /data/X. T. Xiao/
rm -rf HiveToMySQL.tar.gz
cd /data/X. T. Xiao/
tar zcvf HiveToMySQL.tar.gz HiveToMySQL
echo 'Data compressed OK !'
* Step two:本地压缩文件上传至ftp站点, ftp_tran.py
#-*-coding:utf-8-*-
import sys
__author__ = 'X. T. Xiao'
#encoding=utf8
from ftplib import FTP #加载ftp模块
import sys
IP = '5.210.10.12'
user = 'X. T. Xiao'
password = 'NjExTllZGFmOTQ5'
def put_file(filename,path):
ftp=FTP() #设置变量
ftp.set_debuglevel(2) #打开调试级别2,显示详细信息
ftp.connect(IP) #连接的ftp sever和端口
ftp.login(user,password)#连接的用户名,密码
#print ftp.getwelcome() #打印出欢迎信息
ftp.storbinary('STOR %s'%filename, open(path, 'rb',8192))
print('success')
ftp.close()
if __name__ == '__main__':
put_file('HiveToMySQL.tar.gz', '/data/X. T. Xiao/HiveToMySQL.tar.gz')
* Step three:从ftp站点下载并解压, tarToLocal.sh
#!/bin/bash
directory='/home/ftpdata/ftp_test/'
if [ -d $directory ]
then
echo "目录存在!"
else
echo “目录不存在!”
mkdir $directory
fi
cd $directory
rm -rf ./HiveToMySQL
wget ftp://5.210.10.12:21/HiveToMySQL.tar.gz --ftp-user=X. T. Xiao --ftp-password=NjExTllZGFmOTQ5 -r
cd $directory
tar -xzf ./5.210.10.12/HiveToMySQL.tar.gz
rm -rf /home/ftpdata/ftp_test/5.210.10.12
* Step four:将本地文件通过jdbc插入到MySQL库, txtToMySQL.java
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Connection;
import java.sql.Statement;
public class TxtToMySql {
/**
* 读取聚合推荐HIVE -e的txt结果,按行读入并处理数据,将数据插入至MySQL的recommend库t_live_on_demand表
*
* @param fileName
* 文件名
* @throws SQLException
*/
public static void insertIntoJHTJTable(String fileName) throws SQLException {
Connection conn = null;
String sql;
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();// 动态加载mysql驱动
System.out.println("MySQL driver is prepared OK !");
// 一个Connection代表一个数据库连接
conn = DriverManager.getConnection(
"jdbc:mysql://17.7.113.133:8096/recommend", "recommend",
"rcmnd20151027"); // 链接本地MYSQL
// Statement里面带有很多方法,比如executeUpdate可以实现插入,更新和删除等
Statement stmt = conn.createStatement();
sql = "delete from t_live_on_demand";
stmt.executeUpdate(sql);
File file = new File(fileName);
BufferedReader reader = null;
String[] arrs = null;
try {
reader = new BufferedReader(new FileReader(file));
String tempString = null;
// 一次读入一行,直到文件结束
while ((tempString = reader.readLine()) != null) {
if (tempString.indexOf("[GC") != -1)
continue;
arrs = tempString.split("\t");
sql = "insert into t_live_on_demand"
+ "(cnt_date, click_cnt, play_cnt, user_cnt, recommended_cnt, click_percent, play_percent, per_capita_use, type) "
+ "values " + "(" + arrs[0].replace("-", "") + ","
+ arrs[1] + "," + arrs[2] + "," + arrs[3] + ","
+ arrs[4] + "," + arrs[5] + "," + arrs[6] + ","
+ arrs[7] + "," + arrs[8] + ")";
// System.out.println(sql);
stmt.executeUpdate(sql);
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
} catch (SQLException e) {
System.out.println("MySQL操作错误");
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
conn.close();
}
}
/**
* 读取vip推送HIVE -e的txt结果,按行读入并处理数据,将数据插入至MySQL的recommend库t_vip_film表
*
* @param fileName
* 文件名
* @throws SQLException
*/
public static void insertIntoVIPTSTable(String fileName)
throws SQLException {
Connection conn = null;
String sql;
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();// 动态加载mysql驱动
System.out.println("MySQL driver is prepared OK !");
// 一个Connection代表一个数据库连接
conn = DriverManager.getConnection(
"jdbc:mysql://17.7.113.133:8096/recommend", "recommend",
"rcmnd20151027"); // 链接本地MYSQL
// Statement里面带有很多方法,比如executeUpdate可以实现插入,更新和删除等
Statement stmt = conn.createStatement();
sql = "delete from t_vip_film";
stmt.executeUpdate(sql);
File file = new File(fileName);
BufferedReader reader = null;
String[] arrs = null;
try {
reader = new BufferedReader(new FileReader(file));
String tempString = null;
// 一次读入一行,直到文件结束
while ((tempString = reader.readLine()) != null) {
if (tempString.indexOf("[GC") != -1)
continue;
arrs = tempString.split("\t");
sql = "insert into t_vip_film"
+ "(cnt_date, recommended_cnt, click_cnt, user_cnt, click_percent, per_capita_use, type) "
+ "values " + "(" + arrs[0].replace("-", "") + ","
+ arrs[1] + "," + arrs[2] + "," + arrs[3] + ","
+ arrs[4] + "," + arrs[5] +"," + arrs[6] + ")";
// System.out.println(sql);
stmt.executeUpdate(sql);
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
} catch (SQLException e) {
System.out.println("MySQL操作错误");
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
conn.close();
}
}
/**
* 读取追剧推送HIVE -e的txt结果,按行读入并处理数据,将数据插入至MySQL的recommend库t_binge_watching表
*
* @param fileName
* 文件名
* @throws SQLException
*/
public static void insertIntoZJTSTable(String fileName) throws SQLException {
Connection conn = null;
String sql;
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();// 动态加载mysql驱动
System.out.println("MySQL driver is prepared OK !");
// 一个Connection代表一个数据库连接
conn = DriverManager.getConnection(
"jdbc:mysql://17.7.113.133:8096/recommend", "recommend",
"rcmnd20151027"); // 链接本地MYSQL
// Statement里面带有很多方法,比如executeUpdate可以实现插入,更新和删除等
Statement stmt = conn.createStatement();
sql = "delete from t_binge_watching";
stmt.executeUpdate(sql);
File file = new File(fileName);
BufferedReader reader = null;
String[] arrs = null;
try {
reader = new BufferedReader(new FileReader(file));
String tempString = null;
// 一次读入一行,直到文件结束
while ((tempString = reader.readLine()) != null) {
if (tempString.indexOf("[GC") != -1)
continue;
arrs = tempString.split("\t");
sql = "insert into t_binge_watching"
+ "(cnt_date, recommended_cnt, click_cnt, user_cnt, click_percent, per_capita_use, type) "
+ "values " + "(" + arrs[0].replace("-", "") + ","
+ arrs[1] + "," + arrs[2] + "," + arrs[3] + ","
+ arrs[4] + "," + arrs[5] + "," + arrs[6] + ")";
// System.out.println(sql);
stmt.executeUpdate(sql);
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
} catch (SQLException e) {
System.out.println("MySQL操作错误");
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
conn.close();
}
}
/**
* 读取开机直播推荐HIVE -e的txt结果,按行读入并处理数据,将数据插入至MySQL的recommend库t_boot_live表
*
* @param fileName
* 文件名
* @throws SQLException
*/
public static void insertIntoKJTJTable(String fileName) throws SQLException {
Connection conn = null;
String sql;
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();// 动态加载mysql驱动
System.out.println("MySQL driver is prepared OK !");
// 一个Connection代表一个数据库连接
conn = DriverManager.getConnection(
"jdbc:mysql://17.7.113.133:8096/recommend", "recommend",
"rcmnd20151027"); // 链接本地MYSQL
// Statement里面带有很多方法,比如executeUpdate可以实现插入,更新和删除等
Statement stmt = conn.createStatement();
sql = "delete from t_boot_live";
stmt.executeUpdate(sql);
File file = new File(fileName);
BufferedReader reader = null;
String[] arrs = null;
try {
reader = new BufferedReader(new FileReader(file));
String tempString = null;
// 一次读入一行,直到文件结束
while ((tempString = reader.readLine()) != null) {
if (tempString.indexOf("[GC") != -1)
continue;
arrs = tempString.split("\t");
sql = "insert into t_boot_live"
+ "(cnt_date, recommended_cnt, play_cnt, boot_cnt, play_percent, recommended_percent, type) "
+ "values " + "(" + arrs[0].replace("-", "") + ","
+ arrs[1] + "," + arrs[2] + "," + arrs[3] + ","
+ arrs[4] + "," + arrs[5] + "," + arrs[6] + ")";
// System.out.println(sql);
stmt.executeUpdate(sql);
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
} catch (SQLException e) {
System.out.println("MySQL操作错误");
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
conn.close();
}
}
/**
* 读取搜索页推荐HIVE -e的txt结果,按行读入并处理数据,将数据插入至MySQL的recommend库t_search_individuation表
*
* @param fileName
* 文件名
* @throws SQLException
*/
public static void insertIntoQJTJTable(String fileName) throws SQLException {
Connection conn = null;
String sql;
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();// 动态加载mysql驱动
System.out.println("MySQL driver is prepared OK !");
// 一个Connection代表一个数据库连接
conn = DriverManager.getConnection(
"jdbc:mysql://17.7.113.133:8096/recommend", "recommend",
"rcmnd20151027"); // 链接本地MYSQL
// Statement里面带有很多方法,比如executeUpdate可以实现插入,更新和删除等
Statement stmt = conn.createStatement();
sql = "delete from t_search_individuation";
stmt.executeUpdate(sql);
File file = new File(fileName);
BufferedReader reader = null;
String[] arrs = null;
try {
reader = new BufferedReader(new FileReader(file));
String tempString = null;
// 一次读入一行,直到文件结束
while ((tempString = reader.readLine()) != null) {
if (tempString.indexOf("[GC") != -1)
continue;
arrs = tempString.split("\t");
sql = "insert into t_search_individuation"
+ "(cnt_date, click_cnt, play_cnt, user_cnt, recommended_cnt, click_percent, play_percent, per_capita_use, type) "
+ "values " + "(" + arrs[0].replace("-", "") + ","
+ arrs[1] + "," + arrs[2] + "," + arrs[3] + ","
+ arrs[4] + "," + arrs[5] + "," + arrs[6] + ","
+ arrs[7] + "," + arrs[8] + ")";
// System.out.println(sql);
stmt.executeUpdate(sql);
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
} catch (SQLException e) {
System.out.println("MySQL操作错误");
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
conn.close();
}
}
public static void main(String[] args) throws SQLException {
String fileName1 = "/home/ftpdata/ftp_test/data/xinting.xiao/HiveToMySQL/JHTJ_tongbu.txt";
TxtToMySql.insertIntoJHTJTable(fileName1);
System.out.println("JHTJ is OK!");
String fileName2 = "/home/ftpdata/ftp_test/data/xinting.xiao/HiveToMySQL/KJTJ_tongbu.txt";
TxtToMySql.insertIntoKJTJTable(fileName2);
System.out.println("KJTJ is OK!");
String fileName3 = "/home/ftpdata/ftp_test/data/xinting.xiao/HiveToMySQL/QJTJ_tongbu.txt";
TxtToMySql.insertIntoQJTJTable(fileName3);
System.out.println("QJTJ is OK!");
String fileName4 = "/home/ftpdata/ftp_test/data/xinting.xiao/HiveToMySQL/VIPTS_tongbu.txt";
TxtToMySql.insertIntoVIPTSTable(fileName4);
System.out.println("VIPTS is OK!");
String fileName5 = "/home/ftpdata/ftp_test/data/xinting.xiao/HiveToMySQL/ZJTS_tongbu.txt";
TxtToMySql.insertIntoZJTSTable(fileName5);
System.out.println("ZJTS is OK!");
}
}
* Step five:同步,部署定时任务
crontab -e
5 1 * * * /bin/bash ./HiveToMySQL.sh
5 3 * * * python ./ftp_tran.py
crontab -e
15 3 * * * /bin/bash ./tarToLocal.sh
35 3 * * * java -jar txtToMySQL.jar