nodeSolidServer / nodeSolidServer/node-solid-server
Error 500 on heavy load.
Ninguém assumiu esta issue ainda.
- Linguagem predominante
- JavaScript
- Estrelas
- 1.8k
- Forks
- 308
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
I have experienced a strange behaviour over the REST interface using node-fetch module.
While this is not the most efficient way of doing things, it has thrown up the following error 500.
I read in around 11 ttl files so that total about 1,6m triples. I now want to pivot them and create a file per subject. I process each of the 1,6m triples as set out below. Check whether the resource exists. If it does not, create it using PUT, else PATCH in the new triple.
For logging I write out a 'pulse' every 5,000 records.
The code below is an extract of the process.
let getResult = await fetch(newUrl, {method: "HEAD"})
// console.log(getResult.status)
if (getResult.status === 404) {
options = {
method: "PUT",
headers: {
"content-type" : "text/turtle",
"Link": "<http://www.w3.org/ns/ldp#Resource>; rel='type'"
},
body: `${newSubject} <${newPredicate}> ${newObject} .`
}
}
else {
options = {
method: "PATCH",
headers: {
"content-type" : "application/sparql-update",
"Link": "<http://www.w3.org/ns/ldp#Resource>; rel='type'"
},
body: `INSERT DATA { ${newSubject} <${newPredicate}> ${newObject} }`
}
};
let res1 = await fetch(newUrl, options);
if ((res1.status != 200) && (res1.status != 201)) console.log("PROBLEMS WITH THE SOLID-SERVER", res1.status, JSON.stringify(options));
if ( i % 5000 === 0) console.log("output", i, newUrl, res1.status);
Just after the 80,000th log entry and before the 85,000th log entry, the server starts producing error 500 and never recovers. As can be seen in the output below:
...
output 75000 https://127.0.0.1:8443/eim/App_Inst/714101 200
output 80000 https://127.0.0.1:8443/eim/App_Inst/876505 200
PROBLEMS WITH THE SOLID-SERVER 500 {"method":"PUT","headers":{"content-type":"text/turtle","Link":"<http://www.w3.org/ns/ldp#Resource>; rel='type'"},"body":"<> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://127.0.0.1:8443/eim/App_Instance_Review> ."}
PROBLEMS WITH THE SOLID-SERVER 500 {"method":"PUT","headers":{"content-type":"text/turtle","Link":"<http://www.w3.org/ns/ldp#Resource>; rel='type'"},"body":"<> <https://127.0.0.1:8443/eim/App_Inst_ID> \"\" ."}
...
Guia de contribuição
Primeiros passos
- Leia a issue inteira e depois o guia de contribuição do projeto.
- Comente na issue dizendo que vai assumir — evita que duas pessoas façam o mesmo trabalho.
- Faça um fork do repositório e trabalhe em uma branch.
- Abra um pull request que referencie o número da issue.
Direção de pesquisa
Comece pela interface REST e reproduza a carga de trabalho do node-fetch que processa cerca de 1,6 milhão de triplas, usando as solicitações PUT e PATCH reportadas. Investigue por que o servidor começa a retornar respostas HTTP 500 após aproximadamente 80.000 registros e se ele se recupera; considera-se concluído quando a carga de trabalho não produzir mais erros 500 persistentes e a falha estiver coberta por um teste ou uma reprodução apropriada.
Escrita pelo modelo de indexação a partir do texto da issue.
Avaliação
- Stack de tecnologia
- javascript, node.js
- Domínio
- backend
- Tipo de issue
- Bug
- Dificuldade
- 4/5
- Tempo estimado
- 3-5 dias
- Status de atividade
- Estagnada
- Clareza
- Precisa de esclarecimento
- Facilidade para iniciantes
- 25/100