Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/img/spark-connect-gotchas-antipattern.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
327 changes: 327 additions & 0 deletions docs/spark-connect-gotchas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,327 @@
---
layout: global
title: "Eager vs Lazy: Spark Connect vs Spark Classic"
license: |
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
---

The comparison highlights key differences between Spark Connect and Spark Classic in terms of execution and analysis behavior. While both utilize lazy execution for transformations, Spark Connect emphasizes deferred schema analysis, introducing unique considerations like temporary view handling and UDF evaluation. The guide outlines common gotchas and provides strategies for mitigation.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

, Spark Connect emphasizes deferred schema analysis -> , Spark Connect also defers analysis/, Spark Connect analyzes lazily

try to avoid too much indirection.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, done, and updated several other places as well.


**When does this matter?** These differences are particularly important when migrating existing code from Spark Classic to Spark Connect, or when writing code that needs to work with both modes. Understanding these distinctions helps avoid unexpected behavior and performance issues.

**Note:** The examples in this guide use Python, but the same principles apply to Scala and Java.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please be a champ and also add Scala/Java

Copy link
Contributor Author

@xi-db xi-db Oct 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, I've just added Scala examples.


For an overview of Spark Connect, see [Spark Connect Overview](spark-connect-overview.html).

# Query Execution: Both Lazy

## Spark Classic

In traditional Spark, DataFrame transformations (e.g., `filter`, `limit`) are lazy. This means they are not executed immediately but are recorded in a logical plan. The actual computation is triggered only when an action (e.g., `show()`, `collect()`) is invoked.

## Spark Connect

Spark Connect follows a similar lazy evaluation model. Transformations are constructed on the client side and sent as unresolved proto plans to the server. The server then performs the necessary analysis and execution when an action is called.

## Comparison

Both Spark Classic and Spark Connect follow the same lazy execution model for query execution.

| Aspect | Spark Classic | Spark Connect |
|:--------------------------------------------------------------------------------------|:----------------|:----------------|
| Transformations: `df.filter(...)`, `df.select(...)`, `df.limit(...)`, etc | Lazy execution | Lazy execution |
| SQL queries: <br/> `spark.sql("select …")` | Lazy execution | Lazy execution |
| Actions: `df.collect()`, `df.show()`, etc | Eager execution | Eager execution |
| SQL commands: <br/> `spark.sql("insert …")`, <br/> `spark.sql("create …")`, <br/> etc | Eager execution | Eager execution |

# Schema Analysis: Eager vs. Lazy

## Spark Classic

Traditionally, Spark Classic performs schema analysis eagerly during the logical plan construction phase. This means that when you define transformations, Spark immediately analyzes the DataFrame's schema to ensure all referenced columns and data types are valid.

For example, executing `spark.sql("select 1 as a, 2 as b").filter("c > 1")` will throw an error eagerly, indicating the column `c` cannot be found.

## Spark Connect

Spark Connect differs from Classic's eager analysis because the client constructs unresolved proto plans during transformation. When accessing a schema or executing an action, the client sends the unresolved plans to the server via RPC (remote procedure call). The server then performs the schema analysis and execution. This design defers schema analysis.

For example, `spark.sql("select 1 as a, 2 as b").filter("c > 1")` will not throw any error because the unresolved plan is client-side only, but on `df.columns` or `df.show()` an error will be thrown because the unresolved plan is sent to the server for analysis.

## Comparison

Unlike query execution, Spark Classic and Spark Connect differ in when schema analysis occurs.

| Aspect | Spark Classic | Spark Connect |
|:--------------------------------------------------------------------------|:--------------|:---------------------------------------------------------------------------|
| Transformations: `df.filter(...)`, `df.select(...)`, `df.limit(...)`, etc | Eager | **Lazy** |
| Schema access: `df.columns`, `df.schema`, `df.isStreaming`, etc | Eager | **Eager** <br/> **Triggers an analysis RPC request, unlike Spark Classic** |
| Actions: `df.collect()`, `df.show()`, etc | Eager | Eager |
| Dependent session state: UDFs, temporary views, configs, etc | Eager | **Lazy** <br/> **Evaluated during the execution** |

# Common Gotchas (with Mitigations)

If not careful about the difference between lazy vs. eager analysis, there are some gotchas you can run into.

## 1. Reusing temporary view names

