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
Copy file name to clipboardExpand all lines: examples/text_embedding_lancedb/README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,13 @@ You can also run the command with `-L`, which will watch for file changes and up
46
46
cocoindex update -L main
47
47
```
48
48
49
+
By default, the vector index is not enabled, because LanceDB requires at least 256 rows to be there before it can build the index (see [this issue](https://github.com/lance-format/lance/issues/4034) for more details).
50
+
After your LanceDB target table has enough data, you can update `.env` file with the following environment variable to enable the vector index from there on:
51
+
52
+
```sh
53
+
ENABLE_LANCEDB_VECTOR_INDEX=true
54
+
```
55
+
49
56
## CocoInsight
50
57
51
58
I used CocoInsight (Free beta now) to troubleshoot the index generation and understand the data lineage of the pipeline.
0 commit comments