-
Notifications
You must be signed in to change notification settings - Fork 0
changefeed_openapi
GitHub Actions edited this page Jan 2, 2026
·
1 revision
---
title: Changefeed OpenAPI Snippets
---
Zweck: Minimaler OpenAPI‑Ausschnitt zur Spezifikation der Changefeed‑MVP Endpoints. Diese Snippets sind für die Dokumentation und zum Einfügen in `openapi.yaml` gedacht.
1) GET /changefeed
paths:
/changefeed:
get:
summary: Liste von Changefeed‑Events
parameters:
- name: from_seq
in: query
schema:
type: integer
- name: limit
in: query
schema:
type: integer
default: 100
- name: long_poll_ms
in: query
schema:
type: integer
default: 0
- name: key_prefix
in: query
schema:
type: string
responses:
'200':
description: Array of change events
content:
application/json:
schema:
type: object
properties:
events:
type: array
items:
$ref: '#/components/schemas/ChangeEvent'
last_seq:
type: integer
2) GET /changefeed/stream (SSE)
/changefeed/stream:
get:
summary: Server‑Sent Events stream of changes
parameters:
- name: from_seq
in: query
schema:
type: integer
responses:
'200':
description: text/event-stream (SSE)
content:
text/event-stream:
schema:
type: string
3) GET /changefeed/stats
/changefeed/stats:
get:
summary: Changefeed statistics
responses:
'200':
description: Stats
content:
application/json:
schema:
type: object
properties:
last_seq:
type: integer
total_events:
type: integer
4) POST /changefeed/retention
/changefeed/retention:
post:
summary: Admin: delete events up to seq
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
up_to_seq:
type: integer
responses:
'204':
description: Deleted
Components:
components:
schemas:
ChangeEvent:
type: object
properties:
seq:
type: integer
ts:
type: string
format: date-time
key:
type: string
op:
type: string
description: one of 'insert' | 'update' | 'delete'
value:
type: object
Hinweis: Die OpenAPI‑Snippets sind minimal — Werte für Auth/Zugriffssteuerung sollten projektintern ergänzt werden.
ThemisDB v1.3.4 | GitHub | Documentation | Discussions | License
Last synced: January 02, 2026 | Commit: 6add659
Version: 1.3.0 | Stand: Dezember 2025
- Übersicht
- Home
- Dokumentations-Index
- Quick Reference
- Sachstandsbericht 2025
- Features
- Roadmap
- Ecosystem Overview
- Strategische Übersicht
- Geo/Relational Storage
- RocksDB Storage
- MVCC Design
- Transaktionen
- Time-Series
- Memory Tuning
- Chain of Thought Storage
- Query Engine & AQL
- AQL Syntax
- Explain & Profile
- Rekursive Pfadabfragen
- Temporale Graphen
- Zeitbereichs-Abfragen
- Semantischer Cache
- Hybrid Queries (Phase 1.5)
- AQL Hybrid Queries
- Hybrid Queries README
- Hybrid Query Benchmarks
- Subquery Quick Reference
- Subquery Implementation
- Content Pipeline
- Architektur-Details
- Ingestion
- JSON Ingestion Spec
- Enterprise Ingestion Interface
- Geo-Processor Design
- Image-Processor Design
- Hybrid Search Design
- Fulltext API
- Hybrid Fusion API
- Stemming
- Performance Tuning
- Migration Guide
- Future Work
- Pagination Benchmarks
- Enterprise README
- Scalability Features
- HTTP Client Pool
- Build Guide
- Implementation Status
- Final Report
- Integration Analysis
- Enterprise Strategy
- Verschlüsselungsstrategie
- Verschlüsselungsdeployment
- Spaltenverschlüsselung
- Encryption Next Steps
- Multi-Party Encryption
- Key Rotation Strategy
- Security Encryption Gap Analysis
- Audit Logging
- Audit & Retention
- Compliance Audit
- Compliance
- Extended Compliance Features
- Governance-Strategie
- Compliance-Integration
- Governance Usage
- Security/Compliance Review
- Threat Model
- Security Hardening Guide
- Security Audit Checklist
- Security Audit Report
- Security Implementation
- Development README
- Code Quality Pipeline
- Developers Guide
- Cost Models
- Todo Liste
- Tool Todo
- Core Feature Todo
- Priorities
- Implementation Status
- Roadmap
- Future Work
- Next Steps Analysis
- AQL LET Implementation
- Development Audit
- Sprint Summary (2025-11-17)
- WAL Archiving
- Search Gap Analysis
- Source Documentation Plan
- Changefeed README
- Changefeed CMake Patch
- Changefeed OpenAPI
- Changefeed OpenAPI Auth
- Changefeed SSE Examples
- Changefeed Test Harness
- Changefeed Tests
- Dokumentations-Inventar
- Documentation Summary
- Documentation TODO
- Documentation Gap Analysis
- Documentation Consolidation
- Documentation Final Status
- Documentation Phase 3
- Documentation Cleanup Validation
- API
- Authentication
- Cache
- CDC
- Content
- Geo
- Governance
- Index
- LLM
- Query
- Security
- Server
- Storage
- Time Series
- Transaction
- Utils
Vollständige Dokumentation: https://makr-code.github.io/ThemisDB/