congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
XPartition.setTimePartitionSpec
Code IndexAdd Tabnine to your IDE (free)

How to use
setTimePartitionSpec
method
in
org.apache.lens.api.metastore.XPartition

Best Java code snippets using org.apache.lens.api.metastore.XPartition.setTimePartitionSpec (Showing top 7 results out of 315)

origin: org.apache.lens/lens-api

public XPartition withTimePartitionSpec(XTimePartSpec value) {
  setTimePartitionSpec(value);
  return this;
}
origin: apache/lens

public XPartition withTimePartitionSpec(XTimePartSpec value) {
  setTimePartitionSpec(value);
  return this;
}
origin: apache/lens

/**
 * Sets up query command instances and adds partitions to a table.
 * @throws Exception
 */
@BeforeClass
public void setup() throws Exception {
 LensClient client = new LensClient();
 LensCubeCommands command = new LensCubeCommands();
 command.setClient(client);
 log.debug("Starting to test cube commands");
 URL cubeSpec = TestLensQueryCommands.class.getClassLoader().getResource("schema/cubes/base/sample-cube.xml");
 command.createCube(new File(cubeSpec.toURI()));
 TestLensDimensionCommands.createDimension();
 TestLensDimensionTableCommands.addDim1Table("dim_table", "schema/dimtables/dim_table.xml", "local");
 // Add partition
 URL dataDir = TestLensQueryCommands.class.getClassLoader().getResource("dim2-part");
 XPartition xp = new XPartition();
 xp.setFactOrDimensionTableName("dim_table");
 xp.setLocation(new Path(dataDir.toURI()).toString());
 xp.setUpdatePeriod(XUpdatePeriod.HOURLY);
 XTimePartSpec timePart = new XTimePartSpec();
 XTimePartSpecElement partElement = new XTimePartSpecElement();
 partElement.setKey("dt");
 partElement.setValue(DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar()));
 timePart.getPartSpecElement().add(partElement);
 xp.setTimePartitionSpec(timePart);
 APIResult result = client.addPartitionToDim("dim_table", "local", xp);
 assertEquals(result.getStatus(), APIResult.Status.SUCCEEDED);
}
origin: org.apache.lens/lens-cube

xp.setTimePartitionSpec(new XTimePartSpec());
xp.setNonTimePartitionSpec(new XPartSpec());
for (Map.Entry<String, String> entry : partSpec.entrySet()) {
xp.setTimePartitionSpec(null);
xp.setNonTimePartitionSpec(null);
origin: apache/lens

xp.setTimePartitionSpec(new XTimePartSpec());
xp.setNonTimePartitionSpec(new XPartSpec());
for (Map.Entry<String, String> entry : partSpec.entrySet()) {
xp.setTimePartitionSpec(null);
xp.setNonTimePartitionSpec(null);
origin: apache/lens

private XPartition createPartition(String cubeTableName, final List<XTimePartSpecElement>
  timePartSpecs, String updatePeriod) {
 XPartition xp = cubeObjectFactory.createXPartition();
 xp.setLocation(new Path(new File("target").getAbsolutePath(), "part/test_part").toString());
 xp.setFactOrDimensionTableName(cubeTableName);
 xp.setNonTimePartitionSpec(new XPartSpec());
 xp.setTimePartitionSpec(new XTimePartSpec());
 xp.setPartitionParameters(new XProperties());
 xp.setSerdeParameters(new XProperties());
 for (XTimePartSpecElement timePartSpec : timePartSpecs) {
  xp.getTimePartitionSpec().getPartSpecElement().add(timePartSpec);
 }
 if (updatePeriod==null) {
  xp.setUpdatePeriod(XUpdatePeriod.HOURLY);
 } else {
  XUpdatePeriod updatePeriod1=XUpdatePeriod.valueOf(updatePeriod.toUpperCase());
  xp.setUpdatePeriod(updatePeriod1);
 }
 return xp;
}
origin: apache/lens

partElement.setValue(DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar()));
timePart.getPartSpecElement().add(partElement);
xp.setTimePartitionSpec(timePart);
result = client.addPartitionToDim("dim_table", "local", xp);
assertEquals(result.getStatus(), APIResult.Status.SUCCEEDED);
org.apache.lens.api.metastoreXPartitionsetTimePartitionSpec

Javadoc

Sets the value of the timePartitionSpec property.

Popular methods of XPartition

  • setLocation
    Sets the value of the location property.
  • setFactOrDimensionTableName
    Sets the value of the factOrDimensionTableName property.
  • setUpdatePeriod
    Sets the value of the updatePeriod property.
  • <init>
  • getLocation
    Gets the value of the location property.
  • getUpdatePeriod
    Gets the value of the updatePeriod property.
  • getFactOrDimensionTableName
    Gets the value of the factOrDimensionTableName property.
  • getFullPartitionSpec
    Gets the value of the fullPartitionSpec property.
  • getNonTimePartitionSpec
    Gets the value of the nonTimePartitionSpec property.
  • getTimePartitionSpec
    Gets the value of the timePartitionSpec property.
  • setNonTimePartitionSpec
    Sets the value of the nonTimePartitionSpec property.
  • setPartitionParameters
    Sets the value of the partitionParameters property.
  • setNonTimePartitionSpec,
  • setPartitionParameters,
  • setSerdeParameters,
  • getInputFormat,
  • getOutputFormat,
  • getPartitionParameters,
  • getSerdeClassname,
  • getSerdeParameters,
  • setFullPartitionSpec

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (Timer)
  • notifyDataSetChanged (ArrayAdapter)
  • setScale (BigDecimal)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Kernel (java.awt.image)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now