cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How to translate Apache Pig FILTER statement to Spark?

User15787040559
Databricks Employee
Databricks Employee

If you have the following Apache Pig FILTER statement:

XCOCD_ACT_Y = FILTER XCOCD BY act_ind == 'Y';

the equivalent code in Apache Spark is:

XCOCD_ACT_Y_DF = (XCOCD_DF
    .filter(col("act_ind") == "Y"))

0 REPLIES 0

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now