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
Many tweets will be sent in more than one chunk, and currently if a tweet is not in a single chunk, it will be "bad json" and will be dropped.
Currently, there seems to be no way to resolve this problem, aside from stitching the chunks together until valid JSON is acheived ( this relies on there not ever actually being bad json )
The text was updated successfully, but these errors were encountered:
The only solution to this problem seems to be a custom unmarshaling technique that involves creating a buffer between the message chunks and the tweet unmarshaler. I have tested this and it work, but is no substitute for a spray update to support messagechunk streaming.
Many tweets will be sent in more than one chunk, and currently if a tweet is not in a single chunk, it will be "bad json" and will be dropped.
Currently, there seems to be no way to resolve this problem, aside from stitching the chunks together until valid JSON is acheived ( this relies on there not ever actually being bad json )
The text was updated successfully, but these errors were encountered: