0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-12-01 12:21:02 +01:00
posthog/ee/clickhouse/sql/person.py
Tim Glaser c8bf1d0a37
Fix cohorts clickhouse (#2052)
* use json extract inside steps for funnelq eury

* remove print

* fix broken query and add person prop filtering in funnel with test

* Fix cohorts in clickhouse

* Fix types

* Fix funnels

* fix tests

* Fix tests

* Fix cohorts breakdown

* Remove unused code

* Update description

* Remove negation

Co-authored-by: Eric <eeoneric@gmail.com>
2020-10-27 21:43:38 +01:00

352 lines
9.1 KiB
Python

from ee.kafka_client.topics import KAFKA_PERSON, KAFKA_PERSON_UNIQUE_ID
from .clickhouse import KAFKA_COLUMNS, STORAGE_POLICY, kafka_engine, table_engine
DROP_PERSON_TABLE_SQL = """
DROP TABLE person
"""
DROP_PERSON_DISTINCT_ID_TABLE_SQL = """
DROP TABLE person_distinct_id
"""
DROP_PERSON_MATERIALIZED_SQL = """
DROP TABLE persons_up_to_date
"""
DROP_PERSON_VIEW_SQL = """
DROP VIEW persons_up_to_date_view
"""
DROP_PERSONS_WITH_ARRAY_PROPS_TABLE_SQL = """
DROP TABLE persons_with_array_props_view
"""
DROP_MAT_PERSONS_WITH_ARRAY_PROPS_TABLE_SQL = """
DROP TABLE persons_with_array_props_mv
"""
DROP_MAT_PERSONS_PROP_TABLE_SQL = """
DROP TABLE persons_properties_view
"""
DROP_PERSONS_PROP_UP_TO_DATE_VIEW_SQL = """
DROP VIEW persons_properties_up_to_date_view
"""
PERSONS_TABLE = "person"
PERSONS_TABLE_BASE_SQL = """
CREATE TABLE {table_name}
(
id UUID,
created_at DateTime64,
team_id Int64,
properties VARCHAR,
is_identified Boolean
{extra_fields}
) ENGINE = {engine}
"""
PERSONS_TABLE_SQL = (
PERSONS_TABLE_BASE_SQL
+ """Order By (team_id, id)
{storage_policy}
"""
).format(
table_name=PERSONS_TABLE,
engine=table_engine(PERSONS_TABLE, "_timestamp"),
extra_fields=KAFKA_COLUMNS,
storage_policy=STORAGE_POLICY,
)
KAFKA_PERSONS_TABLE_SQL = PERSONS_TABLE_BASE_SQL.format(
table_name="kafka_" + PERSONS_TABLE, engine=kafka_engine(KAFKA_PERSON), extra_fields="",
)
PERSONS_TABLE_MV_SQL = """
CREATE MATERIALIZED VIEW {table_name}_mv
TO {table_name}
AS SELECT
id,
created_at,
team_id,
properties,
is_identified,
_timestamp,
_offset
FROM kafka_{table_name}
""".format(
table_name=PERSONS_TABLE
)
PERSONS_UP_TO_DATE_MATERIALIZED_VIEW = """
CREATE MATERIALIZED VIEW persons_up_to_date
ENGINE = AggregatingMergeTree() ORDER BY (
team_id,
updated_at,
id
)
POPULATE
AS SELECT
id,
argMaxState(team_id, created_at) team_id,
argMaxState(is_identified, created_at) is_identified,
argMaxState(properties, created_at) properties,
minState(created_at) created_at_,
maxState(created_at) updated_at
FROM {table_name}
GROUP BY id
""".format(
table_name=PERSONS_TABLE
)
PERSONS_UP_TO_DATE_VIEW = """
CREATE VIEW persons_up_to_date_view
AS
SELECT
id,
minMerge(created_at_) as created_at,
argMaxMerge(team_id) as team_id,
argMaxMerge(properties) as properties,
argMaxMerge(is_identified) as is_identified,
maxMerge(updated_at) as updated_at
FROM persons_up_to_date
GROUP BY id
"""
PERSONS_WITH_PROPS_TABLE_SQL = """
CREATE TABLE persons_with_array_props_view
(
id UUID,
created_at DateTime64,
team_id Int64,
properties VARCHAR,
is_identified Boolean,
array_property_keys Array(VARCHAR),
array_property_values Array(VARCHAR),
_timestamp UInt64,
_offset UInt64
) ENGINE = {engine}
PARTITION BY toYYYYMM(created_at)
ORDER BY (team_id, toDate(created_at), id)
SAMPLE BY id
{storage_policy}
""".format(
engine=table_engine("persons_with_array_props_view", "_timestamp"), storage_policy=STORAGE_POLICY
)
MAT_PERSONS_WITH_PROPS_TABLE_SQL = """
CREATE MATERIALIZED VIEW persons_with_array_props_mv
TO persons_with_array_props_view
AS SELECT
id,
created_at,
team_id,
properties,
is_identified,
arrayMap(k -> toString(k.1), JSONExtractKeysAndValuesRaw(properties)) array_property_keys,
arrayMap(k -> toString(k.2), JSONExtractKeysAndValuesRaw(properties)) array_property_values,
_timestamp,
_offset
FROM person
"""
MAT_PERSONS_PROP_TABLE_SQL = """
CREATE MATERIALIZED VIEW persons_properties_view
ENGINE = MergeTree()
ORDER BY (team_id, key, value, id)
AS SELECT
id,
team_id,
array_property_keys as key,
array_property_values as value,
created_at
from persons_with_array_props_view
ARRAY JOIN array_property_keys, array_property_values
"""
PERSONS_PROP_UP_TO_DATE_VIEW = """
CREATE VIEW persons_properties_up_to_date_view
AS
SELECT * FROM persons_properties_view WHERE (id, created_at) IN (SELECT id, maxMerge(updated_at) as latest FROM persons_up_to_date GROUP BY id)
"""
GET_PERSON_SQL = """
SELECT * FROM persons_up_to_date_view WHERE team_id = %(team_id)s
"""
PERSONS_DISTINCT_ID_TABLE = "person_distinct_id"
PERSONS_DISTINCT_ID_TABLE_BASE_SQL = """
CREATE TABLE {table_name}
(
id Int64,
distinct_id VARCHAR,
person_id UUID,
team_id Int64
{extra_fields}
) ENGINE = {engine}
"""
PERSONS_DISTINCT_ID_TABLE_SQL = (
PERSONS_DISTINCT_ID_TABLE_BASE_SQL
+ """Order By (team_id, distinct_id, person_id, id)
{storage_policy}
"""
).format(
table_name=PERSONS_DISTINCT_ID_TABLE,
engine=table_engine(PERSONS_DISTINCT_ID_TABLE, "_timestamp"),
extra_fields=KAFKA_COLUMNS,
storage_policy=STORAGE_POLICY,
)
KAFKA_PERSONS_DISTINCT_ID_TABLE_SQL = PERSONS_DISTINCT_ID_TABLE_BASE_SQL.format(
table_name="kafka_" + PERSONS_DISTINCT_ID_TABLE, engine=kafka_engine(KAFKA_PERSON_UNIQUE_ID), extra_fields="",
)
PERSONS_DISTINCT_ID_TABLE_MV_SQL = """
CREATE MATERIALIZED VIEW {table_name}_mv
TO {table_name}
AS SELECT
id,
distinct_id,
person_id,
team_id,
_timestamp,
_offset
FROM kafka_{table_name}
""".format(
table_name=PERSONS_DISTINCT_ID_TABLE
)
GET_DISTINCT_IDS_SQL = """
SELECT * FROM person_distinct_id WHERE team_id = %(team_id)s
"""
GET_DISTINCT_IDS_SQL_BY_ID = """
SELECT * FROM person_distinct_id WHERE team_id = %(team_id)s AND person_id = %(person_id)s
"""
GET_PERSON_BY_DISTINCT_ID = """
SELECT p.* FROM persons_up_to_date_view as p inner join (SELECT person_id, distinct_id FROM person_distinct_id WHERE team_id = %(team_id)s) as pid on p.id = pid.person_id where team_id = %(team_id)s AND distinct_id = %(distinct_id)s
"""
GET_PERSONS_BY_DISTINCT_IDS = """
SELECT
p.id,
p.created_at,
p.team_id,
p.properties,
p.is_identified,
groupArray(pid.distinct_id) as distinct_ids
FROM
person as p
INNER JOIN
person_distinct_id as pid on p.id = pid.person_id
WHERE
team_id = %(team_id)s
AND distinct_id IN (%(distinct_ids)s)
GROUP BY
p.id,
p.created_at,
p.team_id,
p.properties,
p.is_identified
"""
PERSON_DISTINCT_ID_EXISTS_SQL = """
SELECT count(*) FROM person_distinct_id
inner join (
SELECT arrayJoin({}) as distinct_id
) as id_params ON id_params.distinct_id = person_distinct_id.distinct_id
where person_distinct_id.team_id = %(team_id)s
"""
INSERT_PERSON_SQL = """
INSERT INTO person SELECT %(id)s, %(timestamp)s, %(team_id)s, %(properties)s, %(is_identified)s, %(timestamp)s, 0
"""
INSERT_PERSON_DISTINCT_ID = """
INSERT INTO person_distinct_id SELECT %(id)s, %(distinct_id)s, %(person_id)s, %(team_id)s, now(), 0 VALUES
"""
UPDATE_PERSON_PROPERTIES = """
ALTER TABLE person UPDATE properties = %(properties)s where id = %(id)s
"""
UPDATE_PERSON_ATTACHED_DISTINCT_ID = """
ALTER TABLE person_distinct_id UPDATE person_id = %(person_id)s where distinct_id = %(distinct_id)s
"""
DELETE_PERSON_BY_ID = """
ALTER TABLE person DELETE where id = %(id)s
"""
DELETE_PERSON_EVENTS_BY_ID = """
ALTER TABLE events DELETE
where distinct_id IN (
SELECT distinct_id FROM person_distinct_id WHERE person_id=%(id)s AND team_id = %(team_id)s
)
AND team_id = %(team_id)s
"""
DELETE_PERSON_MATERIALIZED_BY_ID = """
ALTER TABLE persons_up_to_date DELETE where id = %(id)s
"""
DELETE_PERSON_DISTINCT_ID_BY_PERSON_ID = """
ALTER TABLE person_distinct_id DELETE where person_id = %(id)s
"""
UPDATE_PERSON_IS_IDENTIFIED = """
ALTER TABLE person UPDATE is_identified = %(is_identified)s where id = %(id)s
"""
PERSON_TREND_SQL = """
SELECT DISTINCT distinct_id FROM events WHERE team_id = %(team_id)s {entity_filter} {filters} {parsed_date_from} {parsed_date_to}
"""
PEOPLE_THROUGH_DISTINCT_SQL = """
SELECT id, created_at, team_id, properties, is_identified, groupArray(distinct_id) FROM persons_up_to_date_view INNER JOIN (
SELECT DISTINCT person_id, distinct_id FROM person_distinct_id WHERE distinct_id IN ({content_sql}) AND team_id = %(team_id)s
) as pdi ON persons_up_to_date_view.id = pdi.person_id
WHERE team_id = %(team_id)s
GROUP BY id, created_at, team_id, properties, is_identified
LIMIT 200 OFFSET %(offset)s
"""
PEOPLE_SQL = """
SELECT id, created_at, team_id, properties, is_identified, groupArray(distinct_id) FROM persons_up_to_date_view INNER JOIN (
SELECT DISTINCT person_id, distinct_id FROM person_distinct_id WHERE person_id IN ({content_sql}) AND team_id = %(team_id)s
) as pdi ON persons_up_to_date_view.id = pdi.person_id GROUP BY id, created_at, team_id, properties, is_identified
LIMIT 200 OFFSET %(offset)s
"""
PEOPLE_BY_TEAM_SQL = """
SELECT id, created_at, team_id, properties, is_identified, groupArray(distinct_id) FROM persons_up_to_date_view INNER JOIN (
SELECT DISTINCT person_id, distinct_id FROM person_distinct_id WHERE team_id = %(team_id)s
) as pdi ON persons_up_to_date_view.id = pdi.person_id
WHERE team_id = %(team_id)s {filters}
GROUP BY id, created_at, team_id, properties, is_identified
LIMIT 100 OFFSET %(offset)s
"""
GET_PERSON_TOP_PROPERTIES = """
SELECT key, count(1) as count FROM
persons_properties_up_to_date_view
WHERE team_id = %(team_id)s
GROUP BY key ORDER BY count DESC LIMIT %(limit)s
"""
GET_DISTINCT_IDS_BY_PROPERTY_SQL = """
SELECT distinct_id FROM person_distinct_id WHERE person_id IN
(
SELECT id
FROM person
WHERE team_id = %(team_id)s {filters}
) AND team_id = %(team_id)s
"""