To increase performance I need to insert group of records by one query. This records can be in different partiotions. Is it possible to do?
Does anyone do somthing like this?
Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes I often do this to increase performance (not so much for the cost). The advantage here is that you only serialize once and the whole operation acts as a transaction. This means all your changes will all succeed or all will fail.
I don’t really know what you mean by multiple sections? Do you mean multiple partitions? This is not possible, all entities should be in the same partition (and limited to 100 items per batch).
Here is a very detailed explaination: http://msdn.microsoft.com/en-us/library/windowsazure/dd894038.aspx