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.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 with type parameters of type Dataset
static
<D extends Dataset<GenericRecord>>
D
Datasets.update(String uri, DatasetDescriptor descriptor)
          Update a Dataset for the given dataset or view URI string.
static
<E,D extends Dataset<E>>
D
Datasets.update(String uri, DatasetDescriptor descriptor, Class<E> type)
          Update a Dataset for the given dataset or view URI string.
static
<D extends Dataset<GenericRecord>>
D
Datasets.update(URI uri, DatasetDescriptor descriptor)
          Update a Dataset for the given dataset or view URI.
static
<E,D extends Dataset<E>>
D
Datasets.update(URI uri, DatasetDescriptor descriptor, Class<E> type)
          Update a Dataset for the given dataset or view URI.
 

Methods in org.kitesdk.data that return Dataset
<E> Dataset<E>
DatasetRepository.create(String name, DatasetDescriptor descriptor)
          Create a Dataset with the supplied descriptor.
<E> Dataset<E>
DatasetRepository.create(String name, DatasetDescriptor descriptor, Class<E> type)
          Create a Dataset with the supplied descriptor.
 Dataset<E> View.getDataset()
          Returns the underlying Dataset for the View.
 Dataset<E> Dataset.getPartition(org.kitesdk.data.spi.PartitionKey key, boolean autoCreate)
          Deprecated. will be removed in 0.16.0; use RefinableView methods instead
<E> Dataset<E>
DatasetRepository.load(String name)
          Get the latest version of a named Dataset.
<E> Dataset<E>
DatasetRepository.load(String name, Class<E> type)
          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.
<E> Dataset<E>
DatasetRepository.update(String name, DatasetDescriptor descriptor, Class<E> type)
          Update an existing Dataset to reflect the supplied descriptor.
 

Methods in org.kitesdk.data that return types with arguments of type Dataset
 Iterable<? extends Dataset<E>> Dataset.getPartitions()
          Deprecated. will be removed in 0.16.0; use RefinableView methods instead
 

Uses of Dataset in org.kitesdk.data.crunch
 

Methods in org.kitesdk.data.crunch with parameters of type Dataset
static
<E> ReadableSource<E>
CrunchDatasets.asSource(Dataset<E> dataset, Class<E> type)
          Deprecated. will be removed in 0.16.0; use CrunchDatasets.asSource(View)
static
<E> Target
CrunchDatasets.asTarget(Dataset<E> dataset)
          Deprecated. will be removed in 0.16.0; use CrunchDatasets.asTarget(View)
 

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)
           
 



Copyright © 2013–2014. All rights reserved.