SparkSessionConfig
Defined in: spark-session.ts:85
Construction parameters for a SparkSession. Most users build a session
via the runtime adapter’s builder (e.g. SparkSessionBuilder from
@spark-connect-js/node); this config is what the builder hands to
SparkSession._create internally.
Properties
Section titled “Properties”arrowDecoder?
Section titled “arrowDecoder?”optional arrowDecoder?: ArrowDecoderFn;Defined in: spark-session.ts:96
Arrow IPC to Row[] decoder injected by the runtime adapter. If not
provided, collect() and similar actions will throw at runtime.
remote
Section titled “remote”remote: string;Defined in: spark-session.ts:87
Spark Connect endpoint, e.g. "sc://localhost:15002".
sessionId?
Section titled “sessionId?”optional sessionId?: string;Defined in: spark-session.ts:99
Optional session ID override for reattaching to an existing server-side session.
transport
Section titled “transport”transport: Transport;Defined in: spark-session.ts:90
Transport implementation injected by the runtime adapter.