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
what are tables in our context?
A single query is converted to a table in our case. Then joining means we want to combine results from two queries.
What is the example of two queries that can't be merged into one?
What can be the key for query joins?
time: what was happening at one service while another is doing x? if they're not causally related
Questions
what are tables in our context?
A single query is converted to a table in our case. Then joining means we want to combine results from two queries.
What is the example of two queries that can't be merged into one?
What can be the key for query joins?
Join semantics from other systems
Used to combine rows from two or more tables, based on a related column between them.
spark (streaming) join: https://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#stream-stream-joins
"The challenge of generating join results between two data streams is that, at any point of time, the view of the dataset is incomplete for both sides of the join making it much harder to find matches between inputs"
pivot tracing happend-before join: https://www2.cs.uic.edu/~brents/cs494-cdcs/papers/pivot-tracing.pdf
happened-before relation: https://lamport.azurewebsites.net/pubs/time-clocks.pdf
The relation "->" on the set of events of a system is the smallest relation satisfying the following three conditions
Example query from the pivot tracing paper
this is done by propagating baggage along the request.
The text was updated successfully, but these errors were encountered: