17
17
18
18
package kafka .server .share ;
19
19
20
- import kafka .server .MetadataCache ;
21
-
22
20
import org .apache .kafka .common .Node ;
23
21
import org .apache .kafka .common .message .MetadataResponseData ;
24
22
import org .apache .kafka .common .network .ListenerName ;
25
23
import org .apache .kafka .common .protocol .Errors ;
26
24
import org .apache .kafka .common .requests .MetadataResponse ;
25
+ import org .apache .kafka .metadata .MetadataCache ;
27
26
import org .apache .kafka .server .share .SharePartitionKey ;
28
27
import org .apache .kafka .server .share .persister .ShareCoordinatorMetadataCacheHelper ;
29
28
37
36
import java .util .Set ;
38
37
import java .util .function .Function ;
39
38
40
- import scala .jdk .javaapi .CollectionConverters ;
41
- import scala .jdk .javaapi .OptionConverters ;
42
-
43
39
public class ShareCoordinatorMetadataCacheHelperImpl implements ShareCoordinatorMetadataCacheHelper {
44
40
private final MetadataCache metadataCache ;
45
41
private final Function <SharePartitionKey , Integer > keyToPartitionMapper ;
@@ -73,13 +69,11 @@ public Node getShareCoordinator(SharePartitionKey key, String internalTopicName)
73
69
Set <String > topicSet = new HashSet <>();
74
70
topicSet .add (internalTopicName );
75
71
76
- List <MetadataResponseData .MetadataResponseTopic > topicMetadata = CollectionConverters .asJava (
77
- metadataCache .getTopicMetadata (
78
- CollectionConverters .asScala (topicSet ),
79
- interBrokerListenerName ,
80
- false ,
81
- false
82
- )
72
+ List <MetadataResponseData .MetadataResponseTopic > topicMetadata = metadataCache .getTopicMetadata (
73
+ topicSet ,
74
+ interBrokerListenerName ,
75
+ false ,
76
+ false
83
77
);
84
78
85
79
if (topicMetadata == null || topicMetadata .isEmpty () || topicMetadata .get (0 ).errorCode () != Errors .NONE .code ()) {
@@ -92,7 +86,7 @@ public Node getShareCoordinator(SharePartitionKey key, String internalTopicName)
92
86
.findFirst ();
93
87
94
88
if (response .isPresent ()) {
95
- return OptionConverters . toJava ( metadataCache .getAliveBrokerNode (response .get ().leaderId (), interBrokerListenerName ) )
89
+ return metadataCache .getAliveBrokerNode (response .get ().leaderId (), interBrokerListenerName )
96
90
.orElse (Node .noNode ());
97
91
} else {
98
92
return Node .noNode ();
@@ -108,7 +102,7 @@ public Node getShareCoordinator(SharePartitionKey key, String internalTopicName)
108
102
@ Override
109
103
public List <Node > getClusterNodes () {
110
104
try {
111
- return CollectionConverters . asJava ( metadataCache .getAliveBrokerNodes (interBrokerListenerName ). toSeq () );
105
+ return metadataCache .getAliveBrokerNodes (interBrokerListenerName );
112
106
} catch (Exception e ) {
113
107
log .warn ("Exception while getting cluster nodes" , e );
114
108
}
0 commit comments