Skip to content

Commit

Permalink
Import - Amélioration des performances pour l'EDIGEO
Browse files Browse the repository at this point in the history
Ré-application de PG_USE_COPY pour l'import des données via ogr2ogr
en basculant l'option sur `--config`

Cela corrige une régression importante sur les performances d'import
pour des gros volumes de données
  • Loading branch information
mdouchin authored and rldhont committed Oct 17, 2023
1 parent 3c81a43 commit ee02bd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
* Correction des DROP d'indexes
* Correction de la clé primaire de la table proprietaire
* Ajout d'un index sur le champ voie de la table parcelle_info
* Import - Amélioration des performances pour l'EDIGEO
L'import des données EDIGEO via ogr2ogr n'utilisait plus l'option `PG_USE_COPY`

## 1.18.1 - 2023-09-27

Expand Down
3 changes: 2 additions & 1 deletion cadastre/cadastre_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -1402,7 +1402,8 @@ def importEdigeoThfToDatabase(self, filename):
'-lco', 'PG_USE_COPY=YES',
'-nlt', 'GEOMETRY',
'-gt', '50000',
'--config', 'OGR_EDIGEO_CREATE_LABEL_LAYERS', 'NO'
'--config', 'OGR_EDIGEO_CREATE_LABEL_LAYERS', 'NO',
'--config', 'PG_USE_COPY', 'YES',
]
# -c client_encoding=latin1

Expand Down

0 comments on commit ee02bd7

Please sign in to comment.