Specifies whether to perform WHERE processing optimization by subsetting the data in the Hadoop cluster with MapReduce.
| Valid in: | SPD Server |
| DATA step and PROC step | |
| Requirement: | To perform data subsetting in the Hadoop cluster, there are table and SAS code requirements. For more information, see WHERE Processing Optimization with MapReduce. |
| Interaction: | The status of the HADOOPACCELWH parameter file option determines the functionality of the ACCELWHERE= table option. See HADOOPACCELWH Parameter File Option . |
turns on WHERE processing optimization when the HADOOPACCELWH parameter option is not included (undeclared) in the spdsserv.parm file, which is the default state. If the NOHADOOPACCELWH parameter option is included in the spdsserv.parm file, ACCELWHERE=YES is ignored and WHERE processing optimization is not performed.
turns off WHERE processing optimization when the HADOOPACCELWH parameter option is included (declared) in the spdsserv.parm file.
proc print data=my_lib.my_table (accelwhere=yes) where x=1; run;