This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Remove client_for
Remove thrift_request_builder
Remove tests.data.generated
remove explicit dep on futures
Now that Apache Thrift is no longer supported, we don't need two different implementations of ThriftRequest and ThriftSerializer.
thriftrw only supports the new TChannel interface. This assertion will ensure we don't accidentally call the deprecated version with Thrift endpoints and get cryptic messages.
Collapse Thrift*Request and Thrift*Serializer
Prevent all tests from using thrift code generation
Limit the size of arg1 to 16 KB
Separate handler for call req and call req continue message.
Remove assertion for connection close instead throwing StreamClosedError
because Grayson doesn't know how to
use thriftrw >=1<2
Some tasks were punted. Closing this PR in favor of #298. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This release will need to wait 4-6 weeks to go out so that 0.18 can sink-in and and people have plenty of time to move to
tchannel.thrift.load
.Removing Deprecated Functionality
client_for
- Remove client_for #259thrift_request_builder
- Remove thrift_request_builder #264thrift.load
tchannel.tornado.TChannel.register
Remove Apache Thrift Support
testing.data.generated
- Remove tests.data.generated #265ThriftRequest
in favor ofThriftRWRequest
(possibly rename the latter)ThriftSerializer
in favor ofThriftRWSerializer
(possibly rename the latter)New Functionality
TChannel.register
should just be "raw" endpoints (notas: raw
) that receive the raw bytes, parse them manually as required, and return raw bytes in the Response. We should be able to refactorTChannel.{thrift,raw,json}.register
to wrap around this.Performance
fix event hooks not firing immediately potential delay between recieving a response and firing event hooks #285
Make peer selection fast. Currently it's taking a lot more time than it should. See:
This is partly fixed by Improve peer selection performance #276.
In Preperation for 1.0
futures
- remove explicit dep on futures #260<=1,>2