(1)mysql数据导入hbase
如此,就完成了把mysql导入了hbase。
Hive中的Null在底层是以“\N”来存储,而MySQL中的Null在底层就是Null,直接导入Hive会把null识别为字符串,为了保证数据两端的一致性。在导出数据时采用--input-null-string和--input-null-non-string两个参数。导入数据时采用--null-string和--null-non-string。Hive建表的时候null值转为空字符串
在application.properties写好连接池配置,SessionFactoryConfig.class 中dataSource可以直接注入。application.properties文件为:
spring.datasource.name = test
spring.datasource.url = jdbc:mysql://localhost:3306/test
spring.datasource.username = test
spring.datasource.password = 123456
spring.datasource.type = com.alibaba.druid.pool.DruidDataSource
spring.datasource.driver-class-name = com.mysql.jdbc.Driver
spring.datasource.filters = stat
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)