0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 09:16:49 +01:00
posthog/ee/clickhouse/models/group.py
Neil Kakkar 82352c4a62
Funnel Groups filtering (#6940)
* enable groups filtering

* rerun snapshots

* update team

* fix tests
2021-11-09 08:32:55 +00:00

42 lines
1.3 KiB
Python

import datetime
import json
from typing import Dict, Optional
from django.utils.timezone import now
from ee.clickhouse.models.property import get_property_string_expr
from ee.clickhouse.sql.groups import INSERT_GROUP_SQL
from ee.kafka_client.client import ClickhouseProducer
from ee.kafka_client.topics import KAFKA_GROUPS
def create_group(
team_id: int,
group_type_index: int,
group_key: str,
properties: Optional[Dict] = {},
timestamp: Optional[datetime.datetime] = None,
):
if not timestamp:
timestamp = now()
data = {
"group_type_index": group_type_index,
"group_key": group_key,
"team_id": team_id,
"group_properties": json.dumps(properties),
"created_at": timestamp.strftime("%Y-%m-%d %H:%M:%S.%f"),
"_timestamp": timestamp.strftime("%Y-%m-%d %H:%M:%S"),
}
p = ClickhouseProducer()
p.produce(topic=KAFKA_GROUPS, sql=INSERT_GROUP_SQL, data=data)
def get_aggregation_target_field(
aggregation_group_type_index: Optional[int], event_table_alias: str, distinct_id_table_alias: str
) -> str:
if aggregation_group_type_index is not None:
return f"{event_table_alias}.$group_{aggregation_group_type_index}"
else:
return f"{distinct_id_table_alias}.person_id"