File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed
src/orchestratord/src/controller Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 40
40
- " --cloud-provider={{ .Values.operator.cloudProvider.type }}"
41
41
- " --region={{ .Values.operator.cloudProvider.region }}"
42
42
- " --secrets-controller={{ .Values.operator.secretsController }}"
43
+ # (SangJunBak) For self-managed, we disable statement logging due to performance issues
44
+ # https://github.com/MaterializeInc/cloud/issues/10755
45
+ - " --disable-statement-logging"
43
46
{{- range $key, $value := include "materialize-operator.selectorLabels" . | fromYaml }}
44
47
- " --orchestratord-pod-selector-labels={{ $key }}={{ $value }}"
45
48
{{- end }}
69
72
{{- if .Values.operator.features.createConsole }}
70
73
- " --create-console"
71
74
{{- end }}
72
- - " --console-image-tag-default=25.1.0-beta.3 "
75
+ - " --console-image-tag-default=25.1.1 "
73
76
{{- range $key, $value := .Values.operator.features.consoleImageTagMapOverride }}
74
77
- " --console-image-tag-map={{ $key }}={{ $value }}"
75
78
{{- end }}
Original file line number Diff line number Diff line change @@ -64,21 +64,21 @@ tests:
64
64
storage.storageClass.name : " "
65
65
asserts :
66
66
- matchRegex :
67
- path : spec.template.spec.containers[0].args[12 ] # Index of the environmentd-cluster-replica-sizes argument
67
+ path : spec.template.spec.containers[0].args[13 ] # Index of the environmentd-cluster-replica-sizes argument
68
68
pattern : disk_limit":"0"
69
69
- matchRegex :
70
- path : spec.template.spec.containers[0].args[12 ]
70
+ path : spec.template.spec.containers[0].args[13 ]
71
71
pattern : is_cc":true
72
72
73
73
- it : should have a cluster with disk limit to 1552MiB when storage class is configured
74
74
set :
75
75
storage.storageClass.name : " my-storage-class"
76
76
asserts :
77
77
- matchRegex :
78
- path : spec.template.spec.containers[0].args[12 ]
78
+ path : spec.template.spec.containers[0].args[13 ]
79
79
pattern : disk_limit":"1552MiB"
80
80
- matchRegex :
81
- path : spec.template.spec.containers[0].args[12 ]
81
+ path : spec.template.spec.containers[0].args[13 ]
82
82
pattern : is_cc":true
83
83
84
84
- it : should configure for AWS provider correctly
Original file line number Diff line number Diff line change 15
15
# deployed to production, but the version needs to be bumped whenever features
16
16
# that the console depends upon are removed (to a version of the console that
17
17
# doesn't depend on those features).
18
- FROM materialize/console:25.1.0-beta.3 AS console
18
+ FROM materialize/console:25.1.1 AS console
19
19
20
20
MZFROM ubuntu-base
21
21
Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ pub struct MaterializeControllerArgs {
76
76
enable_security_context : bool ,
77
77
#[ clap( long) ]
78
78
enable_internal_statement_logging : bool ,
79
+ #[ clap( long, default_value = "false" ) ]
80
+ disable_statement_logging : bool ,
79
81
80
82
#[ clap( long) ]
81
83
orchestratord_pod_selector_labels : Vec < KeyValueArg < String , String > > ,
Original file line number Diff line number Diff line change @@ -893,6 +893,11 @@ fn create_environmentd_statefulset_object(
893
893
if config. enable_internal_statement_logging {
894
894
args. push ( "--system-parameter-default=enable_internal_statement_logging=true" . into ( ) ) ;
895
895
}
896
+
897
+ if config. disable_statement_logging {
898
+ args. push ( "--system-parameter-default=statement_logging_max_sample_rate=0" . into ( ) ) ;
899
+ }
900
+
896
901
if config. disable_authentication {
897
902
args. push ( "--system-parameter-default=enable_rbac_checks=false" . into ( ) ) ;
898
903
}
You can’t perform that action at this time.
0 commit comments