]> git.ipfire.org Git - thirdparty/collectd.git/commitdiff
Update contrib/postgresql/README.md
authorschorsch1976 <georg@schorsch-tech.de>
Tue, 29 Aug 2023 16:20:44 +0000 (18:20 +0200)
committerMatthias Runge <mrunge@matthias-runge.de>
Fri, 13 Oct 2023 07:50:29 +0000 (09:50 +0200)
Co-authored-by: Eero Tamminen <eero.t.tamminen@intel.com>
contrib/postgresql/README.md

index e5e07e87662476549b922d278d2f0855e099488d..de2fa42b11ae6b16c325312019db2afe79d1233d 100644 (file)
@@ -65,9 +65,9 @@ The type, type_inst and value_name get used to create the name of the value volu
 Description:
 ------------
 
-My development was done on postgresql 15.
+Second database layout is done on postgresql 15, by <INSERT NAME>.
 
-It has some advantages: The data has much higher data locality as it stays in one table and much less unneeded text columns.
+It has some advantages over first one: The data has much higher data locality as it stays in one table and much less unneeded text columns.
 This leads to much smaller table spaces. In my case the first setup created about 300 MB per day. The new setup about 50 MB with the advantage of depending data near each other.
 You can also think about changing the datatype of the plugin_$plugin table to real. Consider whether you really need the double precision compared to real as latter would cut the needed space in half.