June 11, 2018 at 11:37 am
When transfering a large resultset is there anyway to compress the data that gets sent over the network?
An example is when we load data into SSAS Tabular, it returns hundreds of millions of rows that take a good amount of time to transfer to the SSAS server. However, the data once it is transferred compressed down substantially once stored.
Is there anyway to send data over the wire compressed?
Seems like there would be some sort of Native SQL client command to "send this as compressed data"? Probably a pipe dream, but figured I would ask.
June 11, 2018 at 12:21 pm
Not native - but have a look at third party products - one of which is http://nitrosphere.com/nitroaccelerator/
Never used but have heard of it.
Other options are setting up VPN/Tunnels with compression on - but results may vary.
another option if you using something like EMC XtremeIO for SAN storage is to use snapshots attached to the SSAS server - no network trafic on this case.
June 12, 2018 at 7:21 am
frederico_fonseca - Monday, June 11, 2018 12:21 PMNot native - but have a look at third party products - one of which is http://nitrosphere.com/nitroaccelerator/
Never used but have heard of it.
Other options are setting up VPN/Tunnels with compression on - but results may vary.another option if you using something like EMC XtremeIO for SAN storage is to use snapshots attached to the SSAS server - no network trafic on this case.
I was curious about Nitrosphere as well... hmm
Thanks!
June 12, 2018 at 7:36 am
A brute force method would be to BCP the results out in "Native" format and import it at the receiver. Numerically based columns such as INT, BIGINT, and DATETIME (etc, etc) would be "compressed" to their "behind the scenes" sizes of 4, 8, and 8 bytes respectively.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply