org.json4s.jackson.sparklinedata

SmileJson4sScalaModule

class SmileJson4sScalaModule extends Json4sScalaModule

Why all this rewiring? - core issue is that org.json4s.jackson.JValueSerializer always serializes an JInt as a BigInt. This is fine for the default ObjectMapper, but in the case of Smile the dataType of a value is added to the serialized form. On Druid's side certain values are checked for the correct dataType(like queryContext.minTopNThreshold must be an int). - to fix this we introduce an overridden JValueSerializer that checks the value of a JInt is an integer and serializes it as an Int. - to introduce the new Serializer we introduce a new com.fasterxml.jackson.databind.Module, and SerializerResolver

Linear Supertypes
Json4sScalaModule, Module, Versioned, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SmileJson4sScalaModule
  2. Json4sScalaModule
  3. Module
  4. Versioned
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SmileJson4sScalaModule()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def getModuleName(): String

    Definition Classes
    Json4sScalaModule → Module
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. def setupModule(ctxt: SetupContext): Unit

    Definition Classes
    SmileJson4sScalaModule → Json4sScalaModule → Module
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  20. def toString(): String

    Definition Classes
    AnyRef → Any
  21. def version(): Version

    Definition Classes
    Json4sScalaModule → Module → Versioned
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Json4sScalaModule

Inherited from Module

Inherited from Versioned

Inherited from AnyRef

Inherited from Any

Ungrouped