摘要:
必须保证有唯一索引,可以是主键索引或者组合索引 <insert id="insertOrUpdate" parameterType="java.util.List"> INSERT INTO indicators_template_detail_rep( id,indicators_name,ind 阅读全文
摘要:
//schema.xml <?xml version="1.0"?> <!DOCTYPE mycat:schema SYSTEM "schema.dtd"> <mycat:schema xmlns:mycat="http://io.mycat/"> <schema name="bds-oneacce 阅读全文
摘要:
RocketMQ搭建分为4种方式 单Master模式:风险大,宕机或重启服务不可用 多Master模式:单台宕机,整体服务不受影响,但此节点上未消费的消息在节点恢复之前不可被消费 多Master多Slave模式(异步):因为是异步复制,主备有短暂消息延迟(毫秒级),Master宕机,磁盘损坏情况下会 阅读全文
摘要:
1、pom.xml中增加RocketMQ依赖 <dependency> <groupId>org.apache.rocketmq</groupId> <artifactId>rocketmq-spring-boot-starter</artifactId> <version>2.2.2</versi 阅读全文
摘要:
1、直接下载二进制编译好的文件,并解压至指定目录(这里/usr/local) wget https://dlcdn.apache.org/rocketmq/4.9.4/rocketmq-all-4.9.4-bin-release.zip unzip rocketmq-all-4.9.4-bin-re 阅读全文
摘要:
1、idea用maven打包出现如下错误 2、解决办法,在Build,Execution,Deployment -> Build Tools -> Maven -> Runner 中添加设置VM参数 -DarchetypeCatalog=internal -Dfile.encoding=GBK 阅读全文
摘要:
1、部署springboot之前需先pull一个jdk8,如果在镜像中找不到,就会直接去线上镜像仓库中pull,我这里已就绪 [root@data-anal docker]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/j 阅读全文
摘要:
背景:我需要三台Centos7来部署分布式系统,但是只有一台Centos7,故想用Docker虚拟三台出来 1、下载Centos7镜像,通过docker search centos7查看镜像列表,用第一个。 [root@free-share local]# docker pull docker.io 阅读全文
摘要:
1、下载Docker,本人比较习惯使用二进制安装:https://download.docker.com/linux/static/stable/x86_64/docker-20.10.9.tgz wget https://download.docker.com/linux/static/stabl 阅读全文