X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/65ee7a80025fae93287960a6cb1f4026f99cd7f3..7429ff9dce2119d13cec25bcc9fcb3a1fd9fe478:/utils/update.php diff --git a/utils/update.php b/utils/update.php index d03cbed6..189a1825 100644 --- a/utils/update.php +++ b/utils/update.php @@ -55,6 +55,7 @@ date_default_timezone_set('Etc/UTC'); $oDB = new Nominatim\DB(); $oDB->connect(); +$fPostgresVersion = $oDB->getPostgresVersion(); $aDSNInfo = Nominatim\DB::parseDSN(CONST_Database_DSN); if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432; @@ -90,6 +91,12 @@ if (isset($aDSNInfo['password']) && $aDSNInfo['password']) { if (!is_null(CONST_Osm2pgsql_Flatnode_File) && CONST_Osm2pgsql_Flatnode_File) { $oOsm2pgsqlCmd->addParams('--flat-nodes', CONST_Osm2pgsql_Flatnode_File); } +if ($fPostgresVersion >= 11.0) { + $oOsm2pgsqlCmd->addEnvPair( + 'PGOPTIONS', + '-c jit=off -c max_parallel_workers_per_gather=0' + ); +} $oIndexCmd = (new \Nominatim\Shell(CONST_BasePath.'/nominatim/nominatim.py'))