简体   繁体   中英

C#: Pass filters to ADLS gen2 storage from C# and get the result

I am working on angular application which consumes data from azure data lake (gen2) and bind it to UI.

My requirement is to pass filters to gen2 storage and get the filtered data.

I don't want to download whole blob file and then do processing in C#.

is it possible to pass filters/query to gen2 blob storage and filter data in storage it self ?

Not sure which SDK or api you're using, but both of ADLS Gen2 read api and blob storage read api don't support filter feature.

You should always download the file to local first, then fetch the data you need; Or you can use blob storage sdk(partially supports ADLS Gen2) to read the json file in memory, then fetch the needed data.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM