forked from twitter/twitter-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
200 lines (151 loc) · 5.3 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
.. Author notes: this file is formatted with restructured text
(http://docutils.sourceforge.net/docs/user/rst/quickstart.html)
as it is included in TwitterServer's user's guide.
1.x
-----
1.9.0
~~~~~~
New Features:
-------------
* Most noticeably, the admin server received a complete UI redesign. All http endpoints are
now available via a navigation pane. We provide a simple API for service owners to include
ad-hoc admin pages which will be part of the navigation pane. Note, it is still possible to
join the admin server’s namespace via the global com.twitter.finagle.http.HttpMuxer.
* When using the twitter Metrics library, the admin server now scrapes your stats to
extract a quick summary of how your server is performing. This includes secondly
success rates for your server and least performant downstreams. We provide a /admin/metrics
endpoint which can watch stats (at secondly granularity) and extract them via http queries.
* More recently, Finagle clients and servers began to retain information about their composition.
This is useful in examining the modules and parameters that comprise a specific implementation.
We now surface this information in the admin server via /admin/clients/<client_name> and
/admin/servers/<server_name>
Dependencies:
-------------
* Remove dependency on mustache for admin server in favor of templating
via string interpolation. This is more hygienic for web applications
and frameworks built atop twitter-server.
1.8.0
~~~~~~~
New Features
------------
* Add the ability to promote objects to old gen before serving
* Export everything from build.properties at /admin/server_info
Runtime Behavior Changes
------------------------
* Add merge_base merge_base_commit_date and scm_repository to server_info
* AdminHttpServer now disables tracing
* Export gauge on eden allocations
* Improve heuristic for returning html or not in WebHandler
* Initial redesign of admin pages
Breaking API Changes:
---------------------
* Remove ServerInfo class: export /admin/server_info directly from build.properties file
1.7.6
~~~~~~~
twitter-server: Add gauge on eden allocations
twitter-server: Do not trace the admin http server
twitter-server: JvmStats needs to call Allocations.start()
twitter-server: Log severely if a flag is read at the wrong time
twitter-server: Parameterize IndexHandler on a `patterns: Seq[String]`
twitter-server: Proper resource loading in admin pages
twitter-server: Redesign of twitter-server admin page
1.7.3
~~~~~~~
- Add admin endpoint for per-client configuration
- Add trace ID to twitter-server logging
- Create a logging handler for on-the-fly logging updates
1.7.2
~~~~~~~
- release finagle v6.18.0
- release util v6.18.0
- user guide: Add blurb about filtering out stats
1.7.1
~~~~~~~
- Upgrade versions of all dependencies
- Admin dtab handler: display base dtab
- Change productivity stat to cpuTime/wallTime
1.7.0
~~~~~~~
- Bump finagle to 6.16.1-SNAPSHOT
- Bump util to 6.16.1-SNAPSHOT
- Disable admin server stats
1.6.3
~~~~~~~
- Define type for statsReceiver explicitly so that it can be overloaded
- Store gauge references (otherwise only weakly referenced)
- Enforce close grace period for com.twitter.app.App
- upgrade finagle/util to 6.15.0
1.6.2
~~~~~~~
- Add com.twitter.io.Charsets and replace the use of org.jboss.netty.util.CharsetUtil
- Fix twitter-server execution test
1.6.1
~~~~~
- upgrade finagle to 6.13.1
- upgrade util to 6.13.2
1.6.0
~~~~~
- upgrade finagle version to 6.13.0
- Implement application-level shutdown handling in App.
- Bug-fix: Refresh JVM memory snapshots on stats collection Motivation
- Bug-fix: set content-length when responding from TwitterHandler
1.5.1
~~~~~
- update finable to 6.12.1
- update util to 6.12.1
1.5.0
~~~~~
- Add logging to TwitterHandlers
- Report on deadlock conditions in admin/contentions
- Twitter server handler for dumping the current dtab
- TwitterHandler: non-root logger
- update finagle version to 6.12.0
- update util version to 6.12.0
1.4.1
~~~~~
- Upgrade finagle to 6.11.1
- Upgrade util to 6.11.1
1.4.0
~~~~~
- Remove finagle-stats dependency so that alternate stats packages can be used such as ostrich
- Add a hooking mechanism and expose an API to install the Dtab using the hooking mechanism
- Upgrade finagle to 6.10.0
- Upgrade util to 6.10.0
1.3.1
~~~~~
- Upgrade finagle to 6.8.1
- Upgrade util to 6.8.1
1.3.0
~~~~~
- Upgrade finagle to 6.8.0
- Upgrade util to 6.8.0
- Adds a cautious registration to HttpMuxer / adds a default metrics endpoint to twitter-server
- Docs: Pointed out that you need the finagle-stats jar on your classpath
- Sync jackson versions in twitter-server
- Revert ordering of TwitterServer mixins.
- Mix in Closer by default... again.
1.2.0
~~~~~
- Support staged names introduced in Finagle
- Add glog-style log formatting
- Remove finagle-stats as a dependency
- Don't stat admin endpoints
1.1.0
~~~~~
- Add ability to defer /health endpoint registration
- Add new stats for current memory usage.
- Change twitter-server admin http server flag and symbol name
- Enable zipkin
- Make Logging trait more flexible for easy extension
- New scheduler "productivity" stats, dispatches.
1.0.3
~~~~~
- bump finagle to 6.5.2
- bump util to 6.3.8
1.0.2
~~~~~
- bump finagle to 6.5.1
- bump util to 6.3.7
1.0.1
~~~~~
- Initial Release