Updated Branches: refs/heads/master 1da4e9519 -> f36afeb92
TS-1229 clean up RecordsCofing.cc, remove unused entries Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/f36afeb9 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/f36afeb9 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/f36afeb9 Branch: refs/heads/master Commit: f36afeb9269ec822de92ffa45f59fac0c6506a04 Parents: 1da4e95 Author: Zhao Yongming <[email protected]> Authored: Fri Apr 27 22:11:58 2012 +0800 Committer: Zhao Yongming <[email protected]> Committed: Fri Apr 27 22:13:13 2012 +0800 ---------------------------------------------------------------------- CHANGES | 2 ++ .../perl/AdminClient/lib/Apache/TS/AdminClient.pm | 7 ------- mgmt/RecordsConfig.cc | 14 -------------- 3 files changed, 2 insertions(+), 21 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f36afeb9/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 8878d5a..4895d51 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,7 @@ -*- coding: utf-8 -*- Changes with Apache Traffic Server 3.1.4 + *) [TS-1229] clean up RecordsCofing.cc, remove unused entries. + *) [TS-1142] record ram hit in stats. *) [TS-1213] update will crash at HttpTransact::process_quick_http_filter. http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f36afeb9/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm ---------------------------------------------------------------------- diff --git a/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm b/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm index 4cba34a..aa6caa2 100644 --- a/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm +++ b/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm @@ -285,9 +285,7 @@ The Apache Traffic Server Administration Manual will explain what these strings proxy.config.body_factory.response_suppression_mode proxy.config.body_factory.template_sets_dir proxy.config.cache.agg_write_backlog - proxy.config.cache.aio_sleep_time proxy.config.cache.alt_rewrite_max_size - proxy.config.cache.check_disk_idle proxy.config.cache.control.filename proxy.config.cache.dir.sync_frequency proxy.config.cache.enable_checksum @@ -297,7 +295,6 @@ The Apache Traffic Server Administration Manual will explain what these strings proxy.config.cache.hosting_filename proxy.config.cache.ip_allow.filename proxy.config.cache.limits.http.max_alts - proxy.config.cache.max_agg_delay proxy.config.cache.max_disk_errors proxy.config.cache.max_doc_size proxy.config.cache.min_average_object_size @@ -609,11 +606,7 @@ The Apache Traffic Server Administration Manual will explain what these strings proxy.config.manager_name proxy.config.net.accept_throttle proxy.config.net.connections_throttle - proxy.config.net.enable_ink_disk_io - proxy.config.net.ink_aio_write_threads - proxy.config.net.ink_disk_io_watermark proxy.config.net.listen_backlog - proxy.config.net.max_kqueue_len proxy.config.net_snapshot_filename proxy.config.net.sock_mss_in proxy.config.net.sock_option_flag_in http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f36afeb9/mgmt/RecordsConfig.cc ---------------------------------------------------------------------- diff --git a/mgmt/RecordsConfig.cc b/mgmt/RecordsConfig.cc index 7d5d362..e5a5a2a 100644 --- a/mgmt/RecordsConfig.cc +++ b/mgmt/RecordsConfig.cc @@ -955,26 +955,12 @@ RecordElement RecordsConfig[] = { , // # The maximum size of a document that will be stored in the cache. // # (0 disables the maximum document size check) - {RECT_CONFIG, "proxy.config.net.enable_ink_disk_io", RECD_INT, "0", RECU_RESTART_TS, RR_NULL, RECC_NULL, NULL, RECA_NULL} - , - {RECT_CONFIG, "proxy.config.net.ink_disk_io_watermark", RECD_INT, "400", RECU_RESTART_TS, RR_NULL, RECC_NULL, NULL, RECA_NULL} - , - {RECT_CONFIG, "proxy.config.net.ink_aio_write_threads", RECD_INT, "10", RECU_RESTART_TS, RR_NULL, RECC_NULL, NULL, RECA_NULL} - , - {RECT_CONFIG, "proxy.config.net.max_kqueue_len", RECD_INT, "0", RECU_RESTART_TS, RR_NULL, RECC_NULL, NULL, RECA_NULL} - , {RECT_CONFIG, "proxy.config.cache.max_doc_size", RECD_INT, "0", RECU_DYNAMIC, RR_NULL, RECC_STR, "^[0-9]+$", RECA_NULL} , {RECT_CONFIG, "proxy.config.cache.min_average_object_size", RECD_INT, "8000", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL} , - {RECT_CONFIG, "proxy.config.cache.max_agg_delay", RECD_INT, "1000", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL} - , {RECT_CONFIG, "proxy.config.cache.threads_per_disk", RECD_INT, "8", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL} , - {RECT_CONFIG, "proxy.config.cache.aio_sleep_time", RECD_INT, "100", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL} - , - {RECT_CONFIG, "proxy.config.cache.check_disk_idle", RECD_INT, "1", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL} - , {RECT_CONFIG, "proxy.config.cache.agg_write_backlog", RECD_INT, "5242880", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL} , {RECT_CONFIG, "proxy.config.cache.enable_checksum", RECD_INT, "0", RECU_DYNAMIC, RR_NULL, RECC_NULL, NULL, RECA_NULL}
