error

解决MySQL版本不一致导致的数据导入失败的问题

吃可爱长大的小学妹 提交于 2020-11-11 09:41:50
MySQL默认是向下兼容的,因此,将低版本数据库的SQL文件导入到高版本数据库时不会报错,但反过来就不行, 高版本数据库的SQL文件在导入低版本数据库时会报错,提示 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'USING BTREE... 看了网上的一些方法,大部分都是修改 SQL语句,我也照着做结果发现不行,偶然之中我发现使用Navicat Premium中的数据传输功能可以轻松地将数据库用目标数据库的语法生成SQL语句。 在要导出的数据库上单击右键,选择数据传输。 接着选择目标数据库对应的SQL格式 最后使用生成的SQL就可以成功导入到目标数据库中。 来源: oschina 链接: https://my.oschina.net/u/1380885/blog/337976

Error creating bean with name 'scopedTarget.eurekaClient'

吃可爱长大的小学妹 提交于 2020-04-06 17:33:30
[ WARN ] [2020-03-31 11:06:11] com.netflix.config.sources.URLConfigurationSource [121] - No URLs will be polled as dynamic configuration sources. [ WARN ] [2020-03-31 11:06:11] com.netflix.config.sources.URLConfigurationSource [121] - No URLs will be polled as dynamic configuration sources. [ ERROR] [2020-03-31 11:06:13] org.springframework.cloud.netflix.eureka.serviceregistry.EurekaRegistration [120] - error getting CloudEurekaClient org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'scopedTarget.eurekaClient' defined in class path resource [org

Hadoop 2.0 编译问题小结

点点圈 提交于 2020-04-02 19:38:41
原文见 http://xiguada.org/ hadoop-2-x-compile/ 这些问题是2013年初整理的,不过到目前为止,即使最新的hadoop2.0系列,编译总体上变化不大,因此还能适用。 执行命令: mvn package -Pdist,native -DskipTests -Dtar 1. [ERROR] Failed to execute goal org.codehaus.mojo:make-maven-plugin:1.0-beta-1:autoreconf (compile) on project hadoop-common: autoreconf command returned an exit value != 0. Aborting build; see debug output for more information. -> [Help 1] 原因: 未安装autotool 解决方法: sudo apt-get install autocong sudo apt-get install automake sudo apt-get install libtool 2. [ERROR] Failed to execute goal org.codehaus.mojo:make-maven-plugin:1.0-beta-1:configure

关于ffmpeg的error返回值

柔情痞子 提交于 2020-03-27 14:55:44
3 月,跳不动了?>>> 在我的实际项目中, 用 av_read_frame获取音视频帧数据。 现在有个功能需要我根据 av_read_frame的返回值判断文件或者流是否结束。 之前对 av_read_frame的返回值只做了简单的判断。 今天查看源码,发现其返回的状态信息还是比较有用的 ,写此文记录一下吧。 av_read_frame简介: ffmpeg中的av_read_frame()的作用是读取码流中的音频若干帧或者视频一帧。例如,解码视频的时候,每解码一个视频帧,需要先调用 av_read_frame()获得一帧视频的压缩数据,然后才能对该数据进行解码(例如H.264中一帧压缩数据通常对应一个NAL)。 在error.h文件中有error的定义: /* error handling */ #if EDOM > 0 #define AVERROR(e) (-(e)) ///< Returns a negative error code from a POSIX error code, to return from library functions. #define AVUNERROR(e) (-(e)) ///< Returns a POSIX error code from a library function error return value. #else /*

Error 和 Exception的区别

不打扰是莪最后的温柔 提交于 2020-03-02 15:15:13
错误和异常的区别(Error vs Exception) 今天面试问了这样一个问题,"Error" 和 "Exception"之间有啥区别?我觉得挺有意思,但是似乎又不能脱口而出。查找了一番资料之后,稍微总结了一下。 1) error都是继承自父类java.lang.Error,而exception都继承自java.lang.Exception. 2) 再看看JDK中对于java.lang.Error和java.lang.Exception的解释。 java.lang.Error : An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch. Most such errors are abnormal conditions. 即:Error是Throwable的子类,用于标记严重错误。 合理的应用程序不应该去try/catch这种错误。绝大多数的错误都是非正常的,就根本不该出现的。 java.lang.Exception : The class Exception and its subclasses are a form of Throwable that indicates conditions