Giter Site home page Giter Site logo

Comments (8)

kanterov avatar kanterov commented on May 23, 2024

I'm not sure there is a way to fix it. Internally Spark represents Option[Option[Int]] as a single nullable Integer, so there is no difference in encoding Some(None) and None. To fix it we have to use to customize encoding for such cases, but this would break compatibility with the rest of Spark code, so the best we can is to break compilation for cases we don't support properly.

from frameless.

kanterov avatar kanterov commented on May 23, 2024

Spark has exactly the same behaviour:

scala> val xs: List[Option[Option[Int]]] = List(Some(None), None)
xs: List[Option[Option[Int]]] = List(Some(None), None)

scala> spark.createDataset(xs).collect()
res3: Array[Option[Option[Int]]] = Array(Some(None), Some(None))

from frameless.

kanterov avatar kanterov commented on May 23, 2024

Another example of things is X1[Option[X1[Option[Int]]], it doesn't work because in Spark struct itself can't be nullable, only it's fields, that's why in this case we can't find the difference between X1#a is null or X1#a#a is null.

from frameless.

imarios avatar imarios commented on May 23, 2024

very thorough explanation! I am not sure there is anything we can do. I am not even sure if there is any difference is semantics. For example, None or or Some(Some(None)) has pretty much the same semantic for me.

from frameless.

OlivierBlanvillain avatar OlivierBlanvillain commented on May 23, 2024

It's actually possible have an unboxed option where None and Some(None) can be differentiated. scala-unboxed-option uses the following trick: values are stored as themselves (thus the unboxed), and they is one "None value" for each level of nesting:

object None extends Option[Nothing]
object SomeNone extends Option[Option[Nothing]]
object SomeSomeNone extends Option[Option[Option[Nothing]]]
// ...

But that would be something to change in Spark not in Frameless :)

from frameless.

tscholak avatar tscholak commented on May 23, 2024

@kanterov what about things like TypedDataset[Tuple1[Vector[Option[Vector[Option[A]]]]]]? I'm actually using this ...

from frameless.

kanterov avatar kanterov commented on May 23, 2024

@tscholak hm... good question, probably the best is to add to the test suite, AFAIK should work if A is primitive

from frameless.

tscholak avatar tscholak commented on May 23, 2024

In my case, A is primitive, yes. I didn't have any problems with it so far, but just to be sure that it doesn't break any laws, I can add it to the tests.

from frameless.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.