docs: update IT_Abteilung/DatenBank/PostgreSQL

This commit is contained in:
2026-02-23 10:28:32 +00:00
committed by Jane Doe
parent 086c7bd43d
commit de9dee3313

View File

@@ -2,7 +2,7 @@
title: PostgreSQL Profice Dokumentation title: PostgreSQL Profice Dokumentation
description: description:
published: true published: true
date: 2026-02-23T10:21:09.435Z date: 2026-02-23T10:28:30.295Z
tags: tags:
editor: markdown editor: markdown
dateCreated: 2026-02-23T10:09:09.171Z dateCreated: 2026-02-23T10:09:09.171Z
@@ -49,24 +49,51 @@ pgvector ist eine PostgreSQL-Erweiterung, die Vektordatentypen und Ähnlichkeits
### Architektur auf diesem Server ### Architektur auf diesem Server
``` @startuml
┌──────────────────────────────────────────────────────────────┐ skinparam backgroundColor #1a1a2e
│ Debian Server │ skinparam defaultFontColor white
│ │ skinparam defaultFontSize 14
│ ┌──────────────┐ ┌────────────────────────────────┐ │ skinparam roundCorner 10
│ │ n8n │───▶│ PostgreSQL 16 │ │ skinparam shadowing false
│ │ (Workflows) │ │ │ │
│ └──────────────┘ │ ┌──────────────────────────┐ │ │ skinparam rectangle {
│ │ │ DB: n8n │ │ │ BackgroundColor #2a2a4a
┌──────────────┐ │ │ DB: n8n_vectors │ │ │ BorderColor #5599bb
│ Gitea │───▶│ │ DB: gitea │ │ │ FontColor white
│ │ (Git-Server) │ │ │ │ │ │ }
│ └──────────────┘ │ │ Extension: │ │ │
│ │ │ pgvector │ │ │ skinparam package {
│ └──────────────────────────┘ │ │ BackgroundColor #1a1a2e
│ └────────────────────────────────┘ │ BorderColor #e0e0e0
└──────────────────────────────────────────────────────────────┘ FontColor white
``` FontSize 18
}
skinparam component {
BackgroundColor #336791
BorderColor #fff
FontColor white
}
package "Debian Server" {
rectangle "n8n\n<i>(Workflows)</i>" as n8n #ff6d5a
rectangle "Gitea\n<i>(Git-Server)</i>" as gitea #609926
rectangle "PostgreSQL 16" as pg #2a2a4a {
component "DB: n8n" as db1 #336791
component "DB: n8n_vectors" as db2 #8b5cf6
component "DB: gitea" as db3 #609926
component "Extension: pgvector" as ext #5599bb
}
}
n8n --> db1 : Workflow-Daten
n8n --> db2 : Embeddings
gitea --> db3 : Repositories
@enduml
--- ---