-
Notifications
You must be signed in to change notification settings - Fork 313
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
Aleno: Subscribe/unsubscribe on-demand #3728
Conversation
🦋 Changeset detectedLatest commit: b87dee9 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
712434d
to
fb21a43
Compare
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are there any performance implications of doing this? Does this impact the current streams of data and the EA responding the requests?
|
As discussed on Slack, I've hard-coded a delay in emitting the subscription and receiving feed data or responding to requests is unaffected by it. |
|
|
|
|
Closes DF-21145
Description
Currently Aleno firehose all assets to us, we want to make a change to subscribe and unsubscribe on-demand.
StreamingTransport
already keeps track of which subscriptions are desired, new and stale. We decided not to use this to determine what to subscribe/unsubscribe to. Because new subscriptions will only be part ofnew
once and there is no way to confirm that subscriptions were indeed added once we get the confirmation over the socket.So it seemed more robust to keep our own set of subscriptions which have actually been confirmed and always reconcile the
desired
subscriptions with this set.Breaking change
In order to use subscriptions we need to use a new endpoint. And because we wait for subscription confirmation, the new code won't work with the old endpoint. This is why this requires a major version update.
Changes
subscribe
/unsubscribe
events and wait for the response to update the confirmed subscriptions.The following possible race conditions were identified and avoided and unit tested:
Steps to Test
cd packages/sources/aleno/
yarn build && yarn start --env-file=~/env/aleno
Quality Assurance
infra-k8s
configuration file.adapter-secrets
configuration file or update the soak testing blacklist.test-payload.json
file with relevant requests.feature/x
,chore/x
,release/x
,hotfix/x
,fix/x
) or is created from Jira.