Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-38141

NoSuchMethodError: org.json4s.JsonDSL$JsonAssoc org.json4s.JsonDSL$.pair2Assoc

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Invalid
    • 3.2.0, 3.2.1
    • 3.0.3
    • PySpark, Spark Core
    • None
    • pyspark 3.2.0

      python 3.8.0

      linux_x8664

      openjdk version "11.0.13" 2021-10-19

    Description

      When trying to save a pipeline I end up with this error:

      answer = 'xro14471', gateway_client = <py4j.clientserver.JavaClient object at 0x7f439482c310>, target_id = 'o14469', name = 'save'

          def get_return_value(answer, gateway_client, target_id=None, name=None):
              """Converts an answer received from the Java gateway into a Python object.

              For example, string representation of integers are converted to Python
              integer, string representation of objects are converted to JavaObject
              instances, etc.

              :param answer: the string returned by the Java gateway
              :param gateway_client: the gateway client used to communicate with the Java
                  Gateway. Only necessary if the answer is a reference (e.g., object,
                  list, map)
              :param target_id: the name of the object from which the answer comes from
                  (e.g., object1 in `object1.hello()`). Optional.
              :param name: the name of the member from which the answer comes from
                  (e.g., hello in `object1.hello()`). Optional.
              """
              if is_error(answer)[0]:
                  if len(answer) > 1:
                      type = answer[1]
                      value = OUTPUT_CONVERTER[type](answer[2:], gateway_client)
                      if answer[1] == REFERENCE_TYPE:
      >                   raise Py4JJavaError(
                              "An error occurred while calling {0}

      {1}

      {2}.\n".
                              format(target_id, ".", name), value)
      E                   py4j.protocol.Py4JJavaError: An error occurred while calling o14469.save.
      E                   : java.lang.NoSuchMethodError: 'org.json4s.JsonDSL$JsonAssoc org.json4s.JsonDSL$.pair2Assoc(scala.Tuple2, scala.Function1)'
      E                       at ml.dmlc.xgboost4j.scala.spark.params.DefaultXGBoostParamsWriter$.getMetadataToSave(DefaultXGBoostParamsWriter.scala:75)
      E                       at ml.dmlc.xgboost4j.scala.spark.params.DefaultXGBoostParamsWriter$.saveMetadata(DefaultXGBoostParamsWriter.scala:51)
      E                       at ml.dmlc.xgboost4j.scala.spark.XGBoostRegressionModel$XGBoostRegressionModelWriter.saveImpl(XGBoostRegressor.scala:454)
      E                       at org.apache.spark.ml.util.MLWriter.save(ReadWrite.scala:168)
      E                       at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      E                       at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
      E                       at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      E                       at java.base/java.lang.reflect.Method.invoke(Method.java:566)
      E                       at py4j.reflection.MethodInvoker.invoke(MethodInvoker.java:244)
      E                       at py4j.reflection.ReflectionEngine.invoke(ReflectionEngine.java:357)
      E                       at py4j.Gateway.invoke(Gateway.java:282)
      E                       at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132)
      E                       at py4j.commands.CallCommand.execute(CallCommand.java:79)
      E                       at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182)
      E                       at py4j.ClientServerConnection.run(ClientServerConnection.java:106)
      E                       at java.base/java.lang.Thread.run(Thread.java:829)

      Attachments

        Activity

          People

            Unassigned Unassigned
            ssiegel95 Stuart Siegel
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: