Adds some notes about uv_threadpool_size and mapnik renderer pool size
This commit is contained in:
parent
7614f72df6
commit
9a393fa793
@ -2,6 +2,9 @@ var config = {
|
|||||||
environment: 'development'
|
environment: 'development'
|
||||||
,port: 8181
|
,port: 8181
|
||||||
,host: '127.0.0.1'
|
,host: '127.0.0.1'
|
||||||
|
// Size of the threadpool which can be used to run user code and get notified in the loop thread
|
||||||
|
// Its default size is 4, but it can be changed at startup time (the absolute maximum is 128).
|
||||||
|
// See http://docs.libuv.org/en/latest/threadpool.html
|
||||||
,uv_threadpool_size: undefined
|
,uv_threadpool_size: undefined
|
||||||
// Regular expression pattern to extract username
|
// Regular expression pattern to extract username
|
||||||
// from hostname. Must have a single grabbing block.
|
// from hostname. Must have a single grabbing block.
|
||||||
@ -86,8 +89,10 @@ var config = {
|
|||||||
cache_ttl: 60000,
|
cache_ttl: 60000,
|
||||||
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
||||||
mapnik: {
|
mapnik: {
|
||||||
// The size of the pool of internal mapnik renderers
|
// The size of the pool of internal mapnik backend
|
||||||
// Check the configuration of uv_threadpool_size to use suitable value
|
// This pool size is per mapnik renderer created in Windshaft's RendererFactory
|
||||||
|
// See https://github.com/CartoDB/Windshaft/blob/master/lib/windshaft/renderers/renderer_factory.js
|
||||||
|
// Important: check the configuration of uv_threadpool_size to use suitable value
|
||||||
poolSize: 8,
|
poolSize: 8,
|
||||||
|
|
||||||
// Metatile is the number of tiles-per-side that are going
|
// Metatile is the number of tiles-per-side that are going
|
||||||
|
@ -2,6 +2,9 @@ var config = {
|
|||||||
environment: 'production'
|
environment: 'production'
|
||||||
,port: 8181
|
,port: 8181
|
||||||
,host: '127.0.0.1'
|
,host: '127.0.0.1'
|
||||||
|
// Size of the threadpool which can be used to run user code and get notified in the loop thread
|
||||||
|
// Its default size is 4, but it can be changed at startup time (the absolute maximum is 128).
|
||||||
|
// See http://docs.libuv.org/en/latest/threadpool.html
|
||||||
,uv_threadpool_size: undefined
|
,uv_threadpool_size: undefined
|
||||||
// Regular expression pattern to extract username
|
// Regular expression pattern to extract username
|
||||||
// from hostname. Must have a single grabbing block.
|
// from hostname. Must have a single grabbing block.
|
||||||
@ -80,8 +83,10 @@ var config = {
|
|||||||
cache_ttl: 60000,
|
cache_ttl: 60000,
|
||||||
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
||||||
mapnik: {
|
mapnik: {
|
||||||
// The size of the pool of internal mapnik renderers
|
// The size of the pool of internal mapnik backend
|
||||||
// Check the configuration of uv_threadpool_size to use suitable value
|
// This pool size is per mapnik renderer created in Windshaft's RendererFactory
|
||||||
|
// See https://github.com/CartoDB/Windshaft/blob/master/lib/windshaft/renderers/renderer_factory.js
|
||||||
|
// Important: check the configuration of uv_threadpool_size to use suitable value
|
||||||
poolSize: 8,
|
poolSize: 8,
|
||||||
|
|
||||||
// Metatile is the number of tiles-per-side that are going
|
// Metatile is the number of tiles-per-side that are going
|
||||||
|
@ -2,6 +2,9 @@ var config = {
|
|||||||
environment: 'production'
|
environment: 'production'
|
||||||
,port: 8181
|
,port: 8181
|
||||||
,host: '127.0.0.1'
|
,host: '127.0.0.1'
|
||||||
|
// Size of the threadpool which can be used to run user code and get notified in the loop thread
|
||||||
|
// Its default size is 4, but it can be changed at startup time (the absolute maximum is 128).
|
||||||
|
// See http://docs.libuv.org/en/latest/threadpool.html
|
||||||
,uv_threadpool_size: undefined
|
,uv_threadpool_size: undefined
|
||||||
// Regular expression pattern to extract username
|
// Regular expression pattern to extract username
|
||||||
// from hostname. Must have a single grabbing block.
|
// from hostname. Must have a single grabbing block.
|
||||||
@ -80,8 +83,10 @@ var config = {
|
|||||||
cache_ttl: 60000,
|
cache_ttl: 60000,
|
||||||
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
||||||
mapnik: {
|
mapnik: {
|
||||||
// The size of the pool of internal mapnik renderers
|
// The size of the pool of internal mapnik backend
|
||||||
// Check the configuration of uv_threadpool_size to use suitable value
|
// This pool size is per mapnik renderer created in Windshaft's RendererFactory
|
||||||
|
// See https://github.com/CartoDB/Windshaft/blob/master/lib/windshaft/renderers/renderer_factory.js
|
||||||
|
// Important: check the configuration of uv_threadpool_size to use suitable value
|
||||||
poolSize: 8,
|
poolSize: 8,
|
||||||
|
|
||||||
// Metatile is the number of tiles-per-side that are going
|
// Metatile is the number of tiles-per-side that are going
|
||||||
|
@ -2,6 +2,9 @@ var config = {
|
|||||||
environment: 'test'
|
environment: 'test'
|
||||||
,port: 8888
|
,port: 8888
|
||||||
,host: '127.0.0.1'
|
,host: '127.0.0.1'
|
||||||
|
// Size of the threadpool which can be used to run user code and get notified in the loop thread
|
||||||
|
// Its default size is 4, but it can be changed at startup time (the absolute maximum is 128).
|
||||||
|
// See http://docs.libuv.org/en/latest/threadpool.html
|
||||||
,uv_threadpool_size: undefined
|
,uv_threadpool_size: undefined
|
||||||
// Regular expression pattern to extract username
|
// Regular expression pattern to extract username
|
||||||
// from hostname. Must have a single grabbing block.
|
// from hostname. Must have a single grabbing block.
|
||||||
@ -80,8 +83,10 @@ var config = {
|
|||||||
cache_ttl: 60000,
|
cache_ttl: 60000,
|
||||||
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
statsInterval: 5000, // milliseconds between each report to statsd about number of renderers and mapnik pool status
|
||||||
mapnik: {
|
mapnik: {
|
||||||
// The size of the pool of internal mapnik renderers
|
// The size of the pool of internal mapnik backend
|
||||||
// Check the configuration of uv_threadpool_size to use suitable value
|
// This pool size is per mapnik renderer created in Windshaft's RendererFactory
|
||||||
|
// See https://github.com/CartoDB/Windshaft/blob/master/lib/windshaft/renderers/renderer_factory.js
|
||||||
|
// Important: check the configuration of uv_threadpool_size to use suitable value
|
||||||
poolSize: 8,
|
poolSize: 8,
|
||||||
|
|
||||||
// Metatile is the number of tiles-per-side that are going
|
// Metatile is the number of tiles-per-side that are going
|
||||||
|
Loading…
Reference in New Issue
Block a user