Uses of Interface
org.kitesdk.data.Dataset

Packages that use Dataset
org.kitesdk.data Provides interfaces and classes for reading and writing datasets. 
org.kitesdk.data.crunch Provides helper classes for working with datasets using Crunch. 
org.kitesdk.data.filesystem Provides a dataset implementation for Hadoop filesystems, like HDFS. 
org.kitesdk.data.hcatalog Provides a dataset implementation that uses the Hive/HCatalog metastore for metadata, and stores data in a Hadoop FileSystem
 

Uses of Dataset in org.kitesdk.data
 

Subinterfaces of Dataset in org.kitesdk.data
 interface RandomAccessDataset<E>
           A Dataset that supports random access operations on entities.
 

Methods in org.kitesdk.data that return Dataset
<E> Dataset<E>
DatasetRepository.create(String name, DatasetDescriptor descriptor)
          Create a Dataset with the supplied descriptor.
 Dataset<E> View.getDataset()
          Returns the underlying Dataset that this is a View of.
 Dataset<E> Dataset.getPartition(PartitionKey key, boolean autoCreate)
          Get a partition for a PartitionKey, possibly creating the partition if it doesn't already exist.
<E> Dataset<E>
DatasetRepository.load(String name)
          Get the latest version of a named Dataset.
<E> Dataset<E>
DatasetRepository.update(String name, DatasetDescriptor descriptor)
          Update an existing Dataset to reflect the supplied descriptor.
 

Methods in org.kitesdk.data that return types with arguments of type Dataset
 Iterable<Dataset<E>> Dataset.getPartitions()
           Return partitions, if this dataset is partitioned.
 

Uses of Dataset in org.kitesdk.data.crunch
 

Methods in org.kitesdk.data.crunch with parameters of type Dataset
static
<E extends IndexedRecord>
ReadableSource<E>
CrunchDatasets.asSource(Dataset<E> dataset, Class<E> type)
          Expose the given Dataset as a Crunch ReadableSource.
static Target CrunchDatasets.asTarget(Dataset dataset)
          Expose the given Dataset as a Crunch Target.
 

Uses of Dataset in org.kitesdk.data.filesystem
 

Methods in org.kitesdk.data.filesystem that return Dataset
<E> Dataset<E>
FileSystemDatasetRepository.create(String name, DatasetDescriptor descriptor)
           
<E> Dataset<E>
FileSystemDatasetRepository.load(String name)
           
<E> Dataset<E>
FileSystemDatasetRepository.update(String name, DatasetDescriptor descriptor)
           
 

Methods in org.kitesdk.data.filesystem with parameters of type Dataset
static PartitionKey FileSystemDatasetRepository.partitionKeyForPath(Dataset dataset, URI partitionPath)
          Get a PartitionKey corresponding to a partition's filesystem path represented as a URI.
 

Uses of Dataset in org.kitesdk.data.hcatalog
 

Methods in org.kitesdk.data.hcatalog that return Dataset
<E> Dataset<E>
HCatalogDatasetRepository.create(String name, DatasetDescriptor descriptor)
           
<E> Dataset<E>
HCatalogDatasetRepository.load(String name)
           
<E> Dataset<E>
HCatalogDatasetRepository.update(String name, DatasetDescriptor descriptor)
           
 



Copyright © 2013–2014. All rights reserved.