You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the indexing step runs with checkpoints enabled - i.e., with the setting in this config json:
"use_checkpoints": true,
no vectors will be created in the index.
This issue occurs because some methods wrapped with a checkpoint cache decorator modify their input arguments. When the method's result is cached, the method doesn't execute again, leaving the input arguments unmodified. This creates a bug, as the calling code expects those arguments to be updated.