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
We pass around both the String and Byte[Array] versions of each record to make failure logging easier, but this doubles the amount of memory we need in the heap.
Instead, we can just pass the Byte[Array] around and reverse out the String for any failure rows. Failures will be rare anyway given we are not doing any record-level processing.
The text was updated successfully, but these errors were encountered:
We pass around both the String and Byte[Array] versions of each record to make failure logging easier, but this doubles the amount of memory we need in the heap.
Instead, we can just pass the Byte[Array] around and reverse out the String for any failure rows. Failures will be rare anyway given we are not doing any record-level processing.
The text was updated successfully, but these errors were encountered: