From dd89c4c35ffd0728845452f2351d2a27ac760b1e Mon Sep 17 00:00:00 2001 From: Maxim Liksakov <67663774+maxim-lixakov@users.noreply.github.com> Date: Mon, 7 Oct 2024 10:57:18 +0300 Subject: [PATCH] Update prerequisites.rst --- docs/connection/db_connection/greenplum/prerequisites.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/connection/db_connection/greenplum/prerequisites.rst b/docs/connection/db_connection/greenplum/prerequisites.rst index b3cf52d7..545b8399 100644 --- a/docs/connection/db_connection/greenplum/prerequisites.rst +++ b/docs/connection/db_connection/greenplum/prerequisites.rst @@ -93,7 +93,7 @@ Number of connections can be limited by 2 ways: spark = ( SparkSession.builder - # Spark will start EXACTLY 5 executors with 1 core each, so max number of parallel jobs is 10 + # Spark will run with 5 threads in local mode, allowing up to 5 parallel tasks .config("spark.master", "local[5]") .config("spark.executor.cores", 1) ).getOrCreate()