-
Notifications
You must be signed in to change notification settings - Fork 3
/
pb_project.yaml
57 lines (50 loc) · 1.49 KB
/
pb_project.yaml
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
# Project name
name: shopify_features_and_churn
# Project's yaml schema version
schema_version: 38
# WH Connection to use.
connection: test
# Whether to allow inputs having no timestamps,
# if true, data without timestamps are included when running models
include_untimed: true
# Model folders to use.
model_folders:
- models
# Entities in this project and their ids.
entities:
- name: user
serve_traits:
# default entity traits 360 model
- id_served: user_id
name: user_id_stitched_features
# default entity traits 360 model
- id_served: main_id
name: main_id_stitched_features
id_types:
- name: main_id
- name: user_id
- name: anonymous_id
filters:
- type: exclude
value: ""
- type: exclude
value: "unknown"
- type: exclude
value: "NaN"
- name: email
filters:
- type: include
regex: ".+@.+"
- type: exclude
value: "[email protected]"
packages:
- name: feature_table # Do not modify this. If this changes, it needs to be passed to train.py in the config as package_name: <value> and also in the inputs in python_model
url: https://github.com/rudderlabs/profiles-shopify-features.git
inputsMap:
rsCartUpdate: inputs/rsCartUpdate
rsIdentifies: inputs/rsIdentifies
rsOrderCancelled: inputs/rsOrderCancelled
rsOrderCreated: inputs/rsOrderCreated
rsOrderUpdated: inputs/rsOrderUpdated
rsPages: inputs/rsPages
rsTracks: inputs/rsTracks