-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.4: RequestLog with streaming results #302
Comments
The plan here is to add 2 new states to the HystrixRequestLog: Some possible new RequestLog strings: |
One question which I'm not sure about is if we want these new event types in the RequestLog of a But it also feels a little strange to special-case this. My initial inclination is to only present these events for |
I agree it should not be on the existing HystrixCommand, only ObservableCommand. |
To make this concrete, here are some sample request logs for HystrixObservableCommand. HystrixCommand request logs are unchanged, as described above.
|
Done in #604 |
Now that we support an Observable we can have a stream of results. The RequestLog currently will mark SUCCESS for each onNext rather than the terminal event.
Everything behaves fine for scalar responses, just need to fix it for a use case where the Observables returns more than 1 value.
The text was updated successfully, but these errors were encountered: