Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-6116 DataFrame API improvement umbrella ticket (Spark 1.5)
  3. SPARK-7990

Add methods to facilitate equi-join on multiple join keys

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 1.5.0
    • SQL
    • None
    • Spark 1.5 doc/QA sprint

    Description

      We have a variant of the join function that facilitates equi-join on a single join key, but we don't have one to do it for multiple join keys.

      This is the existing Python API:

      def join(self, other, joinExprs=None, joinType=None):
      

      I think we should rename joinExprs to "on", and joinType to "how" to match Pandas. And then the "on" column should support either a string, a join condition, a list of string, or a list of join condition ("and" together).

      In order to support the Python API, we'd need to add a variant for Scala as well. I think we can add another join method that looks like

      def join(other: DataFrame, on: Seq[String], joinType: String): DataFrame
      

      and update the existing Scala one to call this one.

      Attachments

        Issue Links

          Activity

            People

              viirya L. C. Hsieh
              rxin Reynold Xin
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: