首页 > 编程语言 >appendToFile: Failed to replace a bad datanode on the existing pipeline due to no more good datanode

appendToFile: Failed to replace a bad datanode on the existing pipeline due to no more good datanode

时间:2022-10-05 21:11:45浏览次数:57  
标签:pipeline good no due existing Failed DataNode datanode

报错:appendToFile: Failed to replace a bad datanode on the existing pipeline due to no more good datanode

原因1:Hadoop默认副本数为3,而我只有2台DataNode,故缺少DataNode。
解决:增加一台DataNode。

原因2:未将DataNode的数据传输端口打开
解决:firewall-cmd --zone=public --add-port=9866/tcp --permanent

标签:pipeline,good,no,due,existing,Failed,DataNode,datanode
From: https://www.cnblogs.com/lgjb/p/16756364.html

相关文章

  • 520813 - FAQ: BAPIs for goods
    SymptomThisnotecontainsfrequentlyaskedquestions/answersregarding'BAPIsforgoodsmovements'.Questions1.WherecanIfindthedocumentationforcallingth......
  • 华为软件开发平台 DevCloud 和 流水线(CloudPipeline)使用汇总
    华为软件开发平台DevCloud和流水线(CloudPipeline)使用汇总1.DevCloud产品概述:软件开发平台(DevCloud)是面向开发者提供的一站式云端DevSecOps平台,即开即用,随时随地在云......
  • Pipeline 责任链
    publicclassMain{publicstaticvoidmain(String[]args){Pipelinep=newPipeline();p.addLast(newHandler1());p.addLast(new......
  • 使用Blue Ocean设计pipeline脚本
    BlueOcean是pipeline的可视化ui,可以通过图形ui设计pipeline先在gitlab创建一个项目,必须是空项目(连README文件也不能有),项目名称这里命名为pipeline 安装插件BlueOcea......
  • 如何在 Apple Silicon 上安装 Kubeflow Pipelines v2
    如何在AppleSilicon上安装KubeflowPipelinesv2KubeflowPipelines(KFP)是一个强大的平台,用于使用Kubernetes大规模构建机器学习管道.该平台在GCP等主要云平台......
  • scrapy框架之item与pipelines
    继续以起点小说为例子,我们要做的就是把对象存储到item(类似于一个字典)中,在通过pipelines持久化到txt文件中。之前我们在运行爬虫的后面加“-o爬虫名称”这样很方便,但是也......
  • jenkins pipeline notes
    获取触发用户:defBUILDER_USER="${currentBuild.getBuildCauses()[0].userId}"由上游项目触发时获取上游项目构建信息和触发用户:post{always{script......
  • 持续集成环境问题汇总(基于:java + testng + httpclient + allure + git + gitlab + jen
    说明包含前期调试遇到的问题 idea中,命令执行testng.xml,报错PleaserefertoD:\myjava\apiAutoTest\target\surefire-reportsfortheindividualtestresults.参考......
  • Hadoop集群启动没有DataNode进程
    问题状况:问题原因:在启动Hadoop之前,进行了多次格式化,导致DataNode的ID发生了变化解决方案:我们可以删除从节点所有的DataNode资料,并重新格式化解决流程1、根据core-si......
  • Jenkins Pipeline项目实战
    一、项目流程 Jenkins从git拉取指定tag代码Jenkins构建代码、镜像以及推送镜像到镜像库Jenkins通过PublishOverSSH通知远程服务器拉取镜像、远程服务器通过镜像启......