上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 30 下一页

2020年9月14日

linux 编写服务启动单元

摘要: 服务配置文件 /usr/lib/systemd/system/nacos-server.service [Unit] Description=Nacos Config Server After=mysql.service [Service] Type=forking ExecStart=/opt/n 阅读全文

posted @ 2020-09-14 11:02 Lemo_wd 阅读(285) 评论(0) 推荐(0) 编辑

2020年7月26日

hbase 基础 —— 架构

摘要: 典型的主从架构。其中 RegionServers 负责与客户端的交互,访问数据 HMaster 负责 Region 分配,DDL(create, delete tables) 操作。 1. Regions hbase table 根据 RowKey 划分成多个 Region,Region 包含所划分 阅读全文

posted @ 2020-07-26 09:42 Lemo_wd 阅读(232) 评论(0) 推荐(0) 编辑

2020年7月25日

hbase 基础 —— 基础概念

摘要: 1. 简要介绍 HBase 是一个开源的非关系型分布式数据库(NoSQL),它参考了谷歌的 BigTable 建模,实现的编程语言为 Java。它是 Apache 软件基金会的 Hadoop 项目的一部分,运行于 HDFS 文件系统之上,为 Hadoop 提供类似于 BigTable 规模的服务,可 阅读全文

posted @ 2020-07-25 21:52 Lemo_wd 阅读(225) 评论(0) 推荐(0) 编辑

2020年7月23日

netty 的几个操作示例

摘要: 原生的 socket 编程:Java 中的 IO 与 socket 编程 [ 复习 ] 介绍 Netty 项目是一个提供异步事件驱动网络应用框架。 示例 1.discord 服务 handler public class DiscardServerHandler extends ChannelInb 阅读全文

posted @ 2020-07-23 08:00 Lemo_wd 阅读(337) 评论(0) 推荐(0) 编辑

2020年7月8日

MySQL 技巧 —— 分组后每条记录取最新

摘要: 左连接 SELECT m1.* FROM messages m1 LEFT JOIN messages m2 ON (m1.name = m2.name AND m1.id < m2.id) WHERE m2.id IS NULL; 子查询 select * from messages where 阅读全文

posted @ 2020-07-08 10:16 Lemo_wd 阅读(366) 评论(0) 推荐(0) 编辑

2020年6月27日

es 实战 —— spring boot 中使用 Elasticsearch

摘要: 一、基础配置 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifactId> </dependency> 客户端配置 阅读全文

posted @ 2020-06-27 10:07 Lemo_wd 阅读(1638) 评论(0) 推荐(0) 编辑

2020年6月26日

ELK(R) 实现分布式 Nginx 日志

摘要: ELKR 概述 ELK(R) = Elasticsearch + Logstash + Kibana (+ Redis) 是一套完整的工业级日志分析工具。 Elasticsearch 是整个日志分析系统的核心,它负责对日志数据进行分析、索引等重要工作; Logstash 则主要用于对日志数据进行初步 阅读全文

posted @ 2020-06-26 16:59 Lemo_wd 阅读(323) 评论(0) 推荐(0) 编辑

2020年6月21日

Flume 操作示例

摘要: 一、案例1之 Spool Spool 监测配置的目录下新增的文件,并将文件中的数据读取出来。需要注意两点: 拷贝到 spool 目录下的文件不可以再打开编辑。 spool 目录下不可包含相应的子目录。 配置文件 jobs/spool.conf a1.sources = r1 a1.channels 阅读全文

posted @ 2020-06-21 20:51 Lemo_wd 阅读(196) 评论(0) 推荐(0) 编辑

2020年6月15日

vbox 中 linux 网络环境配置

摘要: 安装好虚拟机后。在虚拟机关机的状态下,在该虚拟机上右键选择设置,配置网络 这里需要设置两块网卡 网卡1:用于虚拟机访问外网 网卡2:用于主机访问内网,以及内网间访问 配置主机网络 管理>主机网络管理器(我用的是 vboxnet0) 手动配置网卡,不启用 dhcp服务器 配置网卡信息 网卡1,使用 N 阅读全文

posted @ 2020-06-15 09:08 Lemo_wd 阅读(502) 评论(0) 推荐(0) 编辑

2020年5月30日

rabbitmq 延迟队列插件

摘要: 基本环境的部署请参考 RabbitMQ 入门 添加并启动该插件 wget --no-check-certificate --content-disposition https://github.com/rabbitmq/rabbitmq-delayed-message-exchange/releas 阅读全文

posted @ 2020-05-30 20:13 Lemo_wd 阅读(1582) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 30 下一页

导航