Skip to content

Commit c55d1e1

Browse files
committed
Fix file name
1 parent e9cf736 commit c55d1e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/indexDataInTypesense.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ async function indexJSONL() {
7878
await client.collections().create(schema);
7979

8080
// read the JSONL file and parse it into batches
81-
const jsonlFilePath = "data/hn-comments-oct-2022.jsonl";
81+
// const jsonlFilePath = "data/hn-comments-oct-2022.jsonl";
82+
const jsonlFilePath = "data/hn-comments-1000-sample.jsonl";
8283
const jsonlReadStream = fs.createReadStream(jsonlFilePath, {
8384
encoding: "utf8",
8485
});

0 commit comments

Comments
 (0)