博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
phoenix java API
阅读量:5776 次
发布时间:2019-06-18

本文共 3355 字,大约阅读时间需要 11 分钟。

hot3.png

package cn.bsoft.phoenix;

 

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

import java.util.UUID;

 

/**

*

*

* ZLH

* :2017年3月10日

*

*/

public class PhoenixDAOImpl {

 

Connection conn = null;

Statement stmt = null;

 

/**

* 获取连接

*

*/

public Connection getConnection() {

 

String driver = "org.apache.phoenix.jdbc.PhoenixDriver";

String url = "jdbc:phoenix:hadoop01:2181";

 

try {

Class.forName(driver);

} catch (ClassNotFoundException e) {

e.printStackTrace();

}

 

if (conn == null) {

try {

conn = DriverManager.getConnection(url);

} catch (SQLException e) {

e.printStackTrace();

}

}

return conn;

}

 

/**

* 插入数据

*/

public void upsertTable() {

conn = getConnection();

try {

stmt = conn.createStatement();

for (int i = 0; i < 20000; i++) {

String rowkey = UUID.randomUUID().toString().replaceAll("-", "");

String sql = "upsert into ZLHTEST_EHRMAIN values('"

+ rowkey

+ "',"+2222222+i+",'dddd"+i+"dddd','sssss','aqqqqqa','ccccccccc','sssssssss')";

stmt.executeUpdate(sql);

conn.commit();

System.out.println("第" + i + "条插入成功");

}

// String sql = "upsert into ZLHTEST_EHRMAIN values('5654a722d8c071633aaae9437ab15fe218d383562c',2222222,'dddddddd','sssss','aqqqqqa','ccccccccc','sssssssss')";

// stmt.executeUpdate(sql);

// conn.commit();

// System.out.println("插入成功");

} catch (SQLException e) {

e.printStackTrace();

} finally {

try {

stmt.close();

conn.close();

} catch (SQLException e) {

e.printStackTrace();

}

}

}

 

/**

* 批量插入

*/

public void upsertBatch() {

PreparedStatement pstmt = null;

conn = getConnection();

long start = System.currentTimeMillis();

try {

conn.setAutoCommit(false);

String sql = "upsert into ZLHTEST_EHRMAIN values(?,?,?,?,?,?,?)";

pstmt = conn.prepareStatement(sql);

for (int i = 0; i < 20000; i++) {

String rowkey = UUID.randomUUID().toString().replaceAll("-", "");

pstmt.setString(1, rowkey+i);

pstmt.setLong(2, 33+i);

pstmt.setString(3, "asfsdffds");

pstmt.setString(4, "sdfggg");

pstmt.setString(5, "sdfff");

pstmt.setString(6, "safgfg");

pstmt.setString(7, "sfdghjjjj");

if(i%1000==0){

pstmt.executeBatch();

}

}

pstmt.executeBatch();

conn.commit();

long end = System.currentTimeMillis();

long tm = end - start;

System.out.println("总共使用时间"+tm);

} catch (SQLException e) {

e.printStackTrace();

} finally {

try {

pstmt.close();

conn.close();

} catch (SQLException e) {

e.printStackTrace();

}

}

}

public void queryAll() {

PreparedStatement pstmt = null;

conn = getConnection();

long start = System.currentTimeMillis();

try {

conn.setAutoCommit(false);

String sql = "select * from ZLHTEST_EHRMAIN limit 5";

pstmt = conn.prepareStatement(sql);

ResultSet rset = pstmt.executeQuery(sql);

while(rset.next()){

System.out.println(rset.getString(1)+" "+rset.getString(2)+" "+rset.getString(3)+" "+rset.getString(4)+" "+rset.getString(5)+" "+rset.getString(6)+" "+rset.getString(7));

}

long end = System.currentTimeMillis();

long tm = end - start;

System.out.println("总共使用时间"+tm);

} catch (SQLException e) {

e.printStackTrace();

} finally {

try {

pstmt.close();

conn.close();

} catch (SQLException e) {

e.printStackTrace();

}

}

}

public static void main(String[] args) {

// new PhoenixDAOImpl().upsertTable();

// new PhoenixDAOImpl().upsertBatch();

new PhoenixDAOImpl().queryAll();

}

}

 

转载于:https://my.oschina.net/zlhblogs/blog/879816

你可能感兴趣的文章
关于EXPORT_SYMBOL的作用浅析
查看>>
成功的背后!(给所有IT人)
查看>>
在SpringMVC利用MockMvc进行单元测试
查看>>
Nagios监控生产环境redis群集服务战
查看>>
Angular - -ngKeydown/ngKeypress/ngKeyup 键盘事件和鼠标事件
查看>>
Android BlueDroid(一):BlueDroid概述
查看>>
Java利用httpasyncclient进行异步HTTP请求
查看>>
宿舍局域网的应用
查看>>
html代码究竟什么用途
查看>>
oracle的substr函数的用法
查看>>
Hadoop HDFS编程 API入门系列之路径过滤上传多个文件到HDFS(二)
查看>>
Nginx反向代理,负载均衡,redis session共享,keepalived高可用
查看>>
CentOS7 yum 安装git
查看>>
三元表达式之理解/jquery源代码分析之$.inArray实现
查看>>
STM32 mdk软件仿真时过不去时钟的问题
查看>>
Spark Streaming概念学习系列之Spark Streaming容错
查看>>
单例模式
查看>>
用友网络陈强兵:企业互联网需解决五大问题
查看>>
SMA推出Powerwall兼容Sunny Boy Storage逆变器
查看>>
云路由 vyatta 体验(二)NAT
查看>>