rxStopEngine: Stop Distributed Computing Engine

Description

rxStopEngine stops the remote Spark application.

Usage

  rxStopEngine(computeContext,   ...  )
  rxStopEngine(computeContext, scope = "session")

Arguments

computeContext

a valid RxDistributedHpa-class. Currently only RxSpark is supported.

scope

only used in rxStopEngine for RxSpark; a single character that takes the value of either:

  • "session": stop engine applications running in the current R session.
  • "user": stop engine applications running by the current user.

Details

This function stops distributed computing engine applications with scope set to either "session" or "user". Specifically, for the RxSpark compute context it stops the remote Spark application(s).

Value

No useful return value.

Author(s)

Microsoft Corporation Microsoft Technical Support

See Also

RxSpark

Examples


 ## Not run:

rxStopEngine( computeContext )
rxStopEngine( computeContext , scope = "user" )
## End(Not run)