[#14] locode_generate: Increase number of CPUs
Signed-off-by: George Bartolomey <george@bh4.ru>
This commit is contained in:
parent
3ed88e024c
commit
56f7b4bd39
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ func FillDatabase(table SourceTable, airports AirportDB, continents ContinentsDB
|
|||
var errG errgroup.Group
|
||||
|
||||
// Pick some sane default, after this the performance stopped increasing.
|
||||
errG.SetLimit(runtime.NumCPU() * 4)
|
||||
errG.SetLimit(runtime.NumCPU() * 16)
|
||||
_ = table.IterateAll(func(tableRecord locode.Record) error {
|
||||
errG.Go(func() error {
|
||||
return processTableRecord(tableRecord, airports, continents, names, db)
|
||||
|
|
Loading…
Reference in a new issue