```python
def create_temp_view_and_create_dataframe(x):
spark.range(x).createOrReplaceTempView("tempview")
return spark.sql("SELECT * FROM tempview")
# return spark.table("tempview") # Or this, it is similar to the above SQL

df10 = create_temp_view_and_create_dataframe(10)
assert len(df10.collect()) == 10

df100 = create_temp_view_and_create_dataframe(100)
assert len(df10.collect()) == 10 # <-- User expects the df still references the old tempview, but in SparkConnect, it is not.
assert len(df100.collect()) == 100
```

In Spark Connect, the DataFrame stores only a reference to the temporary view by name. The internal representation (proto plan) for the DataFrame in the above code looks like this:

```
# The proto plan of spark.sql("SELECT * FROM tempview")
root {
sql {
query: "SELECT * FROM tempview"
}
}

# The proto plan of spark.table("tempview")
root {
read {
named_table {
unparsed_identifier: "tempview"
}
}
}
```

As a result, if the temp view is later replaced, the data in the DataFrame will also change because it looks up the view by name at execution time.

This behavior differs from Spark Classic, where due to eager analysis, the logical plan of the temp view is embedded into the df's plan at the time of creation. Therefore, any subsequent replacement of the temp view does not affect the original df.

In Spark Connect, users should be more cautious when reusing temporary view names, as replacing an existing temp view will affect all previously created DataFrames that reference it by name.

### Mitigation

As a mitigation, you can consider creating unique temporary view names, for example by including a UUID in the view name. This approach helps avoid affecting any existing DataFrames that reference a previously registered temp view, ensuring isolation and consistency.

```python
import uuid
def create_temp_view_and_create_dataframe(x):
tempview_name = f"`tempview_{uuid.uuid4()}`" # Use a random name to avoid conflicts.
spark.range(x).createOrReplaceTempView(tempview_name)
return spark.sql("SELECT * FROM " + tempview_name)
# return spark.table(tempview_name) # Or this.

df10 = create_temp_view_and_create_dataframe(10)
assert len(df10.collect()) == 10

df100 = create_temp_view_and_create_dataframe(100)
assert len(df10.collect()) == 10 # It works as expected now.
assert len(df100.collect()) == 100
```

In this way, the proto plan of the df will reference the unique temp view:

```
root {
sql {
query: "SELECT * FROM `tempview_3b851121-e2f8-4763-9168-8a0e886b6203`"
}
}
```

## 2. UDFs with mutable external variables

```python
from pyspark.sql.functions import udf

x = 123

@udf("INT")
def foo():
return x


df = spark.createDataFrame([(1,)], ["dummy"])
df = df.select(foo())
x = 456
df.show() # prints 456
```

In this example, the df displays 456 instead of 123. This is because, in Spark Connect, Python UDFs are lazy—their serialization and registration are deferred until execution time. That means the UDF is only serialized and uploaded to the Spark cluster for execution when df.show() is called.

This behavior differs from Spark Classic, where UDFs are eagerly created. In Spark Classic, the value of x at the time of UDF creation is captured, so subsequent changes to x do not affect the already-created UDF.

Another example of this gotcha is creating UDFs in a loop:

```python
import json
from pyspark.sql.functions import udf, col

df = spark.createDataFrame([{"values": '{"column_1": 1, "column_2": 2}'}], ["values"])
for j in ['column_1', 'column_2']:
def extract_value(col):
return json.loads(col).get(j)
extract_value_udf = udf(extract_value)
df = df.withColumn(j, extract_value_udf(col('values')))
df.show() # It shows 2 for both 'column_1' and 'column_2'
```

This is the same issue as above. It happens because Python closures capture variables by reference, not by value, and UDF serialization and registration is deferred when there is an action on the DataFrame. So both UDFs end up using the last value of j — in this case 'column_2'.

### Mitigation

If you do need to modify the value of external variables that a UDF depends on, you can use a function factory (closure with early binding). Specifically, you can wrap the UDF creation in a helper function to correctly capture the value of a dependent variable at each loop iteration.

```python
from pyspark.sql.functions import udf, col
import json

df = spark.createDataFrame([{"values": '{"column_1": 1, "column_2": 2}'}], ["values"])

def make_extract_value_udf(field):
def extract_value(val):
return json.loads(val).get(field)
return udf(extract_value)

for j in ['column_1', 'column_2']:
extract_value_udf = make_extract_value_udf(j)
df = df.withColumn(j, extract_value_udf(col('values')))

df.show()
```

By wrapping the UDF definition inside another function (`make_extract_value_udf`), we create a new scope where the current value of j is passed in as an argument. This ensures each generated UDF has its own copy of the field, bound at the time the UDF is created.

## 3. Delayed error detection

