-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed.ts
65 lines (61 loc) · 2.15 KB
/
seed.ts
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
import { v } from "convex/values";
import { geospatial } from "./example.js";
import { action, internalMutation } from "./_generated/server";
import { api, internal } from "./_generated/api";
import { FOOD_EMOJIS } from "./constants.js";
export const addBatch = internalMutation({
args: { count: v.number() },
handler: async (ctx, { count }) => {
for (let i = 0; i < count; i++) {
const name = FOOD_EMOJIS[Math.floor(Math.random() * FOOD_EMOJIS.length)];
const id = await ctx.db.insert("locations", {
name,
});
const latitudeRange = [10, 60];
const longitudeRange = [-100, -10];
const latitude =
Math.random() * (latitudeRange[1] - latitudeRange[0]) +
latitudeRange[0];
const longitude =
Math.random() * (longitudeRange[1] - longitudeRange[0]) +
longitudeRange[0];
const point = { latitude, longitude };
await geospatial.insert(ctx, id, point, { name });
}
},
});
export const addMany = action({
args: { count: v.number(), batchSize: v.number(), parallelism: v.number() },
handler: async (ctx, args) => {
let ix = 0;
let added = 0;
const inProgress: Map<number, Promise<number>> = new Map();
const deadline = Date.now() + 60 * 1000;
while (added < args.count && Date.now() < deadline) {
if (inProgress.size >= args.parallelism) {
const index = await Promise.race(inProgress.values());
inProgress.delete(index);
added += args.batchSize;
console.log(`Added ${args.batchSize} points (total: ${added})`);
}
if (inProgress.size < args.parallelism) {
const index = ix++;
const promise = ctx
.runMutation(internal.seed.addBatch, { count: args.batchSize })
.then(() => index);
inProgress.set(index, promise);
}
}
if (inProgress.size > 0) {
await Promise.all(inProgress.values());
added += args.batchSize * inProgress.size;
}
if (added < args.count) {
await ctx.scheduler.runAfter(0, api.seed.addMany, {
count: args.count - added,
batchSize: args.batchSize,
parallelism: args.parallelism,
});
}
},
});