Skip to content

Commit bbf1112

Browse files
authored
Purge using Surrogate-Key headers (#220)
1 parent 9498214 commit bbf1112

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

build_docs.py

+21-14
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import logging
3232
import logging.handlers
3333
from functools import total_ordering
34-
from os import readlink
34+
from os import getenv, readlink
3535
import re
3636
import shlex
3737
import shutil
@@ -895,13 +895,8 @@ def copy_build_to_webroot(self, http: urllib3.PoolManager) -> None:
895895

896896
logging.info("%s files changed", len(changed))
897897
if changed and not self.skip_cache_invalidation:
898-
targets_dir = str(self.www_root)
899-
prefixes = run(["find", "-L", targets_dir, "-samefile", target]).stdout
900-
prefixes = prefixes.replace(targets_dir + "/", "")
901-
prefixes = [prefix + "/" for prefix in prefixes.split("\n") if prefix]
902-
purge(http, *prefixes)
903-
for prefix in prefixes:
904-
purge(http, *[prefix + p for p in changed])
898+
surrogate_key = f"{self.language.tag}/{self.version.name}"
899+
purge_surrogate_key(http, surrogate_key)
905900
logging.info(
906901
"Publishing done (%s).", format_seconds(perf_counter() - start_time)
907902
)
@@ -1007,7 +1002,8 @@ def symlink(
10071002
link.symlink_to(directory)
10081003
run(["chown", "-h", ":" + group, str(link)])
10091004
if not skip_cache_invalidation:
1010-
purge_path(http, www_root, link)
1005+
surrogate_key = f"{language.tag}/{name}"
1006+
purge_surrogate_key(http, surrogate_key)
10111007

10121008

10131009
def major_symlinks(
@@ -1081,14 +1077,25 @@ def purge(http: urllib3.PoolManager, *paths: Path | str) -> None:
10811077
http.request("PURGE", url, timeout=30)
10821078

10831079

1084-
def purge_path(http: urllib3.PoolManager, www_root: Path, path: Path) -> None:
1085-
"""Recursively remove a path from docs.python.org's CDN.
1080+
def purge_surrogate_key(http: urllib3.PoolManager, surrogate_key: str) -> None:
1081+
"""Remove paths from docs.python.org's CDN.
10861082
1083+
All paths matching the given 'Surrogate-Key' will be removed.
1084+
This is set by the Nginx server for every language-version pair.
10871085
To be used when a directory changes, so the CDN fetches the new one.
1086+
1087+
https://www.fastly.com/documentation/reference/api/purging/#purge-tag
10881088
"""
1089-
purge(http, *[file.relative_to(www_root) for file in path.glob("**/*")])
1090-
purge(http, path.relative_to(www_root))
1091-
purge(http, str(path.relative_to(www_root)) + "/")
1089+
service_id = getenv("FASTLY_SERVICE_ID", "__UNSET__")
1090+
fastly_key = getenv("FASTLY_TOKEN", "__UNSET__")
1091+
1092+
logging.info("Purging Surrogate-Key '%s' from CDN", surrogate_key)
1093+
http.request(
1094+
"POST",
1095+
f"https://api.fastly.com/service/{service_id}/purge/{surrogate_key}",
1096+
headers={"Fastly-Key": fastly_key},
1097+
timeout=30,
1098+
)
10921099

10931100

10941101
def proofread_canonicals(

0 commit comments

Comments
 (0)