usql
usql copied to clipboard
U-SQL Examples and Issue Tracking
var stream = new FileStream(@"....\ExtractorsUnitTests\InputFiles\Test.json", FileMode.Open); Encoding encoding = Encoding.UTF8; var streamList = new USqlStreamReader(stream).Split(encoding.GetBytes("\r\n")).ToList(); Although, the file has multiple lines the "streamList" only gets the first line(first stream) as...
I added a new solution which shows a full end to end example containing implementation of extractor, unit test, registration and U-SQL. Additionally more detailed documentation added.
We need a document that outlines the various ways to engage with the team. Leverage the work that's been done by VS and Azure for this.
A few things to put there: - [ ] how to use this site - [ ] links to different issues/queries - [ ] links to content/docs/service -- [U-SQL Reference](http://aka.ms/usql_reference)...
Is there a reason why Output is supplied as an argument into the Process function - why not just let the developer of the function create an instance of it...
Do this really need to be a class - why not just single-method interfaces. Or even better, could it not just be a single function signature e.g. `(IRow * IUpdateableRow)...
Why are the IProcessor, IRow, IUpdateableRow etc. actually abstract classes - surely then call them Row or RowBase etc.?
When implementing custom components (i.E extractors), we are required to implement specific interfaces. For example IExtractor. The implementation of interfaces is contained in assembly Microsoft.Analytics.Interfaces. Right now this assembly seems...
We need to make sure there is a clean, easy way to build these from the command line. The basic msbuild path is straightforward, but restoring from NuGet in order...