File tree Expand file tree Collapse file tree 4 files changed +19
-17
lines changed
rust/operator-binary/src/connect Expand file tree Collapse file tree 4 files changed +19
-17
lines changed Original file line number Diff line number Diff line change @@ -551,20 +551,21 @@ pub(crate) fn server_properties(
551
551
) ,
552
552
(
553
553
"spark.driver.extraClassPath" . to_string ( ) ,
554
- Some ( format ! ( "/stackable/spark/extra-jars/*:/stackable/spark/connect/spark-connect_2.12 -{spark_version}.jar" ) ) ,
554
+ Some ( format ! ( "/stackable/spark/extra-jars/*:/stackable/spark/connect/spark-connect -{spark_version}.jar" ) ) ,
555
555
) ,
556
556
(
557
557
"spark.metrics.conf" . to_string ( ) ,
558
- Some ( format ! ( "{VOLUME_MOUNT_PATH_CONFIG}/{METRICS_PROPERTIES_FILE}" ) ) ,
558
+ Some ( format ! (
559
+ "{VOLUME_MOUNT_PATH_CONFIG}/{METRICS_PROPERTIES_FILE}"
560
+ ) ) ,
559
561
) ,
560
562
// This enables the "/metrics/executors/prometheus" endpoint on the server pod.
561
563
// The driver collects metrics from the executors and makes them available here.
562
- // The "/metrics/prometheus" endpoint delievers the driver metrics.
564
+ // The "/metrics/prometheus" endpoint delivers the driver metrics.
563
565
(
564
566
"spark.ui.prometheus.enabled" . to_string ( ) ,
565
567
Some ( "true" . to_string ( ) ) ,
566
568
) ,
567
-
568
569
]
569
570
. into ( ) ;
570
571
Original file line number Diff line number Diff line change 8
8
vectorAggregatorConfigMapName: vector-aggregator-discovery
9
9
{% endif %}
10
10
sparkImage:
11
- {% if test_scenario ['values' ]['spark' ].find ("," ) > 0 %}
12
- custom: "{{ test_scenario['values'] ['spark'] .split(',')[1] }}"
13
- productVersion: "{{ test_scenario['values'] ['spark'] .split(',')[0] }}"
11
+ {% if test_scenario ['values' ]['spark-hbase-connector ' ].find ("," ) > 0 %}
12
+ custom: "{{ test_scenario['values'] ['spark-hbase-connector '] .split(',')[1] }}"
13
+ productVersion: "{{ test_scenario['values'] ['spark-hbase-connector '] .split(',')[0] }}"
14
14
{% else %}
15
- productVersion: "{{ test_scenario['values'] ['spark'] }}"
15
+ productVersion: "{{ test_scenario['values'] ['spark-hbase-connector '] }}"
16
16
{% endif %}
17
17
# pullPolicy: IfNotPresent
18
18
pullPolicy: Always
Original file line number Diff line number Diff line change @@ -57,10 +57,10 @@ spec:
57
57
activeDeadlineSeconds: 100
58
58
containers:
59
59
- name: simple-connect-app
60
- {% if test_scenario ['values' ]['spark-connect-client ' ].find ("," ) > 0 %}
61
- image: "{{ test_scenario['values'] ['spark-connect-client '] .split(',')[1] }}"
60
+ {% if test_scenario ['values' ]['spark-connect' ].find ("," ) > 0 %}
61
+ image: "{{ test_scenario['values'] ['spark-connect'] .split(',')[1] }}"
62
62
{% else %}
63
- image: oci.stackable.tech/stackable /spark-connect-client:{{ test_scenario['values'] ['spark-connect-client '] }}-stackable0.0.0-dev
63
+ image: oci.stackable.tech/sdp /spark-connect-client:{{ test_scenario['values'] ['spark-connect'] }}-stackable0.0.0-dev
64
64
{% endif %}
65
65
imagePullPolicy: IfNotPresent
66
66
command:
Original file line number Diff line number Diff line change @@ -7,20 +7,22 @@ dimensions:
7
7
values :
8
8
- 3.5.5
9
9
- 3.5.6
10
+ - 4.0.0
10
11
# Alternatively, if you want to use a custom image, append a comma and the full image name to the product version
11
12
# as in the example below.
12
13
# - 3.5.6,oci.stackable.tech/sandbox/spark-k8s:3.5.6-stackable0.0.0-dev
13
- - name : spark-delta-lake
14
+ - name : spark-hbase-connector
14
15
values :
16
+ - 3.5.5
15
17
- 3.5.6
16
- # - 3.5.6,oci.stackable.tech/sandbox/spark-k8s:3.5.6-stackable0.0.0-dev
17
- - name : spark-connect
18
+ - name : spark-delta-lake
18
19
values :
19
20
- 3.5.6
20
21
# - 3.5.6,oci.stackable.tech/sandbox/spark-k8s:3.5.6-stackable0.0.0-dev
21
- - name : spark-connect-client
22
+ - name : spark-connect
22
23
values :
23
24
- 3.5.6
25
+ - 4.0.0
24
26
# - 3.5.6,oci.stackable.tech/sandbox/spark-k8s:3.5.6-stackable0.0.0-dev
25
27
- name : hbase
26
28
values :
@@ -99,7 +101,7 @@ tests:
99
101
- openshift
100
102
- name : hbase-connector
101
103
dimensions :
102
- - spark
104
+ - spark-hbase-connector
103
105
- hbase
104
106
- hdfs-latest
105
107
- zookeeper-latest
@@ -113,7 +115,6 @@ tests:
113
115
- name : spark-connect
114
116
dimensions :
115
117
- spark-connect
116
- - spark-connect-client
117
118
- openshift
118
119
119
120
suites :
You can’t perform that action at this time.
0 commit comments