turicas/rows

pgimport enhancements

Offen

#353 geöffnet am 19.07.2020

 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Python (136 Forks)github user discovery
enhancementhelp wantedplugin

Repository-Metriken

Stars
 (886 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

  • It's very useful to run VACUUM ANALYZE tablename; just after importing data, so we could have an option on pgimport to do it (function and CLI).
  • The performance of pgimport could be better if vacuum for the imported table is disabled before import (ALTER TABLE tablename SET (autovacuum_enabled = off);) and then (after import) re-enabled. This could be the default behaviour but may be an option to disable it (could be useful in cases where we're importing data into an existing table).

Contributor Guide