SparkSessionOptions

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
name string
driverMemory string
driverCores integer
executorMemory string
executorCores integer
executorCount integer
conf object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-sparksessionoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SparkSessionOptions",
  "title": "SparkSessionOptions",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "driverMemory": {
      "type": "string"
    },
    "driverCores": {
      "type": "integer"
    },
    "executorMemory": {
      "type": "string"
    },
    "executorCores": {
      "type": "integer"
    },
    "executorCount": {
      "type": "integer"
    },
    "conf": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}