Skip to content
5 changes: 5 additions & 0 deletions core/src/main/scala/kafka/tools/MirrorMaker.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ import scala.util.{Failure, Success, Try}
* enable.auto.commit=false
* 3. Mirror Maker Setting:
* abort.on.send.failure=true
*
* @deprecated The original Mirror Maker is deprecated since release 3.0. Similar functionality can be
* found in the Connect-based re-implementation by the same name (aka MM2).
Comment thread
ryannedolan marked this conversation as resolved.
Outdated
*/
@Deprecated
Comment thread
ryannedolan marked this conversation as resolved.
Outdated
object MirrorMaker extends Logging with KafkaMetricsGroup {

private[tools] var producer: MirrorMakerProducer = null
Expand All @@ -80,6 +84,7 @@ object MirrorMaker extends Logging with KafkaMetricsGroup {

def main(args: Array[String]): Unit = {

warn("This tool is deprecated and may be removed in a future major release.")
info("Starting mirror maker")
try {
val opts = new MirrorMakerOptions(args)
Expand Down