When enabling dynamodb global table, if there are two writes happens on the same item but different attributes on the table in each region. How does dynamodb sync between these two tables?
For example, in regionA, there is an update on an item:
{
a: 1
}
at the same time, there is another write on the same table in regionB with below change:
{
b: 1
}
will dynamodb global table sync combine the attributes into one:
{
a: 1,
b: 1
}
or will one replace the other?