trafficserver
trafficserver copied to clipboard
Apache Traffic Server™ is a fast, scalable and extensible HTTP/1.1 and HTTP/2 compliant caching proxy server.
Problem - ``` [Jun 15 05:23:59.443] [ET_NET 11] WARNING: no available parents and the config proxy.config.http.no_dns_just_forward_to_parent, prevents origin lookups. ``` My Parent.config - ``` dest_domain=. method=get parent="127.0.0.1:8000" scheme=http round_robin=false go_direct=false...
In this call: https://github.com/apache/trafficserver/blob/3a4c3dbbe340fc5e1c88c5375e5ed826ed9a797c/iocore/eventsystem/P_UnixEventProcessor.h#L123 the ethread field of the event structure is sometimes null (which causes a crash). Here is an example stack dump: ``` [ 00 ] libtscore.so.9.1.10 ink_atomiclist_push...
Specifically these: acme healthchecks ts_lua_http_intercept stats_over_http They seem to only do cleanup of allocated resources when they get the TS_EVENT_VCONN_WRITE_COMPLETE event. Does this event occur, even if the session drops...
### JSONRPC TS API proposal This draft is based on https://github.com/apache/trafficserver/pull/7478 which holds the JSONRPC 2.0 implementation for ATS. ### Current state Currently If a plugin wants to handle external...
Doing some testing here something seems not quite right with the negative revalidating. I ran with these settings: CONFIG proxy.config.http.cache.max_stale_age INT 200 CONFIG proxy.config.http.negative_revalidating_enabled INT 1 CONFIG proxy.config.http.negative_revalidating_lifetime INT 40...
Fixes #8807. I've asked Jeremy Payne, jp557198, to test and comment here as he is the issue owner. This was originally fixed in ATS 9.2.x with PR #8365 but #8365...
I tried to build Traffic Server 9.1.2 from source. It turned out that build process depends on perl, but it is not listed in dependencies in the documentation. Also, I...
apt install libaio-dev ./configure --enable-mmap --enable-experimental-linux-native-aio ./configure --enable-mmap
Several functions are ~going to be~ deprecated since OpenSSL 3.0. It's still buildable by tweaking compile options but should be fixed sooner rather than later. Last check was done with...
https://github.com/apache/trafficserver/blob/d18721884615958f151eee084244c506552c6512/src/traffic_server/InkAPI.cc#L1368 What is the point of a mutex, if the application will crash when there is contention for it. If you really want that behavior, you could just use an...