You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been running a cluster for a day or so now and I was able to write fine, but for some reason the consumer groups would not work. Eventually I found out that the issue was the __consumer_offsets topic was saying there wasn't enough insync replicas. 1 was insync, but the minimum was 2. Looking at the kafka manager the replication is only set to one so this would never be achieved. Updating the min.insync.replicas to 1 fixed the issue and now everything is working properly.
Not sure where this is set during the creation of the cluster, but it may be a good idea to fix this for future users. Took a couple hours to figure out the issue and fix it.
The text was updated successfully, but these errors were encountered:
I have been running a cluster for a day or so now and I was able to write fine, but for some reason the consumer groups would not work. Eventually I found out that the issue was the
__consumer_offsets
topic was saying there wasn't enough insync replicas. 1 was insync, but the minimum was 2. Looking at the kafka manager the replication is only set to one so this would never be achieved. Updating themin.insync.replicas
to 1 fixed the issue and now everything is working properly.Not sure where this is set during the creation of the cluster, but it may be a good idea to fix this for future users. Took a couple hours to figure out the issue and fix it.
The text was updated successfully, but these errors were encountered: