SparkSession.SetActiveSession(SparkSession) Method

Definition

Changes the SparkSession that will be returned in this thread when GetOrCreate() is called. This can be used to ensure that a given thread receives a SparkSession with an isolated session, instead of the global (first created) context.

public static void SetActiveSession (Microsoft.Spark.Sql.SparkSession session);
static member SetActiveSession : Microsoft.Spark.Sql.SparkSession -> unit
Public Shared Sub SetActiveSession (session As SparkSession)

Parameters

session
SparkSession

SparkSession object

Applies to