1. /**
    2. * @author itwen
    3. * @Description
    4. * @create 2021-08-05 17:34
    5. */
    6. @SpringBootTest
    7. public class Instl {
    8. @Autowired
    9. RatingMapper mapper;
    10. String path = "D:\\ratings.csv";
    11. /**
    12. * 初始化数据集
    13. *
    14. * @return 数据集
    15. * @throws IOException
    16. */
    17. List<Rating> initdata() throws IOException {
    18. BufferedReader read = new BufferedReader(new FileReader(path));
    19. Rating rating;
    20. List<Rating> ratings = new ArrayList<>();
    21. boolean sign = false;
    22. for (int i = 0; i < 300000; i++) {
    23. String line = read.readLine();
    24. StringTokenizer st = new StringTokenizer(line, ",");
    25. if (st.hasMoreTokens() && sign) {
    26. rating = new Rating();
    27. rating.setUserId(Integer.valueOf(st.nextToken().trim()));
    28. rating.setMovieId(Integer.valueOf(st.nextToken().trim()));
    29. rating.setRating(Double.valueOf(st.nextToken().trim()));
    30. rating.setTime(Integer.valueOf(st.nextToken().trim()));
    31. ratings.add(rating);
    32. } else {
    33. sign = true;
    34. }
    35. }
    36. read.close();
    37. return ratings;
    38. }
    39. /**
    40. * 单机
    41. * 采用mybatis方式Batch插入10W条 耗时=182662毫秒
    42. *
    43. * @throws IOException
    44. */
    45. @Test
    46. void inserUrlLog() throws IOException {
    47. long startTime = System.currentTimeMillis();
    48. mapper.insertUrlLog(initdata());
    49. long entTime = System.currentTimeMillis();
    50. System.out.println("当前程序耗时:" + (entTime - startTime) + "ms");
    51. }
    52. /**
    53. * 单机
    54. * 采用官方http-JDBC方式Batch插入10W条 耗时=1026毫秒
    55. * 采用官方http-JDBC方式Batch插入30W条 耗时=5217毫秒
    56. * 应注意分区数,分区越多速度越慢
    57. * 另外还有第三方优化过的http、tcp的JDBC驱动
    58. *
    59. * @throws IOException
    60. */
    61. @Test
    62. void inserCkJDBC() throws IOException, SQLException {
    63. List<Rating> initdata = initdata();
    64. String url = "jdbc:clickhouse://47.115.29.129:8123/test";
    65. ClickHouseProperties properties = new ClickHouseProperties();
    66. properties.setUser("ckadmin");
    67. properties.setPassword("zjzl@2021");
    68. ClickHouseDataSource source = new ClickHouseDataSource(url, properties);
    69. long startTime = System.currentTimeMillis();
    70. final String sql = "INSERT INTO test.ratings(userId,movieId,rating,initTime) VALUES(?,?,?,?)";
    71. // ClickHouseConnection connection = clickHouseDataSource.getConnection();
    72. // ClickHouseStatement statement = connection.createStatement();
    73. // statement.write().sql("INSERT INTO default.my_table (a,b,c)");
    74. Connection connection = source.getConnection();
    75. connection.setAutoCommit(false);
    76. PreparedStatement statement = connection.prepareStatement(sql);
    77. for (Rating rating : initdata) {
    78. statement.setLong(1, rating.getUserId());
    79. statement.setLong(2, rating.getMovieId());
    80. statement.setDouble(3, rating.getRating());
    81. statement.setLong(4, rating.getTime());
    82. statement.addBatch();
    83. }
    84. statement.executeBatch();
    85. connection.commit();
    86. statement.close();
    87. connection.close();
    88. long entTime = System.currentTimeMillis();
    89. System.out.println("当前程序耗时:" + (entTime - startTime) + "ms");
    90. }
    91. }