Error handling during transformations:

```python
df = spark.createDataFrame([("Alice", 25), ("Bob", 30)], ["name", "age"])

try:
df = df.select("name", "age")
df = df.withColumn(
"age_group",
when(col("age") < 18, "minor").otherwise("adult"))
df = df.filter(col("age_with_typo") > 6) # <-- The use of non-existing column name will not throw analysis exception in Spark Connect
except Exception as e:
print(f"Error: {repr(e)}")
```

The above error handling is useful in Spark Classic because it performs eager analysis, which allows exceptions to be thrown promptly. However, in Spark Connect, this code does not pose any issue, as it only constructs a local unresolved proto plan without triggering any analysis.

### Mitigation

If your code relies on the analysis exception and wants to catch it, you can trigger eager analysis with `df.columns`, `df.schema`, `df.collect()`, etc.

```python
try:
df = ...
df.columns # <-- This will trigger eager analysis
except Exception as e:
print(f"Error: {repr(e)}")
```

## 4. Excessive schema access on new DataFrames

The following is an anti-pattern:

```python
import pyspark.sql.functions as F
df = spark.range(10)
for i in range(200):
new_column_name = str(i)
if new_column_name not in df.columns: # <-- The df.columns call causes a new Analyze request in every iteration
df = df.withColumn(new_column_name, F.col("id") + i)
df.show()
```

While building the DataFrame step by step, each time a new DataFrame is generated with an empty schema, which is lazily computed on access. However, if a user's code frequently accesses the schema of these new DataFrames using methods such as df.columns, it will result in a large number of analysis requests to the server.

<p style="text-align: center;">
<img src="img/spark-connect-gotchas-antipattern.png"
title="Triggering too many analysis of new DataFrames"
alt="Triggering too many analysis of new DataFrames"
width="50%" />
</p>

Performance can be improved if users avoid large numbers of Analyze requests by avoiding excessive usage of calls triggering eager analysis (e.g. `df.columns`, `df.schema`, etc)

### Mitigation

If your code cannot avoid the above anti-pattern and must frequently check columns of new DataFrames, you can maintain a set to keep track of these column names yourself to avoid analysis requests thereby improving performance.

```python
df = spark.range(10)
columns = set(df.columns) # Maintain the set of column names
for i in range(200):
new_column_name = str(i)
if new_column_name not in columns: # Check the set
df = df.withColumn(new_column_name, F.col("id") + i)
columns.add(new_column_name)
df.show()
```

Another similar case is creating a large number of unnecessary intermediate DataFrames and analyzing them. In the following case, the goal is to extract the field names from each column of a struct type.

```python
from pyspark.sql.types import StructType

struct_column_fields = {
column_schema.name: df.select(column_schema.name + ".*").columns
for column_schema in df.schema
if isinstance(column_schema.dataType, StructType)
}
print(struct_column_fields)
```

However, this code snippet can lead to poor performance when there are many columns, as it creates and analyzes a large number of new DataFrames—each call to `df.select(column_schema.name + ".*")` generates a new DataFrame, and `columns` triggers analysis on it.

### Mitigation

Creating a DataFrame to retrieve the fields of a `StructType` column, as shown in the code above, is unnecessary. You can obtain this information directly from the DataFrame's schema.

```python
from pyspark.sql.types import StructType

struct_column_fields = {
column_schema.name: [f.name for f in column_schema.dataType.fields]
for column_schema in df.schema
if isinstance(column_schema.dataType, StructType)
}
print(struct_column_fields)
```

This approach can be significantly faster when dealing with a large number of columns because it avoids the creation and analysis of numerous DataFrames.

# Summary

| Aspect | Spark Classic | Spark Connect |
|:----------------------|:--------------|:--------------|
| **Query execution** | Lazy | Lazy |
| **Schema analysis** | Eager | Lazy |
| **Schema access** | Local | Triggers RPC |
| **Temporary views** | Plan embedded | Name lookup |
| **UDF serialization** | At creation | At execution |

The key difference is that Spark Connect defers analysis and name resolution to execution time.
1 change: 1 addition & 0 deletions python/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Spark to be used as a service.
- :ref:`/getting_started/quickstart_connect.ipynb`
- |binder_connect|_
- `Spark Connect Overview <https://spark.apache.org/docs/latest/spark-connect-overview.html>`_
- `Eager vs Lazy: Spark Connect vs Spark Classic <https://spark.apache.org/docs/latest/spark-connect-gotchas.html>`_

.. _Index Page - Spark SQL and DataFrames:

Expand Down