Disable authentication for HTTP OPTIONS method (preflight request)

998

You can limit the scope of Require valid-user by using Limit/LimitExcept :

<LimitExcept OPTIONS>
  Require valid-user
</LimitExcept>

See apache documentation on Limit

Share:
998

Related videos on Youtube

dcusmeb
Author by

dcusmeb

Updated on September 18, 2022

Comments

  • dcusmeb
    dcusmeb almost 2 years

    I have pyspark dataframe like this

    df = sqlContext.createDataFrame([
        Row(a=1, b=3),
        Row(a=3, b=2),
    ])
    
    +---+---+
    |  a|  b|
    +---+---+
    |  1|  3|
    |  3|  2|
    +---+---+
    

    I tried self-join on it like this

    df1 = df.alias("df1")
    df2 = df.alias("df2")
    
    cond = [df1.a == df2.b]
    df1.join(df2, cond).show()
    

    But it gives me error.

    Ideally i want to find all pair where one neighbor is common. (3 is common to both 1,2)

    +---+---+
    | c1| c2|
    +---+---+
    |  1|  2|
    +---+---+
    
    • ernest_k
      ernest_k almost 3 years
      This seems to work: df2 = df.select(df.a.alias('aa'), df.b.alias('bb')) and then df.join(df2, df.a == df2.bb).select(['b', 'aa']).show()
  • dcusmeb
    dcusmeb almost 3 years
    Thanks a lot <3, it worked. I think issue was with using df.a. Using col('df.a') works too.