Share via


DataFrame.Hint(String, Object[]) Method

Definition

Specifies some hint on the current DataFrame.

public Microsoft.Spark.Sql.DataFrame Hint (string name, object[] parameters = default);
member this.Hint : string * obj[] -> Microsoft.Spark.Sql.DataFrame
Public Function Hint (name As String, Optional parameters As Object() = Nothing) As DataFrame

Parameters

name
String

Name of the hint

parameters
Object[]

Parameters of the hint

Returns

DataFrame object

Remarks

Due to the limitation of the type conversion between CLR and JVM, the type of object in `parameters` should be the same.

Applies to