首页
编程基础
系统
家庭
个人
友情链接
申请友情链接
七七
累计撰写
153
篇文章
累计创建
34
个分类
累计收到
0
条评论
导航
首页
编程基础
系统
家庭
个人
友情链接
申请友情链接
目录
生活学习记录
JAVA8 ArrayBloackingQueue源码分析
2024-03-12 16:59
118
0
0
35.8℃
Java
编程基础
构造函数用于创建一个带有给定的(固定)容量和默认访问策略的 ArrayBlockingQueue。 public ArrayBlockingQueue(int capacity, boolean fair) { // 初始容量必须大于0 if (capacity <= 0) throw new Il
kubernetes系列:(二)、kubernetes部署mysql(单节点)
2024-03-12 16:59
165
0
0
40.5℃
容器环境
系统
from https://www.cnblogs.com/haoprogrammer/p/10827287.html 一、环境说明 kubernetes 1.13.1 docker 18.06.1-ce mysql 5.7 一、创建mysql-pv.yaml,用来将mysql存储的数据放到宿主
Mysql解压版 Centos安装
2024-03-12 16:59
120
0
0
36.0℃
服务搭建
系统
1.install #!/bin/bash /mysql/bin/mysql_install_db –user=service –basedir=/mysql/ –datadir=/mysql_data/ 2.init #!/bin/bash nohup /mysql/bin/mysqld –dat
Scala try-with-resources
2024-03-12 16:58
78
0
0
31.8℃
其他语言
编程基础
def using[A, B <: {def close() : Unit}](closeable: B)(f: B => A): A = try { f(closeable) } finally { closeable.close() } 用法
常用排序算法JAVA实现
2024-03-12 16:58
105
0
0
34.5℃
算法
编程基础
import java.util.Arrays; public class Sort { public static int[] nums = {49, 38, 65, 97, 76, 13, 27, 49, 78, 34, 12, 64, 5, 4, 62, 99, 98, 54, 56
javax Filter实现重定向
2024-03-12 16:58
84
0
0
32.4℃
Java
编程基础
public class ProxyFilter implements Filter { @Override public void init(FilterConfig filterConfig) { } @Override publ
Hive常用语法
2024-03-12 16:58
51
0
0
29.1℃
数仓开发
数据
动态分区导入 set hive.exec.dynamici.partition=true; set hive.exec.dynamic.partition.mode=nonstrict; 随机范围日期 select cast(rand()*(1561910400-1514736000)+151473
apache kylin streaming table
2024-03-12 16:58
107
0
0
34.7℃
大数据
数据
1. 无法找到 org.apache.kafka.clients.consumer.Consumer 确认kylin-server的服务器上安装了kafka,且kafka对应的版本为 kylin中依赖的版本 kafka-2.11_1.0.0 由于此版本无法找到,更高版本的是否支持未验证 You ne
Code for parquet writer
2024-03-12 16:58
206
0
0
44.6℃
大数据
数据
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
165
0
0
40.5℃
大数据
数据
/* * 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
上一页
下一页
1
…
9
10
11
12
13
14
15
弹