摘要:
使用DockerCompose搭建4个节点,其中consul_node1、consul_node2、consul_node3为server agent;consul_node4为client agent,开放端口访问conusl ui 机器准备 模拟4台机器: | 节点名称 | ip:host |说 阅读全文
摘要:
12306 登录 环境 .NetFramework4.5 Selenium.WebDriver 3.141.0 chromedriver.exe 97.0.4692.X (从 http://chromedriver.storage.googleapis.com/index.html 下载) Craw 阅读全文
摘要:
引言 在单机环境中的并发编程中,需要用锁来保证数据的安全性。我们经常会用到synchronized,那么JVM中是如何实现synchronized的呢,在这篇文章中,我会从锁分类和锁膨胀(锁升级)的角度,会来探析一二。 为什么要有锁对象 Object lockObj = new Object(); 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Security.Cryptography; usin 阅读全文
摘要:
com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `com.travelsky.dto.av.rs.Seg` (although at least one Creator 阅读全文
摘要:
GET indexName/_search?pretty { "size": 0, "query":{ "bool":{ "must":[ { "term":{ "fieldName":"***" } } ], "must_not": [ { "term": { "fieldName": "***" 阅读全文
摘要:
ES中没有像求平均值一样,可以直接获取中位数的方法,可以使用获取某个数值字段50%的值的方法来获取。 GET applog-xmllog-2021-04-08/_search?pretty { "size": 0, "query": { "bool": { "must": [ { "term": { 阅读全文
摘要:
机器准备 模拟3台机器: | 节点名称 | ip:host |说明| | | | | | elasticsearch1 | 192.168.200.135:9300 |映射9200给kibana访问| | elasticsearch2 | 192.168.200.135:9302 || | elas 阅读全文
摘要:
mkdir /docker/kibana vi kibana.yml 输入配置: server.name: kibana # kibana的主机地址 0.0.0.0可表示监听所有IP server.host: "0.0.0.0" # kibana访问es的URL elasticsearch.host 阅读全文
摘要:
说明 由于我本机配置较低,无法开启多台虚拟机,ES的集群需要用到不同的ip,故而只搭建单机,不做集群。 一、目录准备 mkdir /docker/es mkdir /docker/es/data mkdir /docker/es/config mkdir /docker/es/plugins 二、e 阅读全文