我正在一个相当强大的服务器(120GB内存和足够的磁盘空间)中使用docker项目。
尝试在postgres服务器上运行导入时,出现以下错误
Using projection SRS 4326 (Latlong)
NOTICE: table "place" does not exist, skipping
Allocating memory for dense node cache
Allocating dense node cache in one big chunk
Allocating memory for sparse node cache
Sharing dense sparse
Node-cache: cache=1207MB, maxblocks=154496*8192, allocation method=11
Mid: pgsql, scale=10000000 cache=1207
Setting up table: planet_osm_nodes
Setting up table: planet_osm_ways
Setting up table: planet_osm_rels
Reading in file: /app/src/data.osm.pbf
Using PBF parser.
node cache: stored: 0(-nan%), storage efficiency: -nan% (dense blocks: 0, sparse nodes: 0), hit rate: -nan%
Osm2pgsql failed due to ERROR: PBF error: invalid BlobHeader size (> max_blob_header_size)
ERROR: Error executing external command: /app/src/osm2pgsql/osm2pgsql -lsc -O gazetteer --hstore --number-processes 1 -C 1207 -P 5432 -d nominatim /app/src/data.osm.pbf
如何增加最大blob-u header-u大小?
最佳答案
我在将一个S3托管的PBF文件放入nominim docker容器时偶然发现了同样的问题。
很遗憾,我未能正确配置对PBF文件的访问,因此docker容器将XML错误响应保存为/app/src/data.osm.PBF。这就是为什么文件头检查失败的原因。
关于postgresql - osm2pgsql由于错误而失败:PBF错误:无效的BlobHeader大小(> max_blob_header_size),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43497992/