update schema and queries to implement reset_at

This commit is contained in:
Francis Cao 2023-03-27 11:25:16 -07:00
parent 43ef6884df
commit 14e4a090bb
15 changed files with 74 additions and 59 deletions

View File

@ -6,7 +6,6 @@ CREATE TABLE umami.event
website_id UUID, website_id UUID,
session_id UUID, session_id UUID,
event_id UUID, event_id UUID,
rev_id UInt32,
--session --session
hostname LowCardinality(String), hostname LowCardinality(String),
browser LowCardinality(String), browser LowCardinality(String),
@ -38,7 +37,6 @@ CREATE TABLE umami.event_queue (
website_id UUID, website_id UUID,
session_id UUID, session_id UUID,
event_id UUID, event_id UUID,
rev_id UInt32,
--session --session
hostname LowCardinality(String), hostname LowCardinality(String),
browser LowCardinality(String), browser LowCardinality(String),
@ -74,7 +72,6 @@ CREATE MATERIALIZED VIEW umami.event_queue_mv TO umami.event AS
SELECT website_id, SELECT website_id,
session_id, session_id,
event_id, event_id,
rev_id,
hostname, hostname,
browser, browser,
os, os,
@ -101,7 +98,6 @@ CREATE TABLE umami.event_data
website_id UUID, website_id UUID,
session_id UUID, session_id UUID,
event_id UUID, event_id UUID,
rev_id UInt32,
url_path String, url_path String,
event_name String, event_name String,
event_key String, event_key String,
@ -119,7 +115,6 @@ CREATE TABLE umami.event_data_queue (
website_id UUID, website_id UUID,
session_id UUID, session_id UUID,
event_id UUID, event_id UUID,
rev_id UInt32,
url_path String, url_path String,
event_name String, event_name String,
event_key String, event_key String,
@ -141,7 +136,6 @@ CREATE MATERIALIZED VIEW umami.event_data_queue_mv TO umami.event_data AS
SELECT website_id, SELECT website_id,
session_id, session_id,
event_id, event_id,
rev_id,
url_path, url_path,
event_name, event_name,
event_key, event_key,

View File

@ -50,7 +50,7 @@ model Website {
name String @db.VarChar(100) name String @db.VarChar(100)
domain String? @db.VarChar(500) domain String? @db.VarChar(500)
shareId String? @unique @map("share_id") @db.VarChar(50) shareId String? @unique @map("share_id") @db.VarChar(50)
revId Int @default(0) @map("rev_id") @db.UnsignedInt resetAt DateTime? @map("reset_at") @db.Timestamp(0)
userId String? @map("user_id") @db.VarChar(36) userId String? @map("user_id") @db.VarChar(36)
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0) createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
updatedAt DateTime? @map("updated_at") @db.Timestamp(0) updatedAt DateTime? @map("updated_at") @db.Timestamp(0)

View File

@ -50,7 +50,7 @@ model Website {
name String @db.VarChar(100) name String @db.VarChar(100)
domain String? @db.VarChar(500) domain String? @db.VarChar(500)
shareId String? @unique @map("share_id") @db.VarChar(50) shareId String? @unique @map("share_id") @db.VarChar(50)
revId Int @default(0) @map("rev_id") @db.Integer resetAt DateTime? @map("reset_at") @db.Timestamptz(6)
userId String? @map("user_id") @db.Uuid userId String? @map("user_id") @db.Uuid
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
updatedAt DateTime? @map("updated_at") @db.Timestamptz(6) updatedAt DateTime? @map("updated_at") @db.Timestamptz(6)

View File

@ -48,7 +48,7 @@ export interface User {
export interface Website { export interface Website {
id: string; id: string;
userId: string; userId: string;
revId: number; resetAt: Date;
name: string; name: string;
domain: string; domain: string;
shareId: string; shareId: string;

View File

@ -49,8 +49,6 @@ export async function resetWebsite(
): Promise<[Prisma.BatchPayload, Prisma.BatchPayload, Website]> { ): Promise<[Prisma.BatchPayload, Prisma.BatchPayload, Website]> {
const { client, transaction } = prisma; const { client, transaction } = prisma;
const { revId } = await getWebsite({ id: websiteId });
return transaction([ return transaction([
client.websiteEvent.deleteMany({ client.websiteEvent.deleteMany({
where: { websiteId }, where: { websiteId },
@ -58,7 +56,12 @@ export async function resetWebsite(
client.session.deleteMany({ client.session.deleteMany({
where: { websiteId }, where: { websiteId },
}), }),
client.website.update({ where: { id: websiteId }, data: { revId: revId + 1 } }), client.website.update({
where: { id: websiteId },
data: {
resetAt: new Date(),
},
}),
]).then(async data => { ]).then(async data => {
if (cache.enabled) { if (cache.enabled) {
await cache.storeWebsite(data[2]); await cache.storeWebsite(data[2]);

View File

@ -46,7 +46,9 @@ async function relationalQuery(
}, },
) { ) {
const { toUuid, rawQuery, getDateQuery, getFilterQuery } = prisma; const { toUuid, rawQuery, getDateQuery, getFilterQuery } = prisma;
const params: any = [websiteId, startDate, endDate]; const website = await cache.fetchWebsite(websiteId);
const resetDate = website?.resetAt || website?.createdAt;
const params: any = [websiteId, resetDate, startDate, endDate];
return rawQuery( return rawQuery(
`select `select
@ -55,7 +57,8 @@ async function relationalQuery(
count(*) y count(*) y
from website_event from website_event
where website_id = $1${toUuid()} where website_id = $1${toUuid()}
and created_at between $2 and $3 and created_at >= $2
and created_at between $3 and $4
and event_type = ${EVENT_TYPE.customEvent} and event_type = ${EVENT_TYPE.customEvent}
${getFilterQuery(filters, params)} ${getFilterQuery(filters, params)}
group by 1, 2 group by 1, 2
@ -83,9 +86,10 @@ async function clickhouseQuery(
}; };
}, },
) { ) {
const { rawQuery, getDateQuery, getBetweenDates, getFilterQuery } = clickhouse; const { rawQuery, getDateQuery, getDateFormat, getBetweenDates, getFilterQuery } = clickhouse;
const website = await cache.fetchWebsite(websiteId); const website = await cache.fetchWebsite(websiteId);
const params = { websiteId, revId: website?.revId || 0 }; const resetDate = website?.resetAt || website?.createdAt;
const params = { websiteId };
return rawQuery( return rawQuery(
`select `select
@ -94,8 +98,8 @@ async function clickhouseQuery(
count(*) y count(*) y
from event from event
where website_id = {websiteId:UUID} where website_id = {websiteId:UUID}
and rev_id = {revId:UInt32}
and event_type = ${EVENT_TYPE.customEvent} and event_type = ${EVENT_TYPE.customEvent}
and created_at >= ${getDateFormat(resetDate)}
and ${getBetweenDates('created_at', startDate, endDate)} and ${getBetweenDates('created_at', startDate, endDate)}
${getFilterQuery(filters, params)} ${getFilterQuery(filters, params)}
group by x, t group by x, t

View File

@ -3,7 +3,6 @@ import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
import kafka from 'lib/kafka'; import kafka from 'lib/kafka';
import prisma from 'lib/prisma'; import prisma from 'lib/prisma';
import { uuid } from 'lib/crypto'; import { uuid } from 'lib/crypto';
import cache from 'lib/cache';
import { saveEventData } from '../eventData/saveEventData'; import { saveEventData } from '../eventData/saveEventData';
export async function saveEvent(args: { export async function saveEvent(args: {
@ -41,7 +40,6 @@ async function relationalQuery(data: {
eventData?: any; eventData?: any;
}) { }) {
const { websiteId, id: sessionId, urlPath, urlQuery, eventName, eventData, pageTitle } = data; const { websiteId, id: sessionId, urlPath, urlQuery, eventName, eventData, pageTitle } = data;
const website = await cache.fetchWebsite(websiteId);
const websiteEventId = uuid(); const websiteEventId = uuid();
const websiteEvent = prisma.client.websiteEvent.create({ const websiteEvent = prisma.client.websiteEvent.create({
@ -62,7 +60,6 @@ async function relationalQuery(data: {
websiteId, websiteId,
sessionId, sessionId,
eventId: websiteEventId, eventId: websiteEventId,
revId: website?.revId,
urlPath: urlPath?.substring(0, URL_LENGTH), urlPath: urlPath?.substring(0, URL_LENGTH),
eventName: eventName?.substring(0, EVENT_NAME_LENGTH), eventName: eventName?.substring(0, EVENT_NAME_LENGTH),
eventData, eventData,
@ -106,7 +103,6 @@ async function clickhouseQuery(data: {
...args ...args
} = data; } = data;
const { getDateFormat, sendMessage } = kafka; const { getDateFormat, sendMessage } = kafka;
const website = await cache.fetchWebsite(websiteId);
const eventId = uuid(); const eventId = uuid();
const createdAt = getDateFormat(new Date()); const createdAt = getDateFormat(new Date());
@ -123,7 +119,6 @@ async function clickhouseQuery(data: {
page_title: pageTitle, page_title: pageTitle,
event_type: EVENT_TYPE.customEvent, event_type: EVENT_TYPE.customEvent,
event_name: eventName?.substring(0, EVENT_NAME_LENGTH), event_name: eventName?.substring(0, EVENT_NAME_LENGTH),
rev_id: website?.revId || 0,
created_at: createdAt, created_at: createdAt,
...args, ...args,
}; };
@ -135,7 +130,6 @@ async function clickhouseQuery(data: {
websiteId, websiteId,
sessionId, sessionId,
eventId, eventId,
revId: website?.revId,
urlPath: urlPath?.substring(0, URL_LENGTH), urlPath: urlPath?.substring(0, URL_LENGTH),
eventName: eventName?.substring(0, EVENT_NAME_LENGTH), eventName: eventName?.substring(0, EVENT_NAME_LENGTH),
eventData, eventData,

View File

@ -48,7 +48,9 @@ async function relationalQuery(
) { ) {
const { startDate, endDate, timeSeries, eventName, urlPath, filters } = data; const { startDate, endDate, timeSeries, eventName, urlPath, filters } = data;
const { toUuid, rawQuery, getEventDataFilterQuery, getDateQuery } = prisma; const { toUuid, rawQuery, getEventDataFilterQuery, getDateQuery } = prisma;
const params: any = [websiteId, startDate, endDate, eventName || '']; const website = await cache.fetchWebsite(websiteId);
const resetDate = website?.resetAt || website?.createdAt;
const params: any = [websiteId, resetDate, startDate, endDate, eventName || ''];
return rawQuery( return rawQuery(
`select `select
@ -65,8 +67,9 @@ async function relationalQuery(
: '' : ''
} }
where website_id = $1${toUuid()} where website_id = $1${toUuid()}
and created_at between $2 and $3 and created_at >= $2
${eventName ? `and eventName = $4` : ''} and created_at between $3 and $4
${eventName ? `and eventName = $5` : ''}
${getEventDataFilterQuery(filters, params)} ${getEventDataFilterQuery(filters, params)}
${timeSeries ? 'group by t' : ''}`, ${timeSeries ? 'group by t' : ''}`,
params, params,
@ -93,9 +96,11 @@ async function clickhouseQuery(
}, },
) { ) {
const { startDate, endDate, timeSeries, eventName, urlPath, filters } = data; const { startDate, endDate, timeSeries, eventName, urlPath, filters } = data;
const { rawQuery, getBetweenDates, getDateQuery, getEventDataFilterQuery } = clickhouse; const { rawQuery, getDateFormat, getBetweenDates, getDateQuery, getEventDataFilterQuery } =
clickhouse;
const website = await cache.fetchWebsite(websiteId); const website = await cache.fetchWebsite(websiteId);
const params = { websiteId, revId: website?.revId || 0 }; const resetDate = website?.resetAt || website?.createdAt;
const params = { websiteId };
return rawQuery( return rawQuery(
`select `select
@ -107,8 +112,8 @@ async function clickhouseQuery(
} }
from event_data from event_data
where website_id = {websiteId:UUID} where website_id = {websiteId:UUID}
and rev_id = {revId:UInt32}
${eventName ? `and eventName = ${eventName}` : ''} ${eventName ? `and eventName = ${eventName}` : ''}
and created_at >= ${getDateFormat(resetDate)}
and ${getBetweenDates('created_at', startDate, endDate)} and ${getBetweenDates('created_at', startDate, endDate)}
${getEventDataFilterQuery(filters, params)} ${getEventDataFilterQuery(filters, params)}
${timeSeries ? 'group by t' : ''}`, ${timeSeries ? 'group by t' : ''}`,

View File

@ -11,7 +11,6 @@ export async function saveEventData(args: {
websiteId: string; websiteId: string;
eventId: string; eventId: string;
sessionId?: string; sessionId?: string;
revId?: number;
urlPath?: string; urlPath?: string;
eventName?: string; eventName?: string;
eventData: EventData; eventData: EventData;
@ -58,13 +57,12 @@ async function clickhouseQuery(data: {
websiteId: string; websiteId: string;
eventId: string; eventId: string;
sessionId?: string; sessionId?: string;
revId?: number;
urlPath?: string; urlPath?: string;
eventName?: string; eventName?: string;
eventData: EventData; eventData: EventData;
createdAt?: string; createdAt?: string;
}) { }) {
const { websiteId, sessionId, eventId, revId, urlPath, eventName, eventData, createdAt } = data; const { websiteId, sessionId, eventId, urlPath, eventName, eventData, createdAt } = data;
const { getDateFormat, sendMessages } = kafka; const { getDateFormat, sendMessages } = kafka;
@ -74,7 +72,6 @@ async function clickhouseQuery(data: {
website_id: websiteId, website_id: websiteId,
session_id: sessionId, session_id: sessionId,
event_id: eventId, event_id: eventId,
rev_id: revId,
url_path: urlPath, url_path: urlPath,
event_name: eventName, event_name: eventName,
event_key: a.key, event_key: a.key,

View File

@ -35,8 +35,11 @@ async function relationalQuery(
) { ) {
const { startDate, endDate, column, filters = {}, type } = data; const { startDate, endDate, column, filters = {}, type } = data;
const { rawQuery, parseFilters, toUuid } = prisma; const { rawQuery, parseFilters, toUuid } = prisma;
const website = await cache.fetchWebsite(websiteId);
const resetDate = website?.resetAt || website?.createdAt;
const params: any = [ const params: any = [
websiteId, websiteId,
resetDate,
startDate, startDate,
endDate, endDate,
type === 'event' ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView, type === 'event' ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView,
@ -48,8 +51,9 @@ async function relationalQuery(
from website_event from website_event
${joinSession} ${joinSession}
where website_event.website_id = $1${toUuid()} where website_event.website_id = $1${toUuid()}
and website_event.created_at between $2 and $3 and website_event.created_at >= $2
and event_type = $4 and website_event.created_at between $3 and $4
and event_type = $5
${filterQuery} ${filterQuery}
group by 1 group by 1
order by 2 desc order by 2 desc
@ -69,11 +73,11 @@ async function clickhouseQuery(
}, },
) { ) {
const { startDate, endDate, column, filters = {}, type } = data; const { startDate, endDate, column, filters = {}, type } = data;
const { rawQuery, parseFilters, getBetweenDates } = clickhouse; const { rawQuery, getDateFormat, parseFilters, getBetweenDates } = clickhouse;
const website = await cache.fetchWebsite(websiteId); const website = await cache.fetchWebsite(websiteId);
const resetDate = website?.resetAt || website?.createdAt;
const params = { const params = {
websiteId, websiteId,
revId: website?.revId || 0,
eventType: type === 'event' ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView, eventType: type === 'event' ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView,
}; };
const { filterQuery } = parseFilters(filters, params); const { filterQuery } = parseFilters(filters, params);
@ -82,8 +86,8 @@ async function clickhouseQuery(
`select ${column} x, count(*) y `select ${column} x, count(*) y
from event from event
where website_id = {websiteId:UUID} where website_id = {websiteId:UUID}
and rev_id = {revId:UInt32}
and event_type = {eventType:UInt32} and event_type = {eventType:UInt32}
and created_at >= ${getDateFormat(resetDate)}
and ${getBetweenDates('created_at', startDate, endDate)} and ${getBetweenDates('created_at', startDate, endDate)}
${filterQuery} ${filterQuery}
group by x group by x

View File

@ -46,7 +46,9 @@ async function relationalQuery(
sessionKey = 'session_id', sessionKey = 'session_id',
} = data; } = data;
const { toUuid, getDateQuery, parseFilters, rawQuery } = prisma; const { toUuid, getDateQuery, parseFilters, rawQuery } = prisma;
const params: any = [websiteId, startDate, endDate]; const website = await cache.fetchWebsite(websiteId);
const resetDate = website?.resetAt || website?.createdAt;
const params: any = [websiteId, resetDate, startDate, endDate];
const { filterQuery, joinSession } = parseFilters(filters, params); const { filterQuery, joinSession } = parseFilters(filters, params);
return rawQuery( return rawQuery(
@ -55,7 +57,8 @@ async function relationalQuery(
from website_event from website_event
${joinSession} ${joinSession}
where website_event.website_id = $1${toUuid()} where website_event.website_id = $1${toUuid()}
and website_event.created_at between $2 and $3 and website_event.created_at >= $2
and website_event.created_at between $3 and $4
and event_type = ${EVENT_TYPE.pageView} and event_type = ${EVENT_TYPE.pageView}
${filterQuery} ${filterQuery}
group by 1`, group by 1`,
@ -76,9 +79,17 @@ async function clickhouseQuery(
}, },
) { ) {
const { startDate, endDate, timezone = 'UTC', unit = 'day', count = '*', filters = {} } = data; const { startDate, endDate, timezone = 'UTC', unit = 'day', count = '*', filters = {} } = data;
const { parseFilters, rawQuery, getDateStringQuery, getDateQuery, getBetweenDates } = clickhouse; const {
parseFilters,
getDateFormat,
rawQuery,
getDateStringQuery,
getDateQuery,
getBetweenDates,
} = clickhouse;
const website = await cache.fetchWebsite(websiteId); const website = await cache.fetchWebsite(websiteId);
const params = { websiteId, revId: website?.revId || 0 }; const resetDate = website?.resetAt || website?.createdAt;
const params = { websiteId };
const { filterQuery } = parseFilters(filters, params); const { filterQuery } = parseFilters(filters, params);
return rawQuery( return rawQuery(
@ -91,8 +102,8 @@ async function clickhouseQuery(
count(${count !== '*' ? 'distinct session_id' : count}) y count(${count !== '*' ? 'distinct session_id' : count}) y
from event from event
where website_id = {websiteId:UUID} where website_id = {websiteId:UUID}
and rev_id = {revId:UInt32}
and event_type = ${EVENT_TYPE.pageView} and event_type = ${EVENT_TYPE.pageView}
and created_at >= ${getDateFormat(resetDate)}
and ${getBetweenDates('created_at', startDate, endDate)} and ${getBetweenDates('created_at', startDate, endDate)}
${filterQuery} ${filterQuery}
group by t) g group by t) g

View File

@ -2,7 +2,6 @@ import { URL_LENGTH, EVENT_TYPE } from 'lib/constants';
import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db'; import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
import kafka from 'lib/kafka'; import kafka from 'lib/kafka';
import prisma from 'lib/prisma'; import prisma from 'lib/prisma';
import cache from 'lib/cache';
import { uuid } from 'lib/crypto'; import { uuid } from 'lib/crypto';
export async function savePageView(args: { export async function savePageView(args: {
@ -104,13 +103,11 @@ async function clickhouseQuery(data: {
...args ...args
} = data; } = data;
const { getDateFormat, sendMessage } = kafka; const { getDateFormat, sendMessage } = kafka;
const website = await cache.fetchWebsite(websiteId);
const message = { const message = {
website_id: websiteId, website_id: websiteId,
session_id: sessionId, session_id: sessionId,
event_id: uuid(), event_id: uuid(),
rev_id: website?.revId || 0,
country: country ? country : null, country: country ? country : null,
subdivision1: subdivision1 ? subdivision1 : null, subdivision1: subdivision1 ? subdivision1 : null,
subdivision2: subdivision2 ? subdivision2 : null, subdivision2: subdivision2 ? subdivision2 : null,

View File

@ -50,7 +50,6 @@ async function clickhouseQuery(data: {
city, city,
} = data; } = data;
const { getDateFormat, sendMessage } = kafka; const { getDateFormat, sendMessage } = kafka;
const website = await cache.fetchWebsite(websiteId);
const msg = { const msg = {
session_id: id, session_id: id,
@ -65,7 +64,6 @@ async function clickhouseQuery(data: {
subdivision1, subdivision1,
subdivision2, subdivision2,
city, city,
rev_id: website?.revId || 0,
created_at: getDateFormat(new Date()), created_at: getDateFormat(new Date()),
}; };

View File

@ -20,9 +20,11 @@ async function relationalQuery(
websiteId: string, websiteId: string,
data: { startDate: Date; endDate: Date; field: string; filters: object }, data: { startDate: Date; endDate: Date; field: string; filters: object },
) { ) {
const website = await cache.fetchWebsite(websiteId);
const resetDate = website?.resetAt || website?.createdAt;
const { startDate, endDate, field, filters = {} } = data; const { startDate, endDate, field, filters = {} } = data;
const { toUuid, parseFilters, rawQuery } = prisma; const { toUuid, parseFilters, rawQuery } = prisma;
const params: any = [websiteId, startDate, endDate]; const params: any = [websiteId, resetDate, startDate, endDate];
const { filterQuery, joinSession } = parseFilters(filters, params); const { filterQuery, joinSession } = parseFilters(filters, params);
return rawQuery( return rawQuery(
@ -35,7 +37,8 @@ async function relationalQuery(
on website_event.website_id = website.website_id on website_event.website_id = website.website_id
${joinSession} ${joinSession}
where website.website_id = $1${toUuid()} where website.website_id = $1${toUuid()}
and website_event.created_at between $2 and $3 and website_event.created_at >= $2
and website_event.created_at between $3 and $4
${filterQuery} ${filterQuery}
) )
group by 1 group by 1
@ -50,17 +53,18 @@ async function clickhouseQuery(
data: { startDate: Date; endDate: Date; field: string; filters: object }, data: { startDate: Date; endDate: Date; field: string; filters: object },
) { ) {
const { startDate, endDate, field, filters = {} } = data; const { startDate, endDate, field, filters = {} } = data;
const { parseFilters, getBetweenDates, rawQuery } = clickhouse; const { getDateFormat, parseFilters, getBetweenDates, rawQuery } = clickhouse;
const website = await cache.fetchWebsite(websiteId); const website = await cache.fetchWebsite(websiteId);
const params = { websiteId, revId: website?.revId || 0 }; const resetDate = website?.resetAt || website?.createdAt;
const params = { websiteId };
const { filterQuery } = parseFilters(filters, params); const { filterQuery } = parseFilters(filters, params);
return rawQuery( return rawQuery(
`select ${field} x, count(distinct session_id) y `select ${field} x, count(distinct session_id) y
from event as x from event as x
where website_id = {websiteId:UUID} where website_id = {websiteId:UUID}
and rev_id = {revId:UInt32}
and event_type = ${EVENT_TYPE.pageView} and event_type = ${EVENT_TYPE.pageView}
and created_at >= ${getDateFormat(resetDate)}
and ${getBetweenDates('created_at', startDate, endDate)} and ${getBetweenDates('created_at', startDate, endDate)}
${filterQuery} ${filterQuery}
group by x group by x

View File

@ -19,7 +19,9 @@ async function relationalQuery(
) { ) {
const { startDate, endDate, filters = {} } = data; const { startDate, endDate, filters = {} } = data;
const { toUuid, getDateQuery, getTimestampInterval, parseFilters, rawQuery } = prisma; const { toUuid, getDateQuery, getTimestampInterval, parseFilters, rawQuery } = prisma;
const params: any = [websiteId, startDate, endDate]; const website = await cache.fetchWebsite(websiteId);
const resetDate = website?.resetAt || website?.createdAt;
const params: any = [websiteId, resetDate, startDate, endDate];
const { filterQuery, joinSession } = parseFilters(filters, params); const { filterQuery, joinSession } = parseFilters(filters, params);
return rawQuery( return rawQuery(
@ -37,7 +39,8 @@ async function relationalQuery(
on website_event.website_id = website.website_id on website_event.website_id = website.website_id
${joinSession} ${joinSession}
where website.website_id = $1${toUuid()} where website.website_id = $1${toUuid()}
and website_event.created_at between $2 and $3 and website_event.created_at >= $2
and website_event.created_at between $3 and $4
${filterQuery} ${filterQuery}
group by 1, 2 group by 1, 2
) t`, ) t`,
@ -50,9 +53,10 @@ async function clickhouseQuery(
data: { startDate: Date; endDate: Date; filters: object }, data: { startDate: Date; endDate: Date; filters: object },
) { ) {
const { startDate, endDate, filters = {} } = data; const { startDate, endDate, filters = {} } = data;
const { rawQuery, getDateQuery, getBetweenDates, parseFilters } = clickhouse; const { rawQuery, getDateFormat, getDateQuery, getBetweenDates, parseFilters } = clickhouse;
const website = await cache.fetchWebsite(websiteId); const website = await cache.fetchWebsite(websiteId);
const params = { websiteId, revId: website?.revId || 0 }; const resetDate = website?.resetAt || website?.createdAt;
const params = { websiteId };
const { filterQuery } = parseFilters(filters, params); const { filterQuery } = parseFilters(filters, params);
return rawQuery( return rawQuery(
@ -70,8 +74,8 @@ async function clickhouseQuery(
from event from event
where event_type = ${EVENT_TYPE.pageView} where event_type = ${EVENT_TYPE.pageView}
and website_id = {websiteId:UUID} and website_id = {websiteId:UUID}
and rev_id = {revId:UInt32} and created_at >= ${getDateFormat(resetDate)}
and ${getBetweenDates('created_at', startDate, endDate)} and ${getBetweenDates('created_at', startDate, endDate)}
${filterQuery} ${filterQuery}
group by session_id, time_series group by session_id, time_series
) t;`, ) t;`,