在此文档之后,有一个群集菜单可供选择, https://docs.hortonworks.com/HDPDocuments/HDF3/HDF-3.1.2/bk_administration/content/clustering.html
但是在使用docker-compose https://github.com/apache/nifi/blob/master/nifi-docker/docker-compose/README.md
时找不到集群管理菜单。我通过访问UI
http://0.0.0.0:32768/nifi/。使用if (isset($_GET['del'])) {
$id = $_GET['del'];
echo '<script> alert("The record"' . $id .'"will be deleted");<script>'; // exit;
mysqli_query($db, "DELETE FROM info WHERE id=$id");
$_SESSION['message'] = "Address deleted!";
header('location: index.php');
}
我的目标是通过使容器停止并启动(而不是终止)来检查集群行为,并检查数据丢失和处理器的行为
答案 0 :(得分:0)
所以这里提到
所有已发布的图像1.7.0或更高版本应与以下文件一起使用 提供
因为以下环境变量启用了群集设置
NIFI_CLUSTER_IS_NODE
仅在1.8.0之后存在
因此1.7.1无法正常工作