We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
snowplow-s3-loader/src/main/scala/com/snowplowanalytics/s3/loader/processing/Batch.scala
Lines 36 to 40 in 564d12d
Currently it does multiple linked list traversals that can be reduced into one:
flatMap
We can have a single fold instead of above three.
fold
The text was updated successfully, but these errors were encountered:
Optimise fromEnriched function (close #227)
3f388db
3b06e6e
b37d9b0
No branches or pull requests
snowplow-s3-loader/src/main/scala/com/snowplowanalytics/s3/loader/processing/Batch.scala
Lines 36 to 40 in 564d12d
Currently it does multiple linked list traversals that can be reduced into one:
flatMap
traversal to get all timestampsWe can have a single
fold
instead of above three.The text was updated successfully, but these errors were encountered: