Skip to content

Commit 8683724

Browse files
committed
update image links, vol2
1 parent 195a901 commit 8683724

File tree

13 files changed

+25
-60
lines changed

13 files changed

+25
-60
lines changed

docs/ARCH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Pigsty will install on a single **node** (BareMetal / VirtualMachine) by default
3636

3737
This node now has a self-monitoring system, visualization toolsets, and a Postgres database with autoconfigured PITR. You can use this node for devbox, testing, running demos, and doing data visualization & analysis. Or, furthermore, adding more nodes to it!
3838

39-
[![pgsql-arch.jpg](https://repo.pigsty.cc/img/pgsql-arch.jpg)](INFRA)
39+
[![pigsty-arch.jpg](https://repo.pigsty.cc/img/pigsty-arch.jpg)](INFRA)
4040

4141

4242

docs/FEATURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can transit from a fresh node to a production-ready state effortlessly, depl
3131
Pigsty will tune parameters to your hardware, handling everything from kernel, extensions, pooling, load balancing, high-availability, monitoring & logging, backups & PITR, security and more!
3232
All you need to do is run the command and connect with the given URL.
3333

34-
[![pgsql-arch.jpg](https://repo.pigsty.cc/img/pgsql-arch.jpg)](ARCH.md#singleton-meta)
34+
[![pigsty-arch.jpg](https://repo.pigsty.cc/img/pigsty-arch.jpg)](ARCH.md#singleton-meta)
3535

3636

3737

docs/INFRA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ infra_portal: # domain names and upstream servers
3838
#minio : { domain: sss.pigsty ,endpoint: "${admin_ip}:9001" ,scheme: https ,websocket: true }
3939
```
4040

41-
[![pgsql-arch.jpg](https://repo.pigsty.cc/img/pgsql-arch.jpg)](INFRA)
41+
[![pigsty-arch.jpg](https://repo.pigsty.cc/img/pigsty-arch.jpg)](INFRA)
4242

4343

4444

docs/MINIO.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -274,24 +274,11 @@ You should install [`MINIO`](MINIO) module on Pigsty-managed nodes (i.e., Instal
274274

275275
There are two dashboards for [`MINIO`](MINIO) module.
276276

277-
278277
[MinIO Overview](https://demo.pigsty.cc/d/minio-overview): Overview of one single MinIO cluster
279278

280-
<details><summary>MinIO Overview Dashboard</summary>
281-
282-
![](/img/dashboards/minio-overview.png)
283-
284-
</details><br>
285-
286-
287-
288279
[MinIO Instance](https://demo.pigsty.cc/d/minio-instance): Detail information about one single MinIO instance
289280

290-
<details><summary>MinIO Instance Dashboard</summary>
291-
292-
![](/img/dashboards/minio-instance.png)
293-
294-
</details><br>
281+
[![minio-overview.jpg](https://repo.pigsty.cc/img/minio-overview.jpg)](https://demo.pigsty.cc/d/minio-overview)
295282

296283

297284

docs/PGSQL-ARCH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Here is how PostgreSQL module components and their interactions. From top to bot
118118
* Postgres-related logs (postgres,pgbouncer,patroni,pgbackrest) are exposed by promtail @ port 9080
119119
* Promtail will send logs to Loki on infra nodes
120120

121-
[![pgsql-arch.jpg](https://repo.pigsty.cc/img/pgsql-arch.jpg)](INFRA)
121+
[![pigsty-arch.jpg](https://repo.pigsty.cc/img/pigsty-arch.jpg)](INFRA)
122122

123123

124124

docs/PGSQL-SVC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ The typical method is access via cluster domain name, which resolve to cluster L
339339

340340
Service can be implemented in different ways, You can even implement you own access method such as L4 LVS, F5, etc... instead of haproxy.
341341

342-
![pgsql-access.jpg](https://repo.pigsty.cc/img/pigsty-access.jpg)
342+
![pgsql-access.jpg](https://repo.pigsty.cc/img/pgsql-access.jpg)
343343

344344
You can use different combination of host & port, they are provide PostgreSQL service in different ways.
345345

docs/README.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -661,23 +661,3 @@ Author: [Vonng](https://vonng.com/en) ([rh@vonng.com](mailto:rh@vonng.com))
661661
License: [AGPL-3.0](LICENSE)
662662

663663
Copyright 2018-2023 rh@vonng.com
664-
665-
| Algorithm | Function | Operator | Use Index? | Parameters |
666-
|----------------------------------|------------------------------------------------------------------------------------------------|----------|------------|-------------------------------------------------------------------------------------------------------------------------------------|
667-
| L1 Distance | block(text, text) returns float8 | `~++` | yes | pg_similarity.block_tokenizer (enum) pg_similarity.block_threshold (float8) pg_similarity.block_is_normalized (bool) |
668-
| Cosine Distance | cosine(text, text) returns float8 | `~##` | yes | pg_similarity.cosine_tokenizer (enum) pg_similarity.cosine_threshold (float8) pg_similarity.cosine_is_normalized (bool) |
669-
| Dice Coefficient | dice(text, text) returns float8 | `~-~` | yes | pg_similarity.dice_tokenizer (enum) pg_similarity.dice_threshold (float8) pg_similarity.dice_is_normalized (bool) |
670-
| Euclidean Distance | euclidean(text, text) returns float8 | `~!!` | yes | pg_similarity.euclidean_tokenizer (enum) pg_similarity.euclidean_threshold (float8) pg_similarity.euclidean_is_normalized (bool) |
671-
| Hamming Distance | hamming(bit varying, bit varying) returns float8 </br> hamming_text(text, text) returns float8 | `~@~` | no | pg_similarity.hamming_threshold (float8) pg_similarity.hamming_is_normalized (bool) |
672-
| Jaccard Coefficient | jaccard(text, text) returns float8 | `~??` | yes | pg_similarity.jaccard_tokenizer (enum) pg_similarity.jaccard_threshold (float8) pg_similarity.jaccard_is_normalized (bool) |
673-
| Jaro Distance | jaro(text, text) returns float8 | `~%%` | no | pg_similarity.jaro_threshold (float8) pg_similarity.jaro_is_normalized (bool) |
674-
| Jaro-Winkler Distance | jarowinkler(text, text) returns float8 | `~@@` | no | pg_similarity.jarowinkler_threshold (float8) pg_similarity.jarowinkler_is_normalized (bool) |
675-
| Levenshtein Distance | lev(text, text) returns float8 | `~==` | no | pg_similarity.levenshtein_threshold (float8) pg_similarity.levenshtein_is_normalized (bool) |
676-
| Matching Coefficient | matchingcoefficient(text, text) returns float8 | `~^^` | yes | pg_similarity.matching_tokenizer (enum) pg_similarity.matching_threshold (float8) pg_similarity.matching_is_normalized (bool) |
677-
| Monge-Elkan Coefficient | mongeelkan(text, text) returns float8 | `~\|\|` | no | pg_similarity.mongeelkan_tokenizer (enum) pg_similarity.mongeelkan_threshold (float8) pg_similarity.mongeelkan_is_normalized (bool) |
678-
| Needleman-Wunsch Coefficient | needlemanwunsch(text, text) returns float8 | `~#~` | no | pg_similarity.nw_threshold (float8) pg_similarity.nw_is_normalized (bool) |
679-
| Overlap Coefficient | overlapcoefficient(text, text) returns float8 | `~**` | yes | pg_similarity.overlap_tokenizer (enum) pg_similarity.overlap_threshold (float8) pg_similarity.overlap_is_normalized (bool) |
680-
| Q-Gram Distance | qgram(text, text) returns float8 | `~~~` | yes | pg_similarity.qgram_threshold (float8) pg_similarity.qgram_is_normalized (bool) |
681-
| Smith-Waterman Coefficient | smithwaterman(text, text) returns float8 | `~=~` | no | pg_similarity.sw_threshold (float8) pg_similarity.sw_is_normalized (bool) |
682-
| Smith-Waterman-Gotoh Coefficient | smithwatermangotoh(text, text) returns float8 | `~!~` | no | pg_similarity.swg_threshold (float8) pg_similarity.swg_is_normalized (bool) |
683-
| Soundex Distance | soundex(text, text) returns float8 | `~*~` | no | |

docs/zh/ARCH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Pigsty 采用模块化设计,有六个主要的默认模块:[`PGSQL`](pgsql)
3838

3939
这个节点现在会有完整的自我监控系统、可视化工具集,以及一个自动配置有 PITR 的 Postgres 数据库(HA不可用,因为你只有一个节点)。你可以使用此节点作为开发箱、测试、运行演示以及进行数据可视化和分析。或者,还可以把这个节点当作管理节点,部署纳管更多的节点!
4040

41-
[![pgsql-arch.jpg](https://repo.pigsty.cc/img/pgsql-arch.jpg)](INFRA)
41+
[![pigsty-arch.jpg](https://repo.pigsty.cc/img/pigsty-arch.jpg)](INFRA)
4242

4343

4444

docs/zh/FEATURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Pigsty 支持的数据库版本覆盖 PostgreSQL 12 ~ 16,可以运行于 EL
3030
参数将根据您的硬件规格自动进行优化调整,内核扩展安装,连接池,负载均衡,服务接入,高可用/自动切换,日志监控,备份恢复PITR,访问控制,参数调优,安全加密,证书签发,NTP,DNS,配置管理,CMDB,管理预案……,所有这些在生产环境中可能会遇到的问题,Pigsty 都帮您预先考虑好了。
3131
您所要做的就是一键安装好,然后使用连接串URL连上去使用即可。
3232

33-
[![pgsql-arch.jpg](https://repo.pigsty.cc/img/pgsql-arch.jpg)](ARCH.md#单机安装)
33+
[![pigsty-arch.jpg](https://repo.pigsty.cc/img/pigsty-arch.jpg)](ARCH.md#单机安装)
3434

3535

3636
----------------

docs/zh/INFRA.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99

1010
每一套 Pigsty 部署都会提供一套基础架构组件,为纳管的节点与数据库集群提供服务,组件包括:
1111

12-
| 组件 | 端口 | 域名 | 描述 |
13-
|:-------------------------------:|:----:|:----------:|------------------------|
12+
| 组件 | 端口 | 域名 | 描述 |
13+
|:-------------------------------:|:----:|:----------:|-----------------------|
1414
| [Nginx](#nginx) | 80 | `h.pigsty` | Web服务门户(也用作yum/atp仓库) |
15-
| [AlertManager](#prometheus) | 9093 | `a.pigsty` | 告警聚合分发 |
16-
| [Prometheus](#prometheus) | 9090 | `p.pigsty` | 时间序列数据库(收存监控指标) |
17-
| [Grafana](#grafana) | 3000 | `g.pigsty` | 可视化平台 |
18-
| [Loki](#grafana) | 3100 | - | 日志收集服务器 |
19-
| [PushGateway](#prometheus) | 9091 | - | 接受一次性的任务指标 |
20-
| [BlackboxExporter](#prometheus) | 9115 | - | 黑盒监控探测 |
21-
| [DNSMASQ](#dnsmasq) | 53 | - | DNS 服务器 |
22-
| [Chronyd](#chronyd) | 123 | - | NTP 时间服务器 |
23-
| [PostgreSQL](#postgresql) | 5432 | - | Pigsty CMDB 和默认数据库 |
24-
| [Ansible](#ansible) | - | - | 运行剧本 |
25-
26-
27-
[![pgsql-arch.jpg](https://repo.pigsty.cc/img/pgsql-arch.jpg)](INFRA)
15+
| [AlertManager](#prometheus) | 9093 | `a.pigsty` | 告警聚合分发 |
16+
| [Prometheus](#prometheus) | 9090 | `p.pigsty` | 时间序列数据库(收存监控指标) |
17+
| [Grafana](#grafana) | 3000 | `g.pigsty` | 可视化平台 |
18+
| [Loki](#grafana) | 3100 | - | 日志收集服务器 |
19+
| [PushGateway](#prometheus) | 9091 | - | 接受一次性的任务指标 |
20+
| [BlackboxExporter](#prometheus) | 9115 | - | 黑盒监控探测 |
21+
| [DNSMASQ](#dnsmasq) | 53 | - | DNS 服务器 |
22+
| [Chronyd](#chronyd) | 123 | - | NTP 时间服务器 |
23+
| [PostgreSQL](#postgresql) | 5432 | - | Pigsty CMDB 和默认数据库 |
24+
| [Ansible](#ansible) | - | - | 运行剧本 |
25+
26+
27+
[![pigsty-arch.jpg](https://repo.pigsty.cc/img/pigsty-arch.jpg)](INFRA)
2828

2929
在 Pigsty 中,[PGSQL](PGSQL) 模块会使用到[INFRA节点](NODE#infra节点)上的一些服务,具体来说包括:
3030

0 commit comments

Comments
 (0)