Zhen Wang
Zhen Wang
@Ocean22 Thanks for your report. It may be caused by `comment lines` or `empty lines` in your script.
I did a simple test to reproduce it. execute script with the following content: ``` -- 111 -- 2222 -- 333 use sample; show tables; ``` get the following print:...
The empty lines seem to be printed by `ConsoleReader#accept` and output to stderr , so we can solve it like: ``` -f XXX.sql 2>/dev/null ```
> May that cause error messages lost if redirecting `stderr` to `/dev/null`? Yes, error messages are also lost.
Thanks, merged to master and branch-1.9
It looks like there may be scala version conflict. ``` *** RUN ABORTED *** java.lang.NoClassDefFoundError: scala/collection/SeqOps at org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions.$anonfun$apply$2(IcebergSparkSessionExtensions.scala:50) at org.apache.spark.sql.SparkSessionExtensions.$anonfun$buildResolutionRules$1(SparkSessionExtensions.scala:174) at scala.collection.TraversableLike.$anonfun$map$1(TraversableLike.scala:286) at scala.collection.mutable.ResizableArray.foreach(ResizableArray.scala:62) at scala.collection.mutable.ResizableArray.foreach$(ResizableArray.scala:55) at scala.collection.mutable.ArrayBuffer.foreach(ArrayBuffer.scala:49) at scala.collection.TraversableLike.map(TraversableLike.scala:286)...
@mrpengbei There seems to be a problem with the `iceberg-spark-runtime-3.3_2.12-1.5.jar`. We can first specify `iceberg.version=1.5.0` in the `spark-3.3` profile. and cc @cxzl25 @pan3793
A similar error occurs in `iceberg-spark-runtime-3.5` with scala 2.13: ``` *** RUN ABORTED *** java.lang.NoClassDefFoundError: scala/Serializable at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:756) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:473) at java.net.URLClassLoader.access$100(URLClassLoader.java:74) at java.net.URLClassLoader$1.run(URLClassLoader.java:369) at...
[Bug] The client did not judge the failure of uploading to bml, resulting in unclear error messages.
> 没人回复嘛 This problem is not serious. It is the failure to upload bml that leads to NPE so that the error message is not clear. More clear errors can...
[【Linkis 权限系统对接】](https://wforget.github.io/2020/10/30/Linkis-%E6%9D%83%E9%99%90%E7%B3%BB%E7%BB%9F%E5%AF%B9%E6%8E%A5/):基于 Linkis 0.11,接入内部 Hive 库表权限系统 [【Linkis 新引擎实现分享】](https://wforget.github.io/2020/11/01/Linkis-%E6%96%B0%E5%BC%95%E6%93%8E%E5%AE%9E%E7%8E%B0%E5%88%86%E4%BA%AB/):基于 Linkis 0.11,以 ElasticSearch 引擎为例分享新引擎实现思路,并分享 DataSource 路由功能实现