DataProvider Ingress T  Method DryadLINQ documentation
Ingress a .NET collection to a specified store location.

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public abstract void Ingress<T>(
	DryadLinqContext context,
	IEnumerable<T> source,
	Uri dataSetUri,
	DryadLinqMetaData metaData,
	CompressionScheme outputScheme,
	bool isTemp = false
)

Parameters

context
Type: Microsoft.Research.DryadLinq DryadLinqContext
An instance of DryadLinqContext.
source
Type: System.Collections.Generic IEnumerable T 
The collection to be ingressed.
dataSetUri
Type: System Uri
The URI to store the collection.
metaData
Type: Microsoft.Research.DryadLinq DryadLinqMetaData
The metadata for the collection.
outputScheme
Type: Microsoft.Research.DryadLinq CompressionScheme
The compression scheme used to store the collection.
isTemp (Optional)
Type: System Boolean
true to only store the collection temporarily with a time lease.
Type Parameters

T
The record type of the collection.
See Also