Package org.apache.hadoop.chukwa.extraction.engine.datasource.record

Examples of org.apache.hadoop.chukwa.extraction.engine.datasource.record.ChukwaRecordDataSource


  public DataSource getDataSource(String datasourceName)
      throws DataSourceException {
    if (dataSources.containsKey(datasourceName)) {
      return dataSources.get(datasourceName);
    } else {
      DataSource hsdfsDS = new ChukwaRecordDataSource();
      dataSources.put(datasourceName, hsdfsDS);
      return hsdfsDS;
      // TODO proto only!
      // throw new DataSourceException("Unknown datasource");
    }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.chukwa.extraction.engine.datasource.record.ChukwaRecordDataSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.