1. Confluent Documentation, Kafka Connect, Configuration Properties: The official documentation lists the worker configuration properties that define the names of these internal topics.
config.storage.topic: "The name of the topic where connector and task configuration data are stored." The default value is connect-configs.
offset.storage.topic: "The name of the topic where connector offsets are stored." The default value is connect-offsets.
status.storage.topic: "The name of the topic where connector and task status data are stored." The default value is connect-status.
Source Reference: Confluent Documentation, "Worker Configuration Properties for Kafka Connect", Section: "Distributed Worker Configuration".
2. Apache Kafka Documentation, Kafka Connect 3.7: The official Apache Kafka documentation corroborates these configuration properties and their purpose for distributed workers.
Source Reference: Apache Kafka Documentation, Section 8.2 "Connect Configuration". The properties config.storage.topic, offset.storage.topic, and status.storage.topic are detailed for the distributed worker (connect-distributed.properties).