Sasu Mäkinen

Results 2 issues of Sasu Mäkinen

Managed to bring my cluster into a state where pressing to scale to any other than 3 nodes will give me a status 500 response from the UI. The cluster...

Currently in tsynamo: ```ts const trx = tsynamoClient.createWriteTransaction(); trx.addItem({ Put: tsynamoClient .putItem("myTable") .item({ userId: "313", dataTimestamp: 1 }), }); trx.addItem({ Update: tsynamoClient .updateItem("myTable") .keys({ userId: "313", dataTimestamp: 2 }) .set("tags",...