I'm using MSK on AWS, but for some reason I can't ...
# aws
c
I'm using MSK on AWS, but for some reason I can't figure out how to set the metadata mode. With kafka 3.7 it should be possible to use KRaft but I can't seem to find a way to specify this at https://www.pulumi.com/registry/packages/aws/api-docs/msk/cluster/ . Am I missing something?
q
IIRC this is specified via the kafkaVersion. E.g.
3.7.x.kraft
Yeah, based on the AWS docs:
To create a cluster in KRaft mode using the MSK API 
CreateCluster
 or 
CreateClusterV2
 operations, you should use 
3.7.x.kraft
 as the version. Use 
3.7.x
 as the version to create a cluster in ZooKeeper mode.
https://docs.aws.amazon.com/msk/latest/developerguide/metadata-management.html#kraft-intro
c
thanks!