Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2021 12:17 PM
Using %sh, I am able to run commands on the notebook and get output. How can i run a command on the executor and get the output. I want to avoid using the Spark API's
Labels:
- Labels:
-
Apache spark
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2021 12:19 PM
It's not possible to use %sh to run commands on the executor. The below code can be used to run commands on the executor and get the output
var res=sc.runOnEachExecutor[String]({ () =>
import sys.process._
var cmd_Result=Seq("bash", "-c", "hostname").!!
cmd_Result
}, 100.seconds)
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2021 12:19 PM
It's not possible to use %sh to run commands on the executor. The below code can be used to run commands on the executor and get the output
var res=sc.runOnEachExecutor[String]({ () =>
import sys.process._
var cmd_Result=Seq("bash", "-c", "hostname").!!
cmd_Result
}, 100.seconds)

