
quickSQL
虎啸千峰
这个作者很懒,什么都没留下…
展开
-
quickSQL调试过程中报SPARK_HOME找不到解决方法
一、概述 最近在调研统一Sql解析方法,发现开源的quickSQL可以满足这一要求,就是该社区太不活跃了,文档也不全,现在将quickSQL编译中遇到的坑分享一下 二、Spark的home路径找不到问题解决方法 1、在window环境中配置SPARK_HOME路径 2、在window环境中配置HADOOP_HOME路径 3、将SPARK_HOME和HADOOP_HOME的路径配置到path环境变量中 4、在IDEA环境中配置SPARK_HOME路径 ...原创 2020-11-03 15:12:01 · 708 阅读 · 0 评论 -
Exception in thread “main“ java.lang.NoSuchMethodError: net.jpountz.lz4.LZ4BlockInputStream.<init>
quickSQL编译过程中出现:Exception in thread "main" java.lang.NoSuchMethodError: net.jpountz.lz4.LZ4BlockInputStream.<init>(Ljava/io/InputStream;Z)V的错误。 问题原因 1.spark2.4.5用到了lz4-1.3.0.jar,kafka0.9.0.1用到了lz4-1.2.0.jar,而程序运行时使用的是lz4-1.3.0.jar。 解决方法 qui...原创 2020-11-03 15:00:54 · 283 阅读 · 0 评论 -
ANTLR Tool version 4.7.2 used for code generation does not match the current runtime version 4.5.3
使用idea运行重构好的quickSQL,在编译期出现如下错误: ANTLR Tool version 4.7.2.used for code generation does not match the current runtime version 4.5.3 ANTLR 原因: <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-.原创 2020-11-03 14:56:14 · 3375 阅读 · 0 评论