File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
from ai .chronon .api .ttypes import Team
2
2
from ai .chronon .repo .constants import RunMode
3
- from ai .chronon .types import EnvironmentVariables
3
+ from ai .chronon .types import EnvironmentVariables , ConfigProperties
4
4
5
5
default = Team (
6
6
description = "Default team" ,
7
7
email = "ml-infra@<customer>.com" , # TODO: Infra team email
8
8
outputNamespace = "default" ,
9
+ conf = ConfigProperties (
10
+ common = {
11
+ "spark.chronon.partition.column" : "_DATE" ,
12
+ }
13
+ ),
9
14
env = EnvironmentVariables (
10
15
common = {
11
16
"VERSION" : "latest" ,
43
48
44
49
test = Team (
45
50
outputNamespace = "test" ,
51
+ conf = ConfigProperties (
52
+ common = {
53
+ "spark.chronon.partition.column" : "_test_column" ,
54
+ }
55
+ ),
46
56
env = EnvironmentVariables (
47
57
common = {
48
58
"GCP_BIGTABLE_INSTANCE_ID" : "test-instance" # example, custom bigtable instance
You can’t perform that action at this time.
0 commit comments