Kafka

Channel Revision Published Runs on
3/stable 156 27 Feb 2024
Ubuntu 22.04
3/candidate 156 27 Feb 2024
Ubuntu 22.04
3/beta 156 27 Feb 2024
Ubuntu 22.04
3/edge 165 Yesterday
Ubuntu 22.04
juju deploy kafka --channel 3/stable
Show information

Platform:

Ubuntu
22.04

charms.kafka.v0.kafka_snap

KafkaSnap class and methods

KafkaSnap provides a collection of common functions for managing the Kafka Snap and running bin commands common to both the Kafka and ZooKeeper charms.

The Kafka Snap tracks the upstream binaries released by The Apache Software Foundation that comes with Apache Kafka. Currently the snap channel is hard-coded to rock/edge.

Exposed methods includes snap installation, starting/restarting the snap service, and running bin commands exposed in the snap services

Example usage for KafkaSnap:


class KafkaCharm(CharmBase):
    def __init__(self, *args):
        super().__init__(*args)
        self.snap =  KafkaSnap()

        self.framework.observe(getattr(self.on, "start"), self._on_start)

    def _on_start(self, event):
        self.snap.install()
        self.snap.start_snap_service(snap_service="kafka")

class KafkaSnap

Description

Wrapper for performing common operations specific to the Kafka Snap. None

Methods

KafkaSnap. __init__( self )

KafkaSnap. install( self )

Loads the Kafka snap from LP, returning a StatusBase for the Charm to set.

Returns

True if successfully installed. False otherwise.

KafkaSnap. start_snap_service( self , snap_service: str )

Starts snap service process.

Arguments

snap_service

The desired service to run on the unit kafka or zookeeper

Returns

True if service successfully starts. False otherwise.

KafkaSnap. stop_snap_service( self , snap_service: str )

Stops snap service process.

Arguments

snap_service

The desired service to stop on the unit kafka or zookeeper

Returns

True if service successfully stops. False otherwise.

KafkaSnap. restart_snap_service( self , snap_service: str )

Restarts snap service process.

Arguments

snap_service

The desired service to run on the unit kafka or zookeeper

Returns

True if service successfully restarts. False otherwise.

KafkaSnap. run_bin_command( bin_keyword: str , bin_args , opts )

Runs kafka bin command with desired args.

Arguments

bin_keyword

the kafka shell script to run e.g configs, topics etc

bin_args

the shell command args

opts (optional)

the desired KAFKA_OPTS env var values for the command

Returns

String of kafka bin command output