eric-maynard commented on issue #11094:
URL: https://github.com/apache/iceberg/issues/11094#issuecomment-2336763248
To use multiple sessions you would essentially move this part of your code
into the `start_streaming_query` function:
```
# Initialize Spark Session
spark = ( SparkSession.builder
.appName("streaming merg into")
.config("spark.sql.shuffle.partitions", "2")
.config("spark.log.level", "ERROR")
.getOrCreate()
)
```
You might also want to make some changes such as appending the thread ID to
the app name.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]