Summary: - Migrate PostgreSQL to pgvector/pgvector:pg15 Docker image - Successfully install and verify pgvector 0.8.1 extension - Create comprehensive Dify-to-pgvector migration plan - Update PKB module documentation with pgvector status - Update system documentation with pgvector integration Key changes: - docker-compose.yml: Switch to pgvector/pgvector:pg15 image - Add EkbDocument and EkbChunk data model design - Design R-C-R-G hybrid retrieval architecture - Add clinical data JSONB fields (pico, studyDesign, regimen, safety, criteria, endpoints) - Create detailed 10-day implementation roadmap Documentation updates: - PKB module status: pgvector RAG infrastructure ready - System status: pgvector 0.8.1 integrated - New: Dify replacement development plan (01-Dify替换为pgvector开发计划.md) - New: Enterprise medical knowledge base solution V2 Tested: PostgreSQL with pgvector verified, frontend and backend functionality confirmed
41 lines
1.1 KiB
SQL
41 lines
1.1 KiB
SQL
-- 恢复 platform_schema.job_common 表
|
|
-- 从备份文件 rds_init_20251224_154529.sql 提取
|
|
|
|
CREATE TABLE IF NOT EXISTS platform_schema.job_common (
|
|
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
|
name text NOT NULL,
|
|
priority integer DEFAULT 0 NOT NULL,
|
|
data jsonb,
|
|
state platform_schema.job_state DEFAULT 'created'::platform_schema.job_state NOT NULL,
|
|
retry_limit integer DEFAULT 2 NOT NULL,
|
|
retry_count integer DEFAULT 0 NOT NULL,
|
|
retry_delay integer DEFAULT 0 NOT NULL,
|
|
retry_backoff boolean DEFAULT false NOT NULL,
|
|
retry_delay_max integer,
|
|
expire_seconds integer DEFAULT 900 NOT NULL,
|
|
deletion_seconds integer DEFAULT 604800 NOT NULL,
|
|
singleton_key text,
|
|
singleton_on timestamp without time zone,
|
|
start_after timestamp with time zone DEFAULT now() NOT NULL,
|
|
created_on timestamp with time zone DEFAULT now() NOT NULL,
|
|
started_on timestamp with time zone,
|
|
completed_on timestamp with time zone,
|
|
keep_until timestamp with time zone DEFAULT (now() + '336:00:00'::interval) NOT NULL,
|
|
output jsonb,
|
|
dead_letter text,
|
|
policy text
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|