if you create a KafkaConsumer with SASL auth parameters like that: ``` consumer = KafkaConsumer(bootstrap_servers=str_broker_host, security_protocol='SASL_PLAINTEXT', sasl_mechanism='PLAIN', sasl_plain_username='user', sasl_plain_password='password') ``` it won't work with error Errors.NoBrokersAvailable() i need it to get topic sizes: ``` # topic name and partition end_offset = consumer.end_offsets([TopicPartition(topic[0], 0)]) ``` Also i checked the class KafkaConsumer, and there is no value "SASL_PLAINTEXT" for security_protocol. How can i get the topic size for 0 partition without calling the KafkaConsumer? Thank you in advance.