Skip to content
Snippets Groups Projects
Commit ecd04281 authored by Laurent's avatar Laurent
Browse files

hotline #146510 Limit execution time of grep/sort to 1s

in order to prevent server load when lot of autocompletion requests
are sent
parent 22465524
Branches
Tags
1 merge request!4309hotline #146510 Limit execution time of grep/sort to 1s
Pipeline #15647 passed with stage
in 28 minutes and 18 seconds
- ticket #146510 : Autocompletion : limitation du temps maximum de réponse à 1s
\ No newline at end of file
...@@ -68,7 +68,7 @@ class Class_Autocomplete_IndexSearcher { ...@@ -68,7 +68,7 @@ class Class_Autocomplete_IndexSearcher {
$grep_args []= "-i -E '(\b|'\'')" . $term . "'"; $grep_args []= "-i -E '(\b|'\'')" . $term . "'";
$grep_args[] = "-m 10 ".array_pop($grep_args); $grep_args[] = "-m 10 ".array_pop($grep_args);
return 'grep '.implode(' | grep ', $grep_args); return 'timeout 1s grep '.implode(' | grep ', $grep_args);
} }
......
...@@ -138,7 +138,7 @@ class BokehEcoSuggestAjaxActionTest extends BokehEngineEcoTestCase { ...@@ -138,7 +138,7 @@ class BokehEcoSuggestAjaxActionTest extends BokehEngineEcoTestCase {
/** @test */ /** @test */
public function grepCommandForIleMaiteShouldRestrictLastResultToTen() { public function grepCommandForIleMaiteShouldRestrictLastResultToTen() {
$this->assertEquals( $this->assertEquals(
"grep -riI -E --no-filename '(\b|'\'')M[aàáâãäå][iìíîï]t[eèéêë][eèéêë]' | sort -Vuf | grep -i -E '(\b|'\'')l'\''[iìíîï]l[eèéêë]' | grep -i -E '(\b|'\'')[iìíîï]l[eèéêë]' | grep -m 10 -i -E '(\b|'\'')d[eèéêë]'", "timeout 1s grep -riI -E --no-filename '(\b|'\'')M[aàáâãäå][iìíîï]t[eèéêë][eèéêë]' | sort -Vuf | grep -i -E '(\b|'\'')l'\''[iìíîï]l[eèéêë]' | grep -i -E '(\b|'\'')[iìíîï]l[eèéêë]' | grep -m 10 -i -E '(\b|'\'')d[eèéêë]'",
(new Class_Autocomplete_IndexSearcher)->buildGrepCommand("l'ile dE Maitee")); (new Class_Autocomplete_IndexSearcher)->buildGrepCommand("l'ile dE Maitee"));
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment