Hey team, im getting this error in TS server `Func...
# community-help
t
Hey team, im getting this error in TS server
Function not implemented
Copy code
store.cpp:296] Checkpoint CreateCheckpoint failed at snapshot path: /root/lib/typesense/data/state/snapshot/temp/db_snapshot, msg:IO error: while link file to /root/lib/typesense/data/state/snapshot/temp/db_snapshot.tmp/000085.sst: /root/lib/typesense/data/db/000085.sst: Function not implemented
Is there anything i missed to config?
f
Is this on a docker environment?
This seems like a file system error, rocksdb cannot create a checkpoint, as it tries to create a hard link
.sst
files, and they're not present in the same mount
t
Yeah it's on docker env
How I know which function name they are called?
Im using GCS + Fuse
f
You need to mount the file system on docker as well
👀 1