首页
编程基础
系统
家庭
个人
友情链接
申请友情链接
七七
累计撰写
155
篇文章
累计创建
34
个分类
累计收到
0
条评论
导航
首页
编程基础
系统
家庭
个人
友情链接
申请友情链接
目录
生活学习记录
Code for parquet writer
2024-03-12 16:58
28
0
0
26.8℃
大数据
数据
import com.sf.presto.jdbc.internal.airlift.slice.Slice; import com.sf.presto.jdbc.internal.airlift.slice.Slices; import org.apache.hadoop.conf.Configu
Code for Presto TestCase
2024-03-12 16:58
18
0
0
25.8℃
大数据
数据
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may o
CentOS7 无法启动 进入emergency mode
2024-03-12 16:58
13
0
0
25.3℃
服务搭建
系统
原因: 在虚拟机中选择了更新并关机 导致 CentOS7 无法启动,进入紧急模式,enter emergency mode 根据提示查看日志,发现报错:Failed to mount /sysroot 根据,老外的网站提供的线索: 执行这个命令 xfs_repair -v -L /dev/dm-0
Guava使用
2024-03-12 16:58
27
0
0
26.7℃
常用工具
后端开发
版本差异 1x. 2x. Objects.toStringHelper MoreObjects.toStringHelper HashFunction.hashString(String) HashFunction.hashString(String,Charset) Hasher.putStrin
Centos开机自动连接网络
2024-03-12 16:58
19
0
0
25.9℃
服务搭建
系统
sudo vim /etc/sysconfig/network-scripts/ifcfg-ens33 将 ONBOOT=no 改为 ONBOOT=yes
HBASE Shell报错
2024-03-12 16:58
24
0
0
26.4℃
大数据
数据
错误如下 NativeException: java.io.IOException: java.lang.reflect.InvocationTargetException initialize at /usr/local/hadoop/hbase-release/lib/ruby/hbase/
Apache Kylin 2.6.1 源码编译安装
2024-03-12 16:58
23
0
0
26.3℃
大数据
数据
编译环境 ubuntu 16.04 依赖准备 jdk maven nodejs 准备源码 https://github.com/apache/kylin/releases wget https://github.com/apache/kylin/archive/kylin-2.6.1.tar.gz
DUBBO使用异常解析
2024-03-12 16:57
7
0
0
24.7℃
web开发
前端编程
无法Catch 自定义Exception 我们的系统 采用 springboot+dubbo 前后端分离 分为common provier controller api 四个模块 common层存放公共的代码 在 provider 抛出 自定义异常 extends RuntimeException
mysql使用
2024-03-12 16:57
24
0
0
26.4℃
数据库
数据
1.查询正在commit的事务 查询 正在执行的事务: SELECT * FROM information_schema.INNODB_TRX 查看正在锁的事务 SELECT * FROM INFORMATION_SCHEMA.INNODB_LOCKS; 查看等待锁的事务 SELECT * FROM
String.format使用
2024-03-12 16:57
8
0
0
24.8℃
Java
编程基础
1.要替换的字符串中存在% 对百分比符号进行格式化: 百分比符号“%”是特殊格式的一个前缀。需要转义字符的,在这里转义字符不是”\”,而是”%”。例如 输出一个“12%”: System.out.println(String.format(“%1$d%%”, 12));
上一页
下一页
1
…
10
11
12
13
14
15
16
弹