This project has retired. For details please refer to its Attic page.
Uses of Class org.apache.lens.api.LensConf (Lens 2.0.1-beta-incubating API)

Uses of Class
org.apache.lens.api.LensConf

Packages that use LensConf
org.apache.lens.client   
org.apache.lens.ml   
org.apache.lens.ml.spark   
org.apache.lens.ml.spark.algos   
org.apache.lens.server   
org.apache.lens.server.api.query   
org.apache.lens.server.query   
org.apache.lens.server.session   
org.apache.lens.server.ui   
 

Uses of LensConf in org.apache.lens.client
 

Methods in org.apache.lens.client that return LensConf
 LensConf LensConnectionParams.getSessionConf()
           
 

Uses of LensConf in org.apache.lens.ml
 

Methods in org.apache.lens.ml that return LensConf
 LensConf MLAlgo.getConf()
           
 

Methods in org.apache.lens.ml with parameters of type LensConf
 void MLAlgo.configure(LensConf configuration)
          Configure.
 void MLDriver.init(LensConf conf)
          Inits the.
 MLModel MLAlgo.train(LensConf conf, String db, String table, String modelId, String... params)
          Train.
 

Uses of LensConf in org.apache.lens.ml.spark
 

Methods in org.apache.lens.ml.spark with parameters of type LensConf
 void SparkMLDriver.init(LensConf conf)
           
 

Uses of LensConf in org.apache.lens.ml.spark.algos
 

Methods in org.apache.lens.ml.spark.algos that return LensConf
 LensConf KMeansAlgo.getConf()
           
 LensConf BaseSparkAlgo.getConf()
           
 

Methods in org.apache.lens.ml.spark.algos with parameters of type LensConf
 void KMeansAlgo.configure(LensConf configuration)
           
 void BaseSparkAlgo.configure(LensConf configuration)
           
 MLModel KMeansAlgo.train(LensConf conf, String db, String table, String modelId, String... params)
           
 MLModel<?> BaseSparkAlgo.train(LensConf conf, String db, String table, String modelId, String... params)
           
 

Uses of LensConf in org.apache.lens.server
 

Methods in org.apache.lens.server with parameters of type LensConf
 org.apache.hadoop.conf.Configuration LensService.getLensConf(LensConf conf)
          Gets the lens conf.
 org.apache.hadoop.conf.Configuration LensService.getLensConf(LensSessionHandle sessionHandle, LensConf conf)
          Gets the lens conf.
 

Uses of LensConf in org.apache.lens.server.api.query
 

Methods in org.apache.lens.server.api.query with parameters of type LensConf
static QueryContext QueryContext.createContextWithSingleDriver(String query, String user, LensConf qconf, org.apache.hadoop.conf.Configuration conf, LensDriver driver, String lensSessionPublicId)
          Utility create method to create context with single driver.
 QueryHandleWithResultSet QueryExecutionService.execute(LensSessionHandle sessionHandle, String query, long timeoutmillis, LensConf conf, String queryName)
          Execute the query with a timeout.
 QueryHandle QueryExecutionService.executeAsync(LensSessionHandle sessionHandle, String query, LensConf conf, String queryName)
          Asynchronously execute the query.
 QueryHandleWithResultSet QueryExecutionService.executePrepare(LensSessionHandle sessionHandle, QueryPrepareHandle prepareHandle, long timeoutmillis, LensConf conf, String queryName)
          Execute already prepared query with timeout.
 QueryHandle QueryExecutionService.executePrepareAsync(LensSessionHandle sessionHandle, QueryPrepareHandle prepareHandle, LensConf conf, String queryName)
          Execute already prepared query asynchronously.
 QueryPlan QueryExecutionService.explain(LensSessionHandle sessionHandle, String query, LensConf conf)
          Explain the given query.
 QueryPlan QueryExecutionService.explainAndPrepare(LensSessionHandle sessionHandle, String query, LensConf conf, String queryName)
          Explain the given query and prepare it as well.
 QueryPrepareHandle QueryExecutionService.prepare(LensSessionHandle sessionHandle, String query, LensConf conf, String queryName)
          Prepare the query.
 boolean QueryExecutionService.updateQueryConf(LensSessionHandle sessionHandle, QueryHandle queryHandle, LensConf newconf)
          Update the query conf.
 boolean QueryExecutionService.updateQueryConf(LensSessionHandle sessionHandle, QueryPrepareHandle prepareHandle, LensConf newconf)
          Update configuration for prepared query.
 

Constructors in org.apache.lens.server.api.query with parameters of type LensConf
ExplainQueryContext(String query, String user, LensConf conf, org.apache.hadoop.conf.Configuration qconf, Collection<LensDriver> drivers)
          Constructor.
PreparedQueryContext(String query, String user, org.apache.hadoop.conf.Configuration conf, LensConf qconf, Collection<LensDriver> drivers)
          Instantiates a new prepared query context.
QueryContext(PreparedQueryContext prepared, String user, LensConf qconf, org.apache.hadoop.conf.Configuration conf)
          Creates context from PreparedQueryContext
QueryContext(String query, String user, LensConf qconf, org.apache.hadoop.conf.Configuration conf, Collection<LensDriver> drivers)
          Creates context from query
 

Uses of LensConf in org.apache.lens.server.query
 

Methods in org.apache.lens.server.query with parameters of type LensConf
 QueryHandleWithResultSet QueryExecutionServiceImpl.execute(LensSessionHandle sessionHandle, String query, long timeoutMillis, LensConf conf, String queryName)
           
 QueryHandle QueryExecutionServiceImpl.executeAsync(LensSessionHandle sessionHandle, String query, LensConf conf, String queryName)
           
 QueryHandleWithResultSet QueryExecutionServiceImpl.executePrepare(LensSessionHandle sessionHandle, QueryPrepareHandle prepareHandle, long timeoutMillis, LensConf conf, String queryName)
           
 QueryHandle QueryExecutionServiceImpl.executePrepareAsync(LensSessionHandle sessionHandle, QueryPrepareHandle prepareHandle, LensConf conf, String queryName)
           
 QuerySubmitResult QueryServiceResource.executePrepared(LensSessionHandle sessionid, String prepareHandle, String operation, LensConf conf, Long timeoutmillis, String queryName)
          Submit prepared query for execution.
 QueryPlan QueryExecutionServiceImpl.explain(LensSessionHandle sessionHandle, String query, LensConf lensConf)
           
 QueryPlan QueryExecutionServiceImpl.explainAndPrepare(LensSessionHandle sessionHandle, String query, LensConf lensConf, String queryName)
           
 QueryPrepareHandle QueryExecutionServiceImpl.prepare(LensSessionHandle sessionHandle, String query, LensConf lensConf, String queryName)
           
 QuerySubmitResult QueryServiceResource.prepareQuery(LensSessionHandle sessionid, String query, String operation, LensConf conf, String queryName)
          Prepare a query or 'explain and prepare' the query.
 QuerySubmitResult QueryServiceResource.query(LensSessionHandle sessionid, String query, String operation, LensConf conf, Long timeoutmillis, String queryName)
          Submit the query for explain or execute or execute with a timeout.
 APIResult QueryServiceResource.updateConf(LensSessionHandle sessionid, String queryHandle, LensConf conf)
          Modify query configuration if it is not running yet.
 APIResult QueryServiceResource.updatePreparedConf(LensSessionHandle sessionid, String prepareHandle, LensConf conf)
          Modify prepared query's configuration.
 boolean QueryExecutionServiceImpl.updateQueryConf(LensSessionHandle sessionHandle, QueryHandle queryHandle, LensConf newconf)
           
 boolean QueryExecutionServiceImpl.updateQueryConf(LensSessionHandle sessionHandle, QueryPrepareHandle prepareHandle, LensConf newconf)
           
 

Uses of LensConf in org.apache.lens.server.session
 

Methods in org.apache.lens.server.session with parameters of type LensConf
 LensSessionHandle SessionResource.openSession(String username, String password, LensConf sessionconf)
          Create a new session with Lens server.
 

Uses of LensConf in org.apache.lens.server.ui
 

Methods in org.apache.lens.server.ui with parameters of type LensConf
 LensSessionHandle SessionUIResource.openSession(String username, String password, LensConf sessionconf)
          Create a new session with Lens server.
 



Copyright © 2014–2015 Apache Software Foundation. All rights reserved.