How to specify Kusto client request properties in ADF copy activity

Viewed 89
1 Answers

Please try adding the queryconsistency client property to your query, e.g.:

set queryconsistency = 'weakconsistency';
print 1+2 // replace with your own query
Related