You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If E-Tag presented in response headers by server, then HTTP sync can add If-None-Match with the value of E-Tag in headers for further requests.
Server will return response with actual body, only if E-Tag of the content has changed (304 Not Modified otherwise).
This will help to avoid blank requests, when nothing changed in HTTP source.
The text was updated successfully, but these errors were encountered:
Requirements
Problem statement
Currently, "HTTP sync" fetches the body and decides whether to update the flags based on SHA changes.
This process is performed at every polling iteration, which may cause an overhead.
Proposal
HTTP source can support E-Tag.
If E-Tag presented in response headers by server, then HTTP sync can add
If-None-Match
with the value of E-Tag in headers for further requests.Server will return response with actual body, only if E-Tag of the content has changed (304 Not Modified otherwise).
This will help to avoid blank requests, when nothing changed in HTTP source.
The text was updated successfully, but these errors were encountered: