Re: [I] Crash when writing an array of struct [incubator-gluten]

2024-04-02 Thread via GitHub
clee704 commented on issue #4964: URL: https://github.com/apache/incubator-gluten/issues/4964#issuecomment-2033315974 Confirmed it's fixed in the latest commit. Thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

Re: [I] Crash when writing an array of struct [incubator-gluten]

2024-04-02 Thread via GitHub
clee704 closed issue #4964: Crash when writing an array of struct URL: https://github.com/apache/incubator-gluten/issues/4964 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment.

Re: [I] Crash when writing an array of struct [incubator-gluten]

2024-04-01 Thread via GitHub
JkSelf commented on issue #4964: URL: https://github.com/apache/incubator-gluten/issues/4964#issuecomment-2030926990 @clee704 Sorry for delayed response. It seems this issue has been fixed

Re: [I] Crash when writing an array of struct [incubator-gluten]

2024-03-26 Thread via GitHub
clee704 commented on issue #4964: URL: https://github.com/apache/incubator-gluten/issues/4964#issuecomment-2021599373 @JkSelf Actually it crashes on Spark 3.4 too. # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at

Re: [I] Crash when writing an array of struct [incubator-gluten]

2024-03-25 Thread via GitHub
JkSelf commented on issue #4964: URL: https://github.com/apache/incubator-gluten/issues/4964#issuecomment-2017458835 @clee704 @zhouyuan The Velox backend lacks support for writing complex types. Spark 34 has already implemented a fallback mechanism. PR

Re: [I] Crash when writing an array of struct [incubator-gluten]

2024-03-14 Thread via GitHub
zhouyuan commented on issue #4964: URL: https://github.com/apache/incubator-gluten/issues/4964#issuecomment-1998834795 It seems the complex data type is not correctly fallback there https://github.com/apache/incubator-gluten/issues/4110 CC: @JkSelf -- This is an automated

[I] Crash when writing an array of struct [incubator-gluten]

2024-03-14 Thread via GitHub
clee704 opened a new issue, #4964: URL: https://github.com/apache/incubator-gluten/issues/4964 ### Backend VL (Velox) ### Bug description This write operation crashes: `spark.sql("select array(struct(1), null)").write.mode("overwrite").save("X")` ### Spark