[This is preliminary documentation and is subject to change.]
write a sequence of strings as hdfs text files, partitioned by time as well as key.
Within a given time and part, records are written in an undefined order
Namespace: Microsoft.Research.Naiad.Frameworks.WebHdfs
Assembly: Microsoft.Research.Naiad.WebHdfsSupport (in Microsoft.Research.Naiad.WebHdfsSupport.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public static Stream<Uri, TTime> ToWebHdfsText<TTime>( this Stream<string, TTime> source, string user, int webPort, Uri prefix, long blockSize = -1, long segmentThreshold = 266338304 ) where TTime : Object, Time<TTime>
Parameters
- source
- Type: Microsoft.Research.NaiadStreamString, TTime
stream of records to write - user
- Type: SystemString
hdfs user - webPort
- Type: SystemInt32
webhdfs protocol port - prefix
- Type: SystemUri
webhdfs directory to write the partitioned data into - blockSize (Optional)
- Type: SystemInt64
hdfs block size to use, or -1 for the file system default value - segmentThreshold (Optional)
- Type: SystemInt64
file size to write before closing the file and opening another one
Type Parameters
- TTime
- type of the record time
Return Value
Type: StreamUri, TTimestream of filenames written
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type StreamString, TTime. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also