Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions proxy/http/HttpTransact.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2936,7 +2936,7 @@ HttpTransact::HandleCacheOpenReadHit(State *s)
// a parent lookup could come back as PARENT_FAIL if in parent.config, go_direct == false and
// there are no available parents (all down).
else if (s->current.request_to == HOST_NONE && s->parent_result.result == PARENT_FAIL) {
if (is_server_negative_cached(s) && response_returnable == true && is_stale_cache_response_returnable(s) == true) {
if (response_returnable == true && is_stale_cache_response_returnable(s) == true) {
server_up = false;
update_current_info(&s->current, nullptr, UNDEFINED_LOOKUP, 0);
TxnDebug("http_trans", "CacheOpenReadHit - server_down, returning stale document");
Expand Down Expand Up @@ -3763,7 +3763,9 @@ HttpTransact::handle_response_from_parent(State *s)
return CallOSDNSLookup(s);
break;
case HOST_NONE:
handle_parent_died(s);
// Check if content can be served from cache
s->current.request_to = PARENT_PROXY;
handle_server_connection_not_open(s);
break;
default:
// This handles:
Expand Down Expand Up @@ -4052,7 +4054,17 @@ HttpTransact::handle_server_connection_not_open(State *s)
TxnDebug("http_trans", "[hscno] serving stale doc to client");
build_response_from_cache(s, HTTP_WARNING_CODE_REVALIDATION_FAILED);
} else {
handle_server_died(s);
switch (s->current.request_to) {
case PARENT_PROXY:
handle_parent_died(s);
break;
case ORIGIN_SERVER:
handle_server_died(s);
break;
default:
ink_assert(!("s->current.request_to is not P.P. or O.S. - hmmm."));
break;
}
s->next_action = SM_ACTION_SEND_ERROR_CACHE_NOOP;
}

Expand Down
58 changes: 58 additions & 0 deletions tests/gold_tests/proxy_protocol/gold/proxy_serve_stale.gold
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
``
> GET / HTTP/1.1
> Host: ``
> User-Agent: curl/``
> Accept: */*
``
< HTTP/1.1 200 OK
< Server: ATS/10.0.0
< Accept-Ranges: bytes
< Content-Length: 6
< Cache-Control: public, max-age=5
< Age: ``
< Date: ``
< Connection: keep-alive
< Warning: ``
``
> GET / HTTP/1.1
> Host: ``
> User-Agent: curl/``
> Accept: */*
``
< HTTP/1.1 200 OK
< Server: ATS/10.0.0
< Accept-Ranges: bytes
< Content-Length: 6
< Cache-Control: public, max-age=5
< Age: ``
< Date: ``
< Connection: keep-alive
< Warning: ``
``
> GET / HTTP/1.1
> Host: ``
> User-Agent: curl/``
> Accept: */*
``
< HTTP/1.1 200 OK
< Server: ATS/10.0.0
< Accept-Ranges: bytes
< Content-Length: 6
< Cache-Control: public, max-age=5
< Age: ``
< Date: ``
< Connection: keep-alive
< Warning: ``
``
> GET / HTTP/1.1
> Host: ``
> User-Agent: curl/``
> Accept: */*
``
< HTTP/1.1 502 Next Hop Connection Failed
< Date: ``
< Connection: keep-alive
< Server: ATS/10.0.0
< Cache-Control: ``
< Content-Length: ``
``
80 changes: 80 additions & 0 deletions tests/gold_tests/proxy_protocol/proxy_serve_stale.test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
'''
Test child proxy serving stale content when parents are exhausted
'''
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Test.ContinueOnFail = True
# Set up hierarchical caching processes
ts_child = Test.MakeATSProcess("ts_child")
# Parent ATS process is not created to mock parent being "down"
# but parent hostname is recognized in hostdb to match with child successfully
ts_parent_hostname = "localhost:82"
server = Test.MakeOriginServer("server")

Test.testName = "STALE"

# Request from client
request_header = {"headers":
"GET / HTTP/1.1\r\nHost: localhost\r\n\r\n",
"timestamp": "1469733493.993",
"body": ""}
# Expected response from the origin server
response_header = {"headers":
"HTTP/1.1 200 OK\r\nConnection: close\r\nCache-Control: max-age=5,public\r\n\r\n",
"timestamp": "1469733493.993",
"body": "CACHED"}

# Add request/response
server.addResponse("sessionlog.log", request_header, response_header)

# Config child proxy to route to parent proxy
ts_child.Disk.records_config.update({
'proxy.config.http.parent_proxy.fail_threshold': 2,
'proxy.config.http.parent_proxy.total_connect_attempts': 1,
'proxy.config.http.cache.max_stale_age': 90,
'proxy.config.http.parent_proxy.self_detect': 0,
})
ts_child.Disk.parent_config.AddLine(
f'dest_domain=. parent="{ts_parent_hostname}" round_robin=consistent_hash go_direct=false'
)
ts_child.Disk.remap_config.AddLine(
f'map http://localhost:{ts_child.Variables.port} http://localhost:{server.Variables.Port}'
)

stale_output = "HTTP/1.1 200 OK\nServer: ATS/10.0.0\nAccept-Ranges: bytes\nContent-Length: 6\nCache-Control: public, max-age=5\n\nCACHED"


# Testing scenarios
# 1. Child proxy serves stale with warning header when parent returns invalid response
# 2. Child proxy serves stale with warning header when parent failcount meets fail_threshold and parent is unavailable
# 3. Child proxy does not serve stale when object is past the max_stale_age expiration date
curl_request = (
f'curl -X PUSH -d "{stale_output}" "http://localhost:{ts_child.Variables.port}";'
f'sleep 10; curl -s -v http://localhost:{ts_child.Variables.port};' # 1. serve stale with warning, failcount=1
f'curl -s -v http://localhost:{ts_child.Variables.port};' # 1. serve stale with warning, failcount=2
f'curl -s -v http://localhost:{ts_child.Variables.port};' # 2. serve stale with warning, parent unavailable
f'sleep 90; curl -v http://localhost:{ts_child.Variables.port}' # 3. max_stale_age expires, stale content cannot be served
)

# Test case for when parent server is down but child proxy can serve cache object
tr = Test.AddTestRun()
tr.Processes.Default.Command = curl_request
tr.Processes.Default.ReturnCode = 0
tr.Processes.Default.StartBefore(server)
tr.Processes.Default.StartBefore(ts_child)
tr.Processes.Default.Streams.stderr = "gold/proxy_serve_stale.gold"
tr.StillRunningAfter = ts_child