欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Impala 使用 (8小时 时区问题对应SQL调整)

程序员文章站 2022-03-05 14:29:18
...

1、因为Impala服务器使用的是默认时区 UTC 所以 我们使用正常的SQL 查询出来的结果 是8小时之后的  比如st = '2018-11-14 10:00:00'  得到的结果st显示是'2018-11-14 10:00:00' 但是实际对应的数据是mysql中'2018-11-14 18:00:00'的,所以where比较和最后输出时需要加上8个小时  group by 中的st 不需要加 

 

select s_type,sum(cnt) as cnt ,  st +interval 8 hour as time from train_ops.orderstatisticsrecode

where st+interval 8 hour    between '2018-11-13 12:00:00'    AND  '2018-11-13 12:00:00'

and s_type=58 and ischange=0  group by s_type ,st order by 3 desc

 

 

2、常用的时间函数  

 st + interval 8 hour  加8个小时

 st - interval 8 hour  减8个小时

 分钟 天类似 hour改成 minute 、day

 

minute(st) 获取分钟

hour(st)+8 获取小时并加上8个小时

to_date(st + interval 8 hour)获取yyyy-MM-dd 类型时间

 

from_timestamp(st,'yyyy-MM-dd') 日期转换成字符串

 

cast('2018-11-13 12:00:00'  as timestamp) 字符串转换成 日期

 

3、整合mybatis与 impala 与之前配置数据库的不同之处 

  • 不要使用事务 都是查询没有必要使用事务

  • BasicDataSource 配置要考虑90s没有交互连接就会断开

<bean id="dataSourceImpala" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${dataSourceImpala.driverClassName}"/>
<property name="url" value="${dataSourceImpala.url}"/>
    <!--配置来检测连接是否释放 释放获取一个新的连接-->
    <property name="validationQuery" value="select 1"></property>
    <property name="testOnBorrow" value="true"></property>
    <property name="testWhileIdle" value="true"></property>
    <!--每60s检查一次连接情况  因为虚IP 的Impala如果90s没有交互就会自动断开-->
    <property name="timeBetweenEvictionRunsMillis" value="60000" />
</bean>

 

相关标签: impala