should we serialize `debug_meta` for transactions?
See original GitHub issueRN transaction comes with:
"debug_meta": {
"transactionSampling": {
"method": "client_rate",
"rate": 1
}
}
during ser/deser, we’re losing the debug_meta field
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (6 by maintainers)
Top Results From Across the Web
Serializability vs “Strict” Serializability: The Dirty Secret of ...
The bottom line is that if Fauna is configured to be strictly serializable for all transactions, then stale reads will never happen. Every...
Read more >Guidelines for Performance Monitoring
Over the wire, transactions are serialized to JSON as an augmented Event , and sent as envelopes. The different envelope types are for...
Read more >Serializing transactions - IBM
You must allow serialization only for low-volume transactions because of potential queueing time. The following methods each have different serialization start ...
Read more >Blog: Importance of Serialization in Transactional Data | Tudip
Ideally, transactions should be serializable. Transactions are said to be serializable if the results of running transactions simultaneously ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This is an internal field for used debugging. It is not part of the spec and there is no intention that it will ever be.
For all I can think of, we don’t need this field in React Native nor in Java, so the current behavior of dropping the
debug_meta
field is adequate.(@lobsterkatie FYI)
@jan-auer Right. I guess I was more wondering if that
debug_meta
-> envelope header work should happen anywhere besides JS, but it sounds like no.