集群同步-》同步消费位点

This commit is contained in:
许晓东
2021-10-23 20:36:19 +08:00
parent e0e8e027d8
commit 0ffab24770

View File

@@ -1,17 +1,40 @@
<template> <template>
<div> <div class="content">
<HelloWorld msg="This is operation console."></HelloWorld> <div class="content-module">
<a-card title="数据同步" style="width: 100%; text-align: left">
<p>
<a-button type="primary"> 同步消费位点 </a-button>
<label>说明</label>
<span
>同步其它集群中指定消费组与订阅的topic的消费位点到当前集群上该消费组在当前集群已存在且双方订阅的topic分区信息一致</span
>
</p>
</a-card>
</div>
<div class="content-module">
<a-card title="副本管理" style="width: 100%; text-align: left">
<p>
<a-button type="primary"> 首选副本作为leader </a-button>
<label>说明</label>
<span>将集群中所有分区leader副本设置为首选副本</span>
</p>
</a-card>
</div>
</div> </div>
</template> </template>
<script> <script>
import HelloWorld from "@/components/HelloWorld.vue";
export default { export default {
name: "Operation", name: "Operation",
components: { components: {},
HelloWorld,
},
}; };
</script> </script>
<style scoped></style> <style scoped>
.content-module {
margin-bottom: 1%;
}
.content-module button {
margin-right: 1%;
}
</style>