2

I'm running confluent docker compose services and each time I start them with docker compose up I had to wait until tons of messages like this:

control-center | [2022-04-14 07:48:05,388] INFO Restored batch for store [MetricsAggregateStore] with topic-partition [_confluent-controlcenter-7-1-0-1-MetricsAggregateStore-changelog-0] with [100] records restored (io.confluent.controlcenter.streams.C3LoggingRestoreListener)

finish up loading.

I there a way to clear MetricsAggregateStore beforhand or clean it up? I don't really need it.

Hrvoje
  • 13,566
  • 7
  • 90
  • 104

1 Answers1

1

You should be able to use the kafka-streams-application-reset command to clean up the changelog topic, but you'd need to know the application.id of that internal process.

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245