最佳答案
我使用 nginx 和节点服务器来服务更新请求。当我请求对大数据的更新时,我会得到一个网关超时。我在 nginx 错误日志中看到了这个错误:
2016/04/0700:46:04[ error ]28599 # 0: * 1逆流提前关闭 读取来自上游、客户端的响应头的连接: 10.0.2.77,服务器: gis.oneconcern.com ,请求: “ GET/update _ mbtiles/atlas19891018000415 HTTP/1.1”,上游: Http://127.0.0.1:7777/update_mbtiles/atlas19891018000415" ,主持人: “ gis.oneconcern.com”
我在谷歌上搜索了这个错误,并尝试了所有可能的方法,但仍然得到了这个错误。
我的 nginx conf 有以下代理设置:
##
# Proxy settings
##
proxy_connect_timeout 1000;
proxy_send_timeout 1000;
proxy_read_timeout 1000;
send_timeout 1000;
我的服务器就是这样配置的
server {
listen 80;
server_name gis.oneconcern.com;
access_log /home/ubuntu/Tilelive-Server/logs/nginx_access.log;
error_log /home/ubuntu/Tilelive-Server/logs/nginx_error.log;
large_client_header_buffers 8 32k;
location / {
proxy_pass http://127.0.0.1:7777;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $http_host;
proxy_cache_bypass $http_upgrade;
}
location /faults {
proxy_pass http://127.0.0.1:8888;
proxy_http_version 1.1;
proxy_buffers 8 64k;
proxy_buffer_size 128k;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
我正在使用 nodejs 后端为 aws 服务器上的请求提供服务。网关错误只有在更新时间较长(大约3-4分钟)时才会显示出来。我没有得到任何更小的更新错误。任何帮助都将不胜感激。
节点 js 代码:
app.get("/update_mbtiles/:earthquake", function(req, res){
var earthquake = req.params.earthquake
var command = spawn(__dirname + '/update_mbtiles.sh', [ earthquake, pg_details ]);
//var output = [];
command.stdout.on('data', function(chunk) {
// logger.info(chunk.toString());
// output.push(chunk.toString());
});
command.stderr.on('data', function(chunk) {
// logger.error(chunk.toString());
// output.push(chunk.toString());
});
command.on('close', function(code) {
if (code === 0) {
logger.info("updating mbtiles successful for " + earthquake);
tilelive_reload_and_switch_source(earthquake);
res.send("Completed updating!");
}
else {
logger.error("Error occured while updating " + earthquake);
res.status(500);
res.send("Error occured while updating " + earthquake);
}
});
});
function tilelive_reload_and_switch_source(earthquake_unique_id) {
tilelive.load('mbtiles:///'+__dirname+'/mbtiles/tipp_out_'+ earthquake_unique_id + '.mbtiles', function(err, source) {
if (err) {
logger.error(err.message);
throw err;
}
sources.set(earthquake_unique_id, source);
logger.info('Updated source! New tiles!');
});
}
谢谢你。