Is there anyway to find out which table is being accessed the most?
Is there anyway to find out which table is being accessed the most?
D1_ERROR: D1 DB storage operation exceeded timeout which caused object to be reset.. This happens rarely, but has been happening for weeks and when it happens no request is able to query the database. It seems like it randomly freezes for 30s and then returns that error8a298455-ac11-4e0c-b160-4db807cf3572it also seems like we get the error but the DB action still happensThis part seems incredibly concerning...?

--remote set to true. Should I be concerned about this happening in production, or is it just a dev env issue?
const [total_records, users] = await Promise.all([
prisma.user.count({
where: whereClause
}),
prisma.user.findMany({
take: limit || undefined,
skip: page && limit ? (page - 1) * limit : undefined,
where: whereClause,
orderBy: sort ? getOrderBy(sort) : undefined,
select: {
id: true,
first_name: true,
last_name: true,
role: {
select: { name: true }
},
email: true,
transportist: { select: { phone: true, status: true } },
cargo_giver: { select: { phone: true, status: true } },
created_at: true
}
})
])8a298455-ac11-4e0c-b160-4db807cf3572