YarnLogCollector - no specified am log with applicationId application_1688487918045_33246
时间: 2023-07-29 21:10:09 浏览: 81
YarnLogCollector是一个用于收集YARN应用程序日志的工具。根据您提供的信息,提示中提到了"no specified am log with applicationId application_1688487918045_33246",这可能意味着在给定的应用程序ID下没有指定的AM(Application Master)日志。
请确保您提供的应用程序ID是正确的,并且该应用程序确实存在。如果应用程序存在但没有指定的AM日志,请检查YARN集群的配置和日志设置,确保AM日志记录已启用。
如果问题仍然存在,请提供更多详细信息,以便我能够更好地帮助您解决问题。
相关问题
2023-07-14T05:08:07.794754Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2023-07-14T05:08:07.796826Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting. 2023-07-14T05:08:07.796854Z 0 [ERROR] Aborting 2023-07-14T05:08:07.794754Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2023-07-14T05:08:07.796826Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting. 2023-07-14T05:08:07.796854Z 0 [ERROR] Aborting 2023-07-14T05:08:07.794754Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2023-07-14T05:08:07.796826Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting. 2023-07-14T05:08:07.796854Z 0 [ERROR] Aborting
这个错误信息表明在初始化数据库时出现了问题。错误提示中提到了一个警告和两个错误:
- 警告:TIMESTAMP with implicit DEFAULT value is deprecated. 这意味着在使用不带默认值的TIMESTAMP类型时出现了警告,建议使用--explicit_defaults_for_timestamp选项来设置显式的默认值。
- 错误1:--initialize指定了,但数据目录中已存在文件。这表示在执行初始化操作时,发现数据目录中已经存在文件,因此无法继续进行。
- 错误2:Aborting。这是由于前一个错误导致初始化操作被中止。
要解决这个问题,你可以尝试以下步骤:
1. 检查数据目录中是否存在其他文件。如果存在其他文件,请备份并移除这些文件,然后重新执行初始化操作。
2. 如果你想保留数据目录中的文件,可以尝试不使用--initialize选项来启动数据库,以避免初始化操作并直接使用现有的文件。
3. 如果警告对你的应用程序没有实质性影响,你可以忽略它。
4. 如果你需要使用TIMESTAMP类型,建议使用--explicit_defaults_for_timestamp选项来设置显式的默认值,以避免警告。
如果问题仍然存在,请提供更多详细信息,以便我能够更好地帮助你解决问题。
+ cd qtbase + /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/configure -top-level -prefix /home/liuyh/workspace/QT5.12.4/qt-everywhere-src-5.14.2 -opensource -confirm-license -release -platform arm -xplatform qws/linux-arm-gnueabi-g++ -no-qt3support -depths 16,18,24,32 -no-qvfb -no-svg -no-cups -no-mmx -no-3dnow -no-sse -no-sse2 -no-glib -no-openssl -shared -no-largefile -no-accessibility -no-xrender -no-webkit -no-gtkstyle -nomake examples -nomake docs -nomake demos -plugin-mouse-pc -plugin-mouse-tslib -little-endian -plugin-mouse-linuxtp -fast -lrt -qt-mouse-tslib -D QT_NO_QWS_CURSOR -D QT_QWS_CLIENTBLIT -I /home/liuyh/workspace/tools/tslib/include -L /home/liuyh/workspace/tools/tslib/lib The specified system/compiler is not supported: /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/mkspecs/arm Please see the README file for a complete list.
这个错误提示表明你的系统/编译器不被支持,因此 Qt 无法在你的系统上进行编译。
首先,请确保你的编译器和系统符合 Qt 的要求。你可以在 Qt 的官方文档中查看支持的编译器和系统版本。如果你的编译器和系统版本被列为支持的版本,并且你仍然遇到这个错误,那么你可能需要检查你的 Qt 源代码。
在这个特定的错误中,似乎你正在尝试使用一个不被支持的平台来编译 Qt。请检查你的 "-platform" 和 "-xplatform" 选项,确保它们指定了正确的平台。如果你不确定应该使用哪个平台,请查看 Qt 的官方文档中关于平台的说明。
最后,如果你无法解决这个问题,请尝试在 Qt 的官方论坛或社区中寻求帮助。他们可能会提供更详细的解决方案或建议。
阅读全文