July 5, 2021
elasticsearch
虽然Elasticsearch仅需要很少的配置,但有许多设置需要手动配置,并且在进入生产之前绝对必须进行配置。
path.data 和 path.logscluster.namenode.namebootstrap.memory_locknetwork.hostdiscovery.zen.p ...
Read more
July 5, 2021
elasticsearch
创建索引12345678910111213141516171819202122232425262728293031PUT customer{ "mappings":{ "properties":{ ...
Read more
July 5, 2021
elasticsearch
cat API集群健康状态GET _cat/health?v&pretty
12epoch timestamp cluster status node.total node.data shards pri relo init unassign pending_ ...
Read more
July 5, 2021
elasticsearch
首先安装elk推荐大家到elasic中文社区去下载 👉 【传送】⚠️ elastcisearch | logstash | kibana 的版本最好保持一直,否则会出现很多坑的,切记!
安装ELK的步骤这里就不做介绍了,可以查看 👉 【TODO】
下载安装canal-adaptercan ...
Read more
July 5, 2021
MySQL
开启binlog[mysqld]log-bin=mysql-bin #添加这一行就okbinlog-format=ROW #选择row模式server_id=1 #配置mysql replaction需要定义,不能和canal的slaveId重复
查看binlog状态mysql> ...
Read more
July 5, 2021
MySQL
binlog相关命令mysql> show variables like 'binlog_format';
12345+---------------+-------+| Variable_name | Value |+---------------+-------+| ...
Read more
July 4, 2021
Apache Flink
mac 安装 flink1、执行 brew install apache-flink 命令
123456789gaolei:/ gaolei$ brew install apache-flinkUpdating Homebrew...==> Auto-updated Homebrew! ...
Read more
July 4, 2021
Apache Flink
官方地址请戳👉 【传送】
Apache Flink is a framework and distributed processing engine for stateful computations over unbounded and bounded data streams ...
Read more
July 4, 2021
Apache Flink
Flink运行时组件
JobManager (作业管理器) JobManager 具有许多与协调 Flink 应用程序的分布式执行有关的职责:它决定何时调度下一个 task(或一组 task)、对完成的 task 或执行失败做出反应、协调 checkpoint、并且协调从失败中恢复等等。这个 ...
Read more
July 4, 2021
TCP
拥塞避免拥塞控制的慢启动是以指数方式快速的通过试探来扩大拥塞窗口的,但是一旦发生网络丢包,则肯定是很多报文段都会都是,因为窗口时称被增长的;为了解决这种问题,需要引入– 拥塞避免
什么是拥塞避免拥塞避免为了解决慢启动下,当拥塞窗口超出网络带宽时发生的大量丢包问题,它提出一个「慢启动阈值」的概 ...
Read more