SAP FI/CO Parallel processing之痛 并发也是要受控的
摘要:问题: 财务在做月结的时间,将所有的工作进程占用完。,经常在月结时收到告警邮件可用进程数量为零 原因: 1074098 - Parallel processing CO period-end closing: No. of processes: Parallel processing always
阅读全文
posted @
2021-11-16 17:01
InnoLeo
阅读(320)
推荐(0) 编辑
Elasticsearch _update_by_query (二)
摘要:接上用script update by query 按条件更新 POST book/_update_by_query {"script": { "lang": "painless", "source": """ ctx._source.numb="2" """ }, "query": { "term
阅读全文
posted @
2021-11-15 19:07
InnoLeo
阅读(207)
推荐(0) 编辑
Elasticsearch _update_by_query (一)
摘要:Elasticsearch Update By Query : 在现有索引 上重建 1 创建文档1 PUT book/_doc/1 { "content":"SAP Material mangagement", "keyword":"SAP" } 2.更改索引 PUT book/_mapping {
阅读全文
posted @
2021-11-15 19:03
InnoLeo
阅读(636)
推荐(0) 编辑
Elasticsearch index alias 增加和删除
摘要:查看目标索引 get kibana_sample_data_ecommerce 查看目标索引有没有aliases get _aliases 创建aliases POST _aliases { "actions": [ { "add": { "index": "kibana_sample_data_e
阅读全文
posted @
2021-11-15 14:54
InnoLeo
阅读(822)
推荐(0) 编辑
elasticsearch reindex
摘要:本地reindex POST _reindex?wait_for_completion=true { "source": { "index": "person" }, "dest": { "index": "people" } } View Code 远程reindex elasticsearch.
阅读全文
posted @
2021-11-15 13:53
InnoLeo
阅读(754)
推荐(0) 编辑
elasticsearch nested 对象
摘要:创建测试数据 DELETE student # 创建 Nested 对象 Mapping PUT student { "mappings" : { "properties" : { "name" : { "type": "nested", "properties" : { "first_name"
阅读全文
posted @
2021-11-15 12:47
InnoLeo
阅读(30)
推荐(0) 编辑
REHL8 加磁盘并挂载
摘要:1找磁盘 lsblk parted /dev/nvme0n2 print 格式化 fdisk /dev/nvme0n2 查看分区结果 lsblk 格式化 mkfs.xfs /dev/nvme0n2p1 lsblk 看uuID 挂载 echo "UUID="fd7fe0fa-de0a-47c7-8a9
阅读全文
posted @
2021-11-15 11:06
InnoLeo
阅读(142)
推荐(0) 编辑
elasticsearch 的备份
摘要:1.配置 path.repo path.repo: ["/data/elasticsearch/repo","/workdata/esdata"] 2.创建测试数据 点击查看代码 PUT /person/_bulk {"index":{"_index":"person"}} {"name":"张三"
阅读全文
posted @
2021-11-15 00:33
InnoLeo
阅读(583)
推荐(0) 编辑
elasticsearch seucity seting
摘要:step 1. setup basic seucrity 在elasticsearch.yml 中增加以下 xpack.security.enabled: true Step2 : restart elasticsearch cluster Step3 : 设定内置账号密码 点击查看代码 elast
阅读全文
posted @
2021-11-14 20:10
InnoLeo
阅读(48)
推荐(0) 编辑
elasticearch corss cluster search
摘要:STEP 1: 设定三个Cluster,一个主机一个cluster bin/elasticsearch -E node.name=win88 -E cluster.name=cluster0 -E discovery.type=single-node -E path.data=cluster0-da
阅读全文
posted @
2021-11-14 17:16
InnoLeo
阅读(35)
推荐(0) 编辑