摘要:
Nacos Nacos地址 阅读全文
摘要:
任务异步执行 // 定时任务设计思路: // 1、先把任务修改为执行中即可结束此方法,同时异步调用任务执行方法 // 2、定时任务扫描执行中的任务,遍历任务执行 private ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecuto 阅读全文
摘要:
spark部署示例 官网 https://spark.apache.org/ # spark版本文档列表 https://spark.apache.org/docs/ # 查看指定版本文档 https://spark.apache.org/docs/2.4.7/ # 下载安装包 https://sp 阅读全文
摘要:
官网相关 <!--官网地址--> https://flink.apache.org/ <!--jdbc 驱动官网,1.18版本开始才支持jdbc driver连接--> https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/d 阅读全文
摘要:
##### window使用telnet ``` https://www.cnblogs.com/cxygg/p/16724661.html netstat -ano | findstr PORT 在任务管理器中查询PID对应的进程信息 tasklist | findstr PID 查看是哪个进程或 阅读全文
摘要:
参考文档 http://blog.csdn.net/forezp/article/details/70148833 SpringCloud02 SpringCloud03 SpringCloud04 SpringCloud05 SpringCloud06 SpringCloud07 SpringCl 阅读全文
摘要:
#### 官网地址 ``` 官方指南 https://github.com/ctripcorp/apollo/wiki/%E5%88%86%E5%B8%83%E5%BC%8F%E9%83%A8%E7%BD%B2%E6%8C%87%E5%8D%97# ``` #### 安装 ``` #多环境部署时: 阅读全文
摘要:
1、方式一 使用redission的特性来控制集群部署时的多次调用 缺点:单机的程序会在此处等待,导致其他任务没办法执行,原因是@Scheduled默认是单线程调度的 // 启动延时30秒执行,之后每隔60秒执行一次 @Scheduled(initialDelay = 30 * 1000, fixe 阅读全文
摘要:
mybatis代理类创建 DefaultSqlSession #getMapper MapperRegistry #getMapper MapperProxyFactory #newInstance Proxy.newProxyInstance(, , new MapperProxy(new Map 阅读全文
摘要:
##### 文档地址 [elasticsearch2](https://www.cnblogs.com/rbcd/articles/17527328.html) [elasticsearch高级检索](https://www.cnblogs.com/rbcd/articles/17527413.ht 阅读全文
摘要:
##### es官网下载安装 ``` https://www.elastic.co/cn/downloads/past-releases#kibana ``` ##### 让外网可访问主要修改文件 config/kibana.yml,添加配置 ``` server.host: "0.0.0.0" e 阅读全文
摘要:
##### oracle序列 ``` create sequence id_seq; select id_seq.nextval from dual; select id_seq.currval from dual; ``` ##### 分页查询 ``` 分页查询 SELECT * FROM (SE 阅读全文
摘要:
##### jenkins安装包下载 ##### Jenkins自动触发配置 ``` 位置:Build Triggers -> Poll SCM 周一至周五每天8点13点构建 H 8,13 * * 1-5 每天8点13点构建 H 8,13 * * * 每2分钟检查下git仓库代码是否有变化,有变化时 阅读全文
摘要:
下载arthas全量包 https://arthas.aliyun.com/doc/download.html 启动 java -Dfile.encoding=utf-8 -jar arthas-boot.jar 启动后选择需要查看的项目进程 watch的使用文档 https://arthas.al 阅读全文
摘要:
azkaban部署 azkaban-web/bin/start-web.sh azkaban-executor/bin/start-exec.sh 界面登录密码配置文件 azkaban-web/conf/azkaban-users.xml 阅读全文
摘要:
netty 同步阻塞(blocking-IO) BIO 同步非阻塞(non-blocking-IO) NIO 异步非阻塞(asynchronous-non-blocking-IO) AIO 是一个异步的 基于事件驱动的网络应用框架 Netty定义 它可以用来开发高性能服务端和客户端 Buffer(缓 阅读全文
摘要:
动态规划:最优子结构、边界、状态转移方程 阅读全文
摘要:
spring MVC DispatcherServlet #doDispatch -> HandlerExecutionChain -> HandlerAdapter -> HandlerExecutionChain.pre -> HandlerAdapter.handle -> HandlerEx 阅读全文
摘要:
GBase8a数据库安装 GBase8a数据库命令 mysql用户、授权 Iceberg数据库命令 dm命令 pg官方文档 pg库安装步骤 pg命令 mysql官方文档 gauss数据库命令 表编辑 视图编辑 存储过程编辑 常用命令 1、查询所有的数据库:show databases; 2、查询当前 阅读全文
摘要:
启动脚本 JVM_OPTS="-server -Xms2g -Xmx2g -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=$PRG/logs -agentlib:j 阅读全文
摘要:
English EnglishDemo 面试题 原码、反码、补码 负数的反码是它的原码除符号位,按位取反。 负数的补码等于其反码+1。 正数的反码、补码都是自身; 集合类的转换公共类参考地址 https://blog.csdn.net/sinat_34241861/article/details/1 阅读全文
摘要:
Hbase伪分布式安装 1.下载hive安装包 https://archive.apache.org/dist/hbase/2.1.0/hbase-2.1.0-bin.tar.gz 2.修改环境变量 vi /etc/profile export HIVE_HOME=/opt/hive-3.1.0-b 阅读全文
摘要:
下载安装包 https://archive.apache.org/dist/zookeeper/zookeeper-3.6.3/apache-zookeeper-3.6.3-bin.tar.gz 添加环境变量 #配置文件 /etc/profile #在最后加入 export ZOOKEEPER_HO 阅读全文
摘要:
##### 官网 ``` hub.docker.com docker官方网址 ``` ##### 参考教程 ``` https://www.jianshu.com/p/1e5c86accacb ``` ##### 安装 ``` 安装docker,出现输入的界面都按y yum install -y d 阅读全文
摘要:
hive官网 https://hive.apache.org/ 一、Hive远程数据库模式安装 1、下载hive安装包 https://archive.apache.org/dist/hive/hive-3.1.0/apache-hive-3.1.0-bin.tar.gz 2、修改环境变量 vi / 阅读全文
摘要:
idea插件路径位置 登录用户\AppData\Roaming\JetBrains\IntelliJIdea2020.3\plugins Spring Boot启动报错Lombok supports: sun/apple javac 1.6, ECJ File->Settings->Build, E 阅读全文
摘要:
java8新特性 下载jdk地址 https://www.oracle.com/technetwork/java/javase/archive-139210.html 需要登录,选择对对应版本下载安装 windows环境变量配置 添加变量 JAVA_HOME=jdk安装路径 CLASSPATH=.; 阅读全文
摘要:
下载地址 https://rocketmq.apache.org/download 单节点部署 1、修改jvm配置 RocketMQ默认的虚拟机内存较大,启动Broker如果因为内存不足失败,需要编辑如下两个配置文件,修改JVM内存大小 # 编辑bin/runbroker.sh和bin/runser 阅读全文
摘要:
##### 引用本地文章(redis安装文档) [redis安装文档](https://www.cnblogs.com/rbcd/articles/17498983.html) ##### redis官网 ``` https://redis.io/ ``` ##### 参考文件 ``` https: 阅读全文
摘要:
##### 全局变量 ``` git config --global user.name "zhangsan" 设置用户名 git config --global user.email "zhangsan@qq.com" 设置邮箱 git config --global color.ui true 阅读全文
摘要:
apache仓库地址 https://repository.apache.org/content/repositories/snapshots/ 安装 下载maven安装包 修复配置文件 conf/settings.xml 设置阿里云镜像 <mirror> <id>nexus-aliyun</id> 阅读全文
摘要:
官网地址 nginx官网 http://nginx.org/ 可转发IP、端口、路径的配置 proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; pr 阅读全文
摘要:
springboot启动 正常启动 @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, 阅读全文
摘要:
单独使用日志框架 单独使用log4j log4j/log4j2/logback/slf4j log4j.jar 单独使用log4j2 log4j-api.jar、log4j-core.jar 单独使用logback logback-classic.jar、logback-core.jar 使用slf 阅读全文
摘要:
pdf文件转为md Linux基础命令1 Linux软件安装 Linux操作练习项目 Linux磁盘管理体系1 Linux磁盘管理体系2 Linux磁盘管理故障案例与特殊符号 jdk环境变量配置 export JAVA_HOME=/usr/local/src/jdk1.8 export PATH=$ 阅读全文
摘要:
<html> <body> Welcome<br/> <input id="text" type="text" /> <button onclick="send()">Send</button> <button onclick="closeWebSocket()">Close</button> <d 阅读全文
摘要:
安全认证kerberos kerberos认证 伪分布部署 完全分布式部署示例1 完全分布式部署示例2 官网信息 # 官网 https://hadoop.apache.org/ # 指定版本文档 https://hadoop.apache.org/docs/r3.3.6/ # 单机部署文档 http 阅读全文