Workaround 1: Start from scratch
I can testify that the following steps solve this error, but the side effects won't make you happy (me neither). The crude workaround I have found is to:
1.stop the cluster
2.delete the data directory on the problematic datanode: the directory is specified by dfs.data.dir in conf/hdfs-site.xml; if you followed this tutorial, the relevant directory is /usr/local/hadoop-datastore/hadoop-hadoop/dfs/data
3.reformat the namenode (NOTE: all HDFS data is lost during this process!)
4.restart the cluster
When deleting all the HDFS data and starting from scratch does not sound like a good idea (it might be ok during the initial setup/testing), you might give the second approach a try.
Workaround 2: Updating namespaceID of problematic datanodes
Big thanks to Jared Stehler for the following suggestion. I have not tested it myself yet, but feel free to try it out and send me your feedback. This workaround is "minimally invasive" as you only have to edit one file on the problematic datanodes:
1.stop the datanode
2.edit the value of namespaceID in <dfs.data.dir>/current/VERSION to match the value of the current namenode
3.restart the datanode
If you followed the instructions in my tutorials, the full path of the relevant file is /usr/local/hadoop-datastore/hadoop-hadoop/dfs/data/current/VERSION (background: dfs.data.dir is by default set to ${hadoop.tmp.dir}/dfs/data, and we set
hadoop.tmp.dir to /usr/local/hadoop-datastore/hadoop-hadoop).
If you wonder how the contents of VERSION look like, here's one of mine:
#contents of <dfs.data.dir>/current/VERSION
namespaceID=393514426
storageID=DS-1706792599-10.10.10.1-50010-1204306713481
cTime=1215607609074
storageType=DATA_NODE
layoutVersion=-13
原因:每次namenode format会重新创建一个namenodeId,而tmp/dfs/data下包含了上次format下的id,namenode format清空了namenode下的数据,但是没有晴空datanode下的数据,导致启动时失败,所要做的就是每次fotmat前,清空tmp一下 的所有目录.
分享到:
相关推荐
综上所述,解决`INSTALL_FAILED_CPU_ABI_INCOMPATIBLE`异常的关键在于理解和适配Android应用的ABI体系,以及根据使用的设备或模拟器类型选择正确的APK。对于Genymotion用户,特别需要注意的是找到或生成支持x86架构...
### "format ' x' invalid or incompatible with argument" 解决办法 在进行电子设计自动化(EDA)软件Protel 99 SE的操作过程中,用户可能会遇到一个常见的错误提示:“format ' x' invalid or incompatible with ...
Incompatible Types(解决方案).md
标题中的问题“protel 99se :format %x invalid or incompatible with argument”是一个常见的错误提示,通常在尝试运行或安装Protel 99SE软件时出现。这个错误表明程序在处理某种格式化字符串(%x)时遇到了不兼容...
解决这种不兼容问题的方法通常包括对相关软件或库的版本进行更新或降级,以确保所有组件都兼容运行。 要解决ERR_INCOMPATIBLE_VERSION错误,首先需要确定哪个软件或库版本不兼容。这一步骤涉及仔细检查错误消息或...
incompatible
在Android开发过程中,APK签名异常是一个常见的问题,特别是当出现"INSTALL_FAILED_SHARED_USER_INCOMPATIBLE"错误时,这通常意味着应用安装失败,因为应用的签名与已安装的共享用户ID的应用签名不匹配。本篇文章将...
3. **安装Service Pack或补丁**:压缩包中的`protel.99.se.sp6-patch.exe`可能就是为了解决此类问题的服务包或补丁。运行这个文件,按照提示进行安装,它可能会修复软件的格式化问题。 4. **检查系统环境变量**:...
### Java.io.InvalidClassException Local Class Incompatible 解决方案 在Java序列化过程中,经常会遇到`java.io.InvalidClassException`异常,特别是在序列化类时如果类的版本与反序列化环境中的类版本不一致的...
- **文件系统不兼容**:Protel 99对文件系统的支持有一定的限制,当软件试图访问的文件位于一个不被支持或不兼容的文件系统上时,就可能会出现此类错误。 - **文件损坏**:如果文件本身已经损坏或者数据结构存在错误...
Incompatible data dimensions(解决方案).md
标题和描述均提到了“Weblogic9异常解决nested errors”,这指向了在使用WebLogic Server 9版本时可能遇到的特定错误处理问题。WebLogic Server是Oracle公司提供的一款功能强大的应用服务器,它支持多种标准协议,如...
eclipse编译出来的apk,安装时报出INSTALL_FAILED_SHARED_USER_INCOMPATIBLE的错误。 原因:apk的AndroidManifest.xml中声明了android:sharedUserId="android.uid.system",但没有相应的签名 解决方案: 1. 找到编译...
问题:INSTALL_FAILED_SHARED_USER_INCOMPATIBLE 解决:android:sharedUserId="android.uid.system" <uses-permission android:name="android.permission.FORCE_STOP_PACKAGES"/>
SP6可能是对之前版本的升级,其中包含了对“format '%x' invalid or incompatible with argument”错误的修复。 关于Protel 99的这个错误,可能的原因有: 1. **参数类型不匹配**:`%x`期望一个无符号整型作为参数...
总的来说,解决"The selected device is incompatible"问题的关键在于理解设备和应用之间的兼容性要求,以及如何通过调整`minSdkVersion`、检查USB连接和驱动、更新设备固件等手段来确保两者之间的匹配。希望本文...
问题描述:在hadoop系统中,如果我们对namenode进行格式化(使用bin/hadoop namenode -format命令),然后重启集群,可能会出现Incompatible namespaceIDS错误。 解决方法: 1. 删除datanode的数据文件:删除...