File tree Expand file tree Collapse file tree 14 files changed +184
-35
lines changed
local_accounts_common/defaults Expand file tree Collapse file tree 14 files changed +184
-35
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,18 @@ SCHEMAREGISTRY:
31
31
database_name: {{ databases.SCHEMAREGISTRY.name }}
32
32
database_user: {{ databases.SCHEMAREGISTRY.user }}
33
33
database_password: {{ databases.SCHEMAREGISTRY.password }}
34
+ SQL_STREAM_BUILDER:
35
+ SERVICEWIDE:
36
+ database_host: {{ databases.SQL_STREAM_BUILDER.host }}
37
+ database_port: {{ databases.SQL_STREAM_BUILDER.port }}
38
+ database_type: {{ databases.SQL_STREAM_BUILDER.type | cloudera.cluster.format_database_type }}
39
+ database_schema: {{ databases.SQL_STREAM_BUILDER.name }}
40
+ database_user: {{ databases.SQL_STREAM_BUILDER.user }}
41
+ database_password: {{ databases.SQL_STREAM_BUILDER.password }}
42
+ MATERIALIZED_VIEW_ENGINE:
43
+ ssb.mve.datasource.url: jdbc:{{ databases.SQL_STREAM_BUILDER_MVE.type | cloudera.cluster.format_database_type }}://{{ databases.SQL_STREAM_BUILDER_MVE.host }}:{{ databases.SQL_STREAM_BUILDER_MVE.port }}/{{ databases.SQL_STREAM_BUILDER_MVE.name }}
44
+ ssb.mve.datasource.username: {{ databases.SQL_STREAM_BUILDER_MVE.user }}
45
+ ssb.mve.datasource.password: {{ databases.SQL_STREAM_BUILDER_MVE.password }}
34
46
STREAMS_MESSAGING_MANAGER:
35
47
SERVICEWIDE:
36
48
smm_database_host: {{ databases.STREAMS_MESSAGING_MANAGER.host }}
Original file line number Diff line number Diff line change 71
71
FLINK:
72
72
SERVICEWIDE:
73
73
hdfs_service: hdfs
74
- hive_service: hive
75
74
yarn_service: yarn
76
- zookeeper_service: zoookeeper
75
+ zookeeper_service: zookeeper
76
+ {% if 'HIVE' in cluster .services %}
77
+ hive_service: hive
78
+ {% endif %}
77
79
{% if 'ATLAS' in cluster .services and not (cdh_cdp_upgrade |default (false )|bool ) %}
78
80
atlas_service: atlas
79
81
{% endif %}
@@ -174,6 +176,17 @@ SPARK3_ON_YARN:
174
176
hive_service: hive
175
177
{% endif %}
176
178
179
+ SQL_STREAM_BUILDER:
180
+ SERVICEWIDE:
181
+ flink_service: flink
182
+ kafka_service: kafka
183
+ {% if 'HIVE' in cluster .services %}
184
+ hive_service: hive
185
+ {% endif %}
186
+ {% if 'KNOX' in cluster .services %}
187
+ knox_service: knox
188
+ {% endif %}
189
+
177
190
TEZ:
178
191
SERVICEWIDE:
179
192
yarn_service: yarn
Original file line number Diff line number Diff line change 2
2
CORE_SETTINGS:
3
3
SERVICEWIDE:
4
4
hadoop_secure_web_ui: true
5
+ FLINK:
6
+ SERVICEWIDE:
7
+ kerberos.auth.enabled: true
5
8
HBASE:
6
9
SERVICEWIDE:
7
10
hbase_restserver_security_authentication: kerberos
Original file line number Diff line number Diff line change 1
1
---
2
2
OZONE:
3
3
OZONE_PROMETHEUS:
4
- ozone.prometheus.ca.file: {{ tls_chain_path }}
4
+ ozone.prometheus.ca.file: {{ tls_chain_path }}
5
+ SQL_STREAM_BUILDER:
6
+ STREAMING_SQL_ENGINE:
7
+ ssl_client_truststore_location: {{ tls_truststore_path }}
8
+ ssl_client_truststore_password: {{ tls_truststore_password }}
9
+ ssl_enabled: true
10
+ ssl_server_keystore_keypassword: {{ tls_keystore_password }}
11
+ ssl_server_keystore_location: {{ tls_keystore_path_generic }}
12
+ ssl_server_keystore_password: {{ tls_keystore_password }}
13
+ MATERIALIZED_VIEW_ENGINE:
14
+ ssl_client_truststore_location: {{ tls_truststore_path }}
15
+ ssl_client_truststore_password: {{ tls_truststore_password }}
16
+ ssl_enabled: true
17
+ ssl_server_keystore_keypassword: {{ tls_keystore_password }}
18
+ ssl_server_keystore_location: {{ tls_keystore_path_generic }}
19
+ ssl_server_keystore_password: {{ tls_keystore_password }}
20
+ STREAMING_SQL_CONSOLE:
21
+ ssl_client_truststore_location: {{ tls_chain_path }}
22
+ ssl_enabled: true
23
+ ssl_server_ca_certificate_location: {{ tls_chain_path }}
24
+ ssl_server_certificate_location: {{ tls_cert_path_generic }}
25
+ ssl_server_privatekey_location: {{ tls_key_path_generic }}
26
+ ssl_server_privatekey_password: {{ tls_key_password }}
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ cluster_services_ordered:
81
81
- CRUISE_CONTROL
82
82
- DAS
83
83
- FLINK
84
+ - SQL_STREAM_BUILDER
84
85
- SPARK
85
86
- SPARK2_ON_YARN
86
87
- SPARK3_ON_YARN
Original file line number Diff line number Diff line change 20
20
encoding : " {{ service | cloudera.cluster.get_database_encoding_mysql }}"
21
21
collation : " {{ service | cloudera.cluster.get_database_collation_mysql }}"
22
22
become : yes
23
- loop : " {{ databases | intersect(services) }}"
23
+ loop : " {{ databases }}"
24
24
loop_control :
25
25
loop_var : service
26
26
delegate_to : " {{ databases[service].host }}"
36
36
priv : " {{ databases[service].name }}.*:ALL"
37
37
no_log : yes
38
38
become : yes
39
- loop : " {{ databases | intersect(services) }}"
39
+ loop : " {{ databases }}"
40
40
loop_control :
41
41
loop_var : service
42
42
delegate_to : " {{ databases[service].host }}"
Original file line number Diff line number Diff line change 20
20
password : " {{ databases[item].password }}"
21
21
become : yes
22
22
become_user : postgres
23
- with_items : " {{ databases | intersect(services) }}"
23
+ with_items : " {{ databases }}"
24
24
delegate_to : " {{ databases[item].host }}"
25
25
connection : ssh
26
26
when : databases[item].host in groups.db_server
32
32
encoding : UTF-8
33
33
become : yes
34
34
become_user : postgres
35
- with_items : " {{ databases | intersect(services) }}"
35
+ with_items : " {{ databases }}"
36
36
delegate_to : " {{ databases[item].host }}"
37
37
connection : ssh
38
38
when : databases[item].host in groups.db_server
Original file line number Diff line number Diff line change @@ -179,6 +179,20 @@ database_defaults:
179
179
name : schemaregistry
180
180
user : schemaregistry
181
181
password : " {{ database_default_password }}"
182
+ SQL_STREAM_BUILDER :
183
+ host : " {{ database_host }}"
184
+ port : " {{ database_type | cloudera.cluster.default_database_port }}"
185
+ type : " {{ database_type }}"
186
+ name : ssb_admin
187
+ user : ssb_admin
188
+ password : " {{ database_default_password }}"
189
+ SQL_STREAM_BUILDER_MVE :
190
+ host : " {{ database_host }}"
191
+ port : " {{ database_type | cloudera.cluster.default_database_port }}"
192
+ type : " {{ database_type }}"
193
+ name : ssb_mve
194
+ user : ssb_mve
195
+ password : " {{ database_default_password }}"
182
196
STREAMS_MESSAGING_MANAGER :
183
197
host : " {{ database_host }}"
184
198
port : " {{ database_type | cloudera.cluster.default_database_port }}"
Original file line number Diff line number Diff line change 1
- - KEYTRUSTEE_SERVER
2
- - ZOOKEEPER
3
- - INFRA_SOLR
4
- - RANGER
5
- - RANGER_KMS
6
- - RANGER_KMS_KTS
7
- - RANGER_RAZ
8
- - KMS
9
- - HDFS
10
- - SENTRY
11
- - LIVY
12
- - HBASE
13
- - SOLR
14
- - SQOOP
15
- - SQOOP_CLIENT
16
1
- ACCUMULO16
17
2
- ACCUMULO_C6
18
- - HIVE
19
- - TEZ
20
- - HIVE_ON_TEZ
21
- - KUDU
22
- - IMPALA
23
- - YARN
24
3
- ADLS_CONNECTOR
4
+ - ATLAS
25
5
- AWS_S3
26
6
- CDSW
27
7
- CORE_SETTINGS
28
8
- CRUISE_CONTROL
29
9
- DAS
30
10
- FLINK
31
11
- FLUME
32
- - SPARK
33
- - SPARK2_ON_YARN
34
- - SPARK3_ON_YARN
35
- - SPARK_ON_YARN
12
+ - HBASE
13
+ - HDFS
14
+ - HIVE
15
+ - HIVE_ON_TEZ
16
+ - HUE
17
+ - IMPALA
18
+ - INFRA_SOLR
36
19
- ISILON
37
20
- KAFKA
38
21
- KEYTRUSTEE
22
+ - KEYTRUSTEE_SERVER
23
+ - KMS
39
24
- KNOX
40
25
- KS_INDEXER
26
+ - KUDU
27
+ - LIVY
41
28
- LUNA_KMS
42
29
- MAPREDUCE
43
30
- NIFI
44
31
- NIFIREGISTRY
45
32
- NIFITOOLKITCA
33
+ - OOZIE
46
34
- OZONE
47
35
- PHOENIX
48
36
- QUEUEMANAGER
37
+ - RANGER
38
+ - RANGER_KMS
39
+ - RANGER_KMS_KTS
40
+ - RANGER_RAZ
49
41
- SCHEMAREGISTRY
42
+ - SENTRY
43
+ - SOLR
44
+ - SPARK
45
+ - SPARK2_ON_YARN
46
+ - SPARK3_ON_YARN
47
+ - SPARK_ON_YARN
48
+ - SQL_STREAM_BUILDER
49
+ - SQOOP
50
+ - SQOOP_CLIENT
50
51
- STREAMS_MESSAGING_MANAGER
51
52
- STREAMS_REPLICATION_MANAGER
53
+ - TEZ
52
54
- THALES_KMS
53
55
- WXM
56
+ - YARN
54
57
- ZEPPELIN
55
- - ATLAS
56
- - OOZIE
57
- - HUE
58
+ - ZOOKEEPER
Original file line number Diff line number Diff line change 1
1
FLINK:
2
2
- FLINK_HISTORY_SERVER
3
3
- GATEWAY
4
+ SQL_STREAM_BUILDER:
5
+ - STREAMING_SQL_ENGINE
6
+ - MATERIALIZED_VIEW_ENGINE
7
+ - STREAMING_SQL_CONSOLE
You can’t perform that action at this time.
0 commit comments