4344454647484950
private DataFileWriter<T> writer; @Override public T get(K key, String[] fields) throws java.io.IOException { throw new OperationNotSupportedException( "Avro DataFile's does not support indexed retrieval"); };
187188189190191192193194
public void createSchema() throws IOException { } @Override public void deleteSchema() throws IOException { throw new OperationNotSupportedException("delete schema is not supported for " + "file backed data stores"); }
4849505152535455
private DataFileWriter<T> writer; @Override public T get(K key, String[] fields) { throw new OperationNotSupportedException( "Avro DataFile's does not support indexed retrieval"); };
126127128129130131132
} } @Override public boolean delete(K key) { throw new OperationNotSupportedException("delete is not supported for AvroStore"); }
131132133134135136137
throw new OperationNotSupportedException("delete is not supported for AvroStore"); } @Override public long deleteByQuery(Query<K, T> query) { throw new OperationNotSupportedException("delete is not supported for AvroStore"); }
150151152153154155156
* Executes a PartitialQuery, reading the data between start and end. */ @Override protected Result<K,T> executePartial(FileSplitPartitionQuery<K,T> query) throws IOException { throw new OperationNotSupportedException("Not yet implemented"); }
167168169170171172173
} } @Override public T get(K key, String[] fields) { throw new OperationNotSupportedException(); }
8081828384858687
@Override /** * Deletes schema from the data store */ public void deleteSchema() { throw new OperationNotSupportedException("delete schema is not supported for " + "file backed data stores"); }
220221222223224225226227
public void createSchema() { } @Override public void deleteSchema() { throw new OperationNotSupportedException("delete schema is not supported for " + "file backed data stores"); }