Partition

Commands for partition management.

 

fluvio partition list

Prints basic information about each partition in the cluster, such as which topic it belongs to, which SPU is leading the partition, and the various offsets the partition keeps track of.

Manage and view Partitions

Partitions are a way to divide the total traffic of a single Topic into separate streams which may be processed independently. Data sent to different partitions may be processed by separate SPUs on different computers. By dividing the load of a Topic evenly among partitions, you can increase the total throughput of the Topic.

Usage: fluvio partition <COMMAND>

Commands:
  list  List all of the Partitions in this cluster

Options:
  -h, --help
          Print help (see a summary with '-h')

Example usage:

$ fluvio partition list
 TOPIC     PARTITION  LEADER  REPLICAS  RESOLUTION  SIZE  HW  LEO  LRS  FOLLOWER OFFSETS 
 greeting  0          0       []        Online      86 B  1   1    0    [] 

More information about the columns HW, LEO, and LRS can be found in the details regarding the Synchronization Algorithm.