feat: add party-size queueing and call modes

This commit is contained in:
wangxuming
2026-07-16 11:40:34 +08:00
parent 7f751bebae
commit 66951b4dc3
53 changed files with 3348 additions and 533 deletions

View File

@@ -0,0 +1,6 @@
ALTER TABLE projects
DROP CONSTRAINT projects_batch_size_check;
ALTER TABLE projects
ADD CONSTRAINT projects_batch_size_check
CHECK (call_batch_size BETWEEN 1 AND 100);