ApacheSpark.Tables is a Power Query M function that returns a table listing the tables on the specified Spark cluster.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
ApacheSpark.Tables(
server as text,
protocol as number,
optional options as nullable record,
) as table
Description
Returns a table listing the tables on the Spark cluster host
using protocol
. Valid protocols are:
SparkProtocol.Standard, SparkProtocol.HTTP
Examples
Returns a table listing the tables on the specified Spark cluster.
Spark.Tables( "http://example.com:10000/cliservice", SparkProtocol.HTTP )
