会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Robots2
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
15
16
17
18
19
20
21
22
23
···
36
下一页
2023年7月6日
Doris建明细测试表,导入测试数据
摘要: 分区、分桶、明细表 测试用户表 CREATE TABLE user_info( dt DATE, id varchar(36) NOT NULL DEFAULT '10', user_name varchar(36), age tinyint, phone varchar(11), province
阅读全文
posted @ 2023-07-06 15:30 Robots2
阅读(359)
评论(0)
推荐(0)
2023年7月4日
接口响应指标的p99、p95、p50到底是什么?
摘要: 一、简介 我们对服务响应时间的衡量指标有Min(最小响应时间)、Max(最大响应时间)、Avg(平均响应时间)等,P99、P90也是衡量指标 二、指标简介 1、平均值Avg 其中比较常用的值就是平均值,例如平均耗时为100ms,表示服务器当前请求的总耗时/请求总数量,通过该值,我们大体能知道服务运行
阅读全文
posted @ 2023-07-04 17:23 Robots2
阅读(12014)
评论(0)
推荐(2)
2023年6月29日
Java获取数据库的列名、列数、标题、类型等信息, ResultSetMetaData
摘要: import java.sql.*; public class jdbcTest { public static void main(String[] args) throws ClassNotFoundException, SQLException { //1、加载驱动 Class.forName
阅读全文
posted @ 2023-06-29 15:45 Robots2
阅读(335)
评论(0)
推荐(0)
使用guava的cache实现缓存
摘要: 一、maven <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
阅读全文
posted @ 2023-06-29 10:05 Robots2
阅读(84)
评论(0)
推荐(0)
2023年6月27日
calcite-avatica数据传输时对日期类型压缩,导致客户端展示数据异常问题排查
摘要: 一、背景 用户使用如下sql来获取周开始和结束时间,直连presto查询该sql,得到的week_start=2019-12-30,而通过calcite-avatica查询出结果为week_start=2019-12-29. 日期相差一天。 with week_array as ( select s
阅读全文
posted @ 2023-06-27 18:05 Robots2
阅读(141)
评论(0)
推荐(0)
2023年6月22日
记一次腾讯云轻量级服务器安装mysql配置完成后,外网无法访问问题
摘要: 一、配置信息正常 1、防火墙配置通过 2、mysql端口正常启动netstat -antlp | grep 3306 3、配置都正常,但是telnet访问不通超时Operation timed out telnet 124.223.98.224 3306 Trying 124.223.98.224.
阅读全文
posted @ 2023-06-22 13:06 Robots2
阅读(522)
评论(0)
推荐(0)
2023年6月16日
Presto-JDBC使用
摘要: 一、简介 PrestoConnection并不能提供一个持久的Socket连接,而是创建一个OkHttpClient与Presto按照HTTP1.1协议进行通信,并且PrestoConnection仅保存一些基本信息(catalog、schema等) 二、使用方式 1、建立连接 和传统的JDBC方式
阅读全文
posted @ 2023-06-16 14:39 Robots2
阅读(444)
评论(0)
推荐(0)
2023年6月13日
微众银行开源大数据开发平台组件
摘要: Apache Linkis(incubating) 计算中间件 https://github.com/apache/incubator-linkisDataSphereStudio 一站式数据应用开发管理门户 https://github.com/WeBankFinTech/DataSphereSt
阅读全文
posted @ 2023-06-13 18:11 Robots2
阅读(245)
评论(0)
推荐(0)
2023年6月8日
FLink处理函数ProcessFunction、KeyedProcessFunction、ProcessWindowFunction、 ProcessAllWindowFunction
摘要: 一、处理函数简介 在底层,我们可以不定义任何具体的算子(比如 map,filter,或者 window),而只是提炼出一个统一的“处理”(process)操作——它是所有转换算子的一个概括性的表达,可以自定义处理逻辑,所以这一层接口就被叫作“处理函数”(process function)。在处理函数
阅读全文
posted @ 2023-06-08 11:00 Robots2
阅读(1393)
评论(0)
推荐(0)
2023年6月2日
FLink写入Clickhouse优化
摘要: 一、背景 ck因为有合并文件操作,适合批量写入。如单条插入则速度太慢 二、Flink写入ck优化 改为分批插入,代码如下 DataStream<Row> stream = ... stream.addSink(JdbcSink.sink( "INSERT INTO mytable (col1, co
阅读全文
posted @ 2023-06-02 15:01 Robots2
阅读(901)
评论(0)
推荐(0)
上一页
1
···
15
16
17
18
19
20
21
22
23
···
36
下一页
公告