File size: 9,750 Bytes
34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 e3ddf50 34dcea4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | """
sync.py β Cloud sync for Faraday AI Memory.
Pushes the local SQLite database and FAISS index to Supabase Storage,
enabling the cloud-hosted MCP server on Cloud Run to serve queries
from the same data.
Uses httpx directly (no heavy Supabase SDK) for maximum compatibility.
Usage:
python sync.py push # Upload local DB + index to cloud
python sync.py pull # Download cloud DB + index to local
python sync.py status # Check what's in the cloud bucket
Requires SUPABASE_URL and SUPABASE_KEY in config.py or env vars.
"""
import os
import sys
from pathlib import Path
# Ensure project root is on path
sys.path.insert(0, str(Path(__file__).parent.resolve()))
from config import (
FAISS_INDEX_PATH,
SQLITE_DB_PATH,
SUPABASE_BUCKET,
SUPABASE_KEY,
SUPABASE_URL,
)
def _check_credentials():
"""Validate Supabase credentials are available."""
if not SUPABASE_URL or not SUPABASE_KEY:
print(
"β Error: Supabase credentials not configured.\n"
"Set SUPABASE_URL and SUPABASE_KEY in config.py or environment.\n"
"\n"
"Your Supabase project URL looks like:\n"
" https://qwxagrmoryojholseclm.supabase.co\n"
"\n"
"Get your anon key from:\n"
" Supabase Dashboard β Settings β API β anon public key",
file=sys.stderr,
)
sys.exit(1)
def _headers():
"""Common headers for Supabase Storage API."""
return {
"apikey": SUPABASE_KEY,
"Authorization": f"Bearer {SUPABASE_KEY}",
}
def _ensure_bucket():
"""Create the storage bucket if it doesn't exist."""
import httpx
# Check if bucket exists
r = httpx.get(
f"{SUPABASE_URL}/storage/v1/bucket/{SUPABASE_BUCKET}",
headers=_headers(),
timeout=30,
)
if r.status_code == 200:
print(f" Bucket '{SUPABASE_BUCKET}' exists.", file=sys.stderr)
return True
# Create bucket
print(f" Creating bucket '{SUPABASE_BUCKET}'...", file=sys.stderr)
r = httpx.post(
f"{SUPABASE_URL}/storage/v1/bucket",
headers={**_headers(), "Content-Type": "application/json"},
json={
"id": SUPABASE_BUCKET,
"name": SUPABASE_BUCKET,
"public": False,
"file_size_limit": 200 * 1024 * 1024, # 200 MB
},
timeout=30,
)
if r.status_code in (200, 201):
print(f" β
Bucket created.", file=sys.stderr)
return True
else:
print(
f" β οΈ Bucket creation response ({r.status_code}): {r.text}",
file=sys.stderr,
)
# May already exist, try anyway
return True
def push():
"""Upload local database and FAISS index (compressed) to Supabase Storage."""
import httpx
import gzip
_check_credentials()
_ensure_bucket()
files_to_upload = {
"memory.db": SQLITE_DB_PATH,
"memory.index": FAISS_INDEX_PATH,
}
for remote_name, local_path in files_to_upload.items():
path = Path(local_path)
if not path.exists():
print(f" [SKIP] {remote_name} β local file not found at {path}",
file=sys.stderr)
continue
raw_size_mb = path.stat().st_size / (1024 * 1024)
# Compress before uploading
compressed_name = f"{remote_name}.gz"
print(f" Compressing {remote_name} ({raw_size_mb:.1f} MB)...", file=sys.stderr)
with open(path, "rb") as f_in:
file_content = gzip.compress(f_in.read())
comp_size_mb = len(file_content) / (1024 * 1024)
# Supabase free tier has a ~50MB object size limit β split into 40MB chunks
CHUNK_SIZE = 40 * 1024 * 1024 # 40 MB
if len(file_content) > CHUNK_SIZE:
chunks = [file_content[i:i+CHUNK_SIZE] for i in range(0, len(file_content), CHUNK_SIZE)]
print(f" Splitting {compressed_name} ({comp_size_mb:.1f} MB) into {len(chunks)} chunks...", file=sys.stderr)
for idx, chunk in enumerate(chunks):
chunk_name = f"{compressed_name}.part{idx:03d}"
httpx.delete(
f"{SUPABASE_URL}/storage/v1/object/{SUPABASE_BUCKET}/{chunk_name}",
headers=_headers(), timeout=30,
)
r = httpx.post(
f"{SUPABASE_URL}/storage/v1/object/{SUPABASE_BUCKET}/{chunk_name}",
headers={**_headers(), "Content-Type": "application/octet-stream", "x-upsert": "true"},
content=chunk,
timeout=180,
)
if r.status_code in (200, 201):
print(f" β
{chunk_name} ({len(chunk)/1024/1024:.1f} MB) uploaded.", file=sys.stderr)
else:
print(f" β {chunk_name} failed ({r.status_code}): {r.text}", file=sys.stderr)
else:
print(f" Uploading {compressed_name} ({comp_size_mb:.1f} MB)...", file=sys.stderr)
httpx.delete(
f"{SUPABASE_URL}/storage/v1/object/{SUPABASE_BUCKET}/{compressed_name}",
headers=_headers(), timeout=30,
)
r = httpx.post(
f"{SUPABASE_URL}/storage/v1/object/{SUPABASE_BUCKET}/{compressed_name}",
headers={**_headers(), "Content-Type": "application/gzip", "x-upsert": "true"},
content=file_content,
timeout=120,
)
if r.status_code in (200, 201):
print(f" β
{compressed_name} uploaded successfully.", file=sys.stderr)
else:
print(f" β {compressed_name} upload failed ({r.status_code}): {r.text}", file=sys.stderr)
print("\nβ
Cloud sync (push) complete.", file=sys.stderr)
def pull():
"""Download database and FAISS index from Supabase Storage."""
import httpx
import gzip
_check_credentials()
files_to_download = {
"memory.db": SQLITE_DB_PATH,
"memory.index": FAISS_INDEX_PATH,
}
for remote_name, local_path in files_to_download.items():
compressed_name = f"{remote_name}.gz"
print(f" Downloading {remote_name}...", file=sys.stderr)
try:
Path(local_path).parent.mkdir(parents=True, exist_ok=True)
# Try chunked download first (part000, part001, ...)
assembled = b""
part_idx = 0
while True:
chunk_name = f"{compressed_name}.part{part_idx:03d}"
r = httpx.get(
f"{SUPABASE_URL}/storage/v1/object/{SUPABASE_BUCKET}/{chunk_name}",
headers=_headers(), timeout=180,
)
if r.status_code == 200:
assembled += r.content
print(f" β
{chunk_name} ({len(r.content)/1024/1024:.1f} MB)", file=sys.stderr)
part_idx += 1
else:
break # No more parts
if assembled:
# Decompress the reassembled chunks
data = gzip.decompress(assembled)
with open(local_path, "wb") as f:
f.write(data)
print(f" β
{remote_name} reassembled ({len(data)/1024/1024:.1f} MB uncompressed).", file=sys.stderr)
continue
# Fallback: try downloading as a single compressed file
r = httpx.get(
f"{SUPABASE_URL}/storage/v1/object/{SUPABASE_BUCKET}/{compressed_name}",
headers=_headers(), timeout=180,
)
if r.status_code == 200:
data = gzip.decompress(r.content)
with open(local_path, "wb") as f:
f.write(data)
print(f" β
{remote_name} downloaded ({len(data)/1024/1024:.1f} MB).", file=sys.stderr)
else:
print(f" β {remote_name} not found in Supabase ({r.status_code}).", file=sys.stderr)
except Exception as e:
print(f" β {remote_name}: {e}", file=sys.stderr)
print("\nβ
Cloud sync (pull) complete.", file=sys.stderr)
def status():
"""Check what files exist in the Supabase Storage bucket."""
import httpx
_check_credentials()
print(f"\nπ¦ Checking bucket '{SUPABASE_BUCKET}'...\n", file=sys.stderr)
r = httpx.post(
f"{SUPABASE_URL}/storage/v1/object/list/{SUPABASE_BUCKET}",
headers={**_headers(), "Content-Type": "application/json"},
json={"prefix": "", "limit": 100},
timeout=30,
)
if r.status_code != 200:
print(f" β Failed ({r.status_code}): {r.text}", file=sys.stderr)
return
files = r.json()
if not files:
print(" π Bucket is empty. Run 'python sync.py push' first.",
file=sys.stderr)
return
print(f" {'File':<20} {'Size':>10} {'Last Modified'}", file=sys.stderr)
print(f" {'β'*20} {'β'*10} {'β'*20}", file=sys.stderr)
for f in files:
name = f.get("name", "?")
size = f.get("metadata", {}).get("size", 0)
size_str = f"{size / (1024*1024):.1f} MB" if size else "?"
updated = f.get("updated_at", "?")[:19]
print(f" {name:<20} {size_str:>10} {updated}", file=sys.stderr)
if __name__ == "__main__":
if len(sys.argv) < 2 or sys.argv[1] not in ("push", "pull", "status"):
print("Usage: python sync.py [push|pull|status]")
sys.exit(1)
action = sys.argv[1]
if action == "push":
push()
elif action == "pull":
pull()
elif action == "status":
status()
|