Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

When importing data using an import job or a file upload, you can partition your data using date parameters. When this data is loaded into a workbook, you can choose to run your calculations on all or on just a part of your data. Also if you decide to export data, you can choose to export all or just a part of your data.

If you are using Microsoft Internet Explorer 7 or 8, these versions don't support Scalable Vector Graphics (SVG). When using partitions in a workbook or when  or when exporting a  a partition, the simple partition filter isn't available - only the time window and advanced partition filter are available. Refer to to Supported Browsers for  for alternate web browsers.

Table of Contents

Anchor
importJobs
importJobs
Partitioning Data During Import Jobs and File Uploads

To use partitions you must first configure your data within an import jobdata link, or a file upload. When configuring your job, take into account that the record sample size is per partition. Multiple partitions in combination with large sample sizes may lead to performance issues.

Simple partition filter

Image Removed

On the define fields step when importing your data, you can choose The Define Fields step of an Import Job or File Upload is where you can elect to partition your data. Currently, Datameer only supports time-based partitions.Here you can choose

If your input job is partitioned and you have changed the partition or schema, when you reach the last step of the Import Job wizard, clicking the Save Copy As button in fact does not re-import the data, rather it triggers a migration job instead.

Simple partition filter

In Column Name choose a column that contains a date. You can also choose which In Date Format choose the time scale to use, so you can concentrate on only periods of years, months, weeks, etcdays or hours.

Image Added

Advanced partition filter

Image Removed

With the advanced tab, you can enter a formula to represent the partitions. This especially useful when you don't have one column containing dates, rather the date is split into more than one column.

Code Block
nopaneltrue
ASDATE(CONCAT(#Year;"-";#Month;"-";#Day;" ";#Hour;":";#Minute;":";#Second);"yyyy-MM-dd HH:mm:ss")

Image Added

To create partitions when linking data:

  1. Create a new data link or choose to edit a current data link.
  2. Go to the the Data Details section section.
  3. Enter the path for the files or folders and include the %pattern% to where to specify where the files are located. 

    The %pattern% specifies a folder structure and defines which files from the included folders should be included in the data link partition. This feature can't cannot be used on direct file names.

    For example, instead of using using /data/archive/newsvine/Newsvine_Users_20140104.txt, use you can use newsvine/%pattern% when  when the path prefix is set to to /data/archive.

    More examples:

    (tick) /Users/MattSmith/Desktop/Geo_coords/%pattern%/geodata.csv

    (error) /Users/MattSmith/Desktop/Geo_coords/%pattern%.csv)

    You can also include a / (slash) character to be able to distinguish different folder names for the different components of the date partition. 
    Additionally, a fixed character set can be included inside ' (single quotes).

    Examples:

    /user/database/date=20150101/data.txt

    becomes becomes File or Folder value: user/database/date=%pattern%/*

    Partition field: yyyyMMdd

    For a particular folder structure:

    /user/database/db_date_yr=2015/db_date_mo=01/data.txt

    becomes File or Folder value: user/database/db_date_yr=%pattern%/*

    Partition field: yyyy/'db_date_mo='MM

    Or File or Folder value: user/database/%pattern%/*

    Partition field: 'db_date_yr='yyyy/'db_date_mo='MM

    To partition all files in a single folder and the folder where the file names contains the metadata:

    /user/database/data-2015-01-01-version1.txt

    File use File or Folder value: /user/database/data-%pattern%-version*.csv
    Partition field: yyyy''MM''dd

  4. Scroll down to time based partitions and select the ON setting.
  5. In the the Partition Pattern box  box enter a date format expression like 'yyyy/MM/dd/HH/mm/SS' which will replaces the %pattern% placeholder in the file path. In the above example, you would use 'Newsvine_Users_'yyyMMdd'.txt'.

    Note

    Keep the following points in mind when determining granularity:

      • The selected granularity of a partition can affect the performance of downstream workbooks.
      • If the defined partitions contain few records, job performance might be slow in downstream workbooks.
      • Using a granularity of minutes or seconds
    could
      • can cause the simple partition filter to be unreadable. Datameer recommends only using these partition granularities with the time window and advanced partition filter.
      • Using a granularity of minutes or seconds
    isn't
      • is not available for import jobs.
  6. Click Click Next when  when you have finished and save the file.

...

After partitioning your data during an an import or file upload, open this data in a workbook. (See See Working with Workbooks for  for more details.)

Static and dynamic partitions

Static - The partition parameters have a set value(s) that donwon't change. Available from the simple and time window partition filters.

Dynamic - The partition parameters have the ability to change the partition values.The simple and time window partition filters offer static parameters. The advanced filter offers the ability to create dynamic parameters. Only available in the Advanced filter.

Simple partition filter

When you first load your partitioned data into a workbook, you will see a sunburst graph representation of representing the time period partitions in your data. You must first select which at least one partition or partitions to use before you can work with your data.

This sunburst graph shows the different periods of time in your data. In this example In the example below, the outside ring represents days, the next middle ring represents months and so on. You can choose a ring by clicking. By double-clicking you can zoom in. You can also , and the inner ring represents years. Click on a ring to choose it, or double-click to zoom in. You can also use shift+click to select a range of partitions by holding down SHIFT and clicking. Select , select all the partitions by clicking Select All in the bottom right corner.  clicking in the center of the graph or on the Select All button.  

Anchor
advanced_partition
advanced_partition
Advanced partition filter

There is also an advanced partition filter. Here just enter an Advanced partition filter where you must use a formula to signify specify which partition should be returned.

...

Here is an example of a formula returning the partitions representing the past seven days along with the partition for today:for the current day:
(Note that this formula does not take into account the possibility of daylight saving changes that would cause a day to have 23 or 25 hours.)

Code Block
nopaneltrue
 $partition > TODAY()-7d && $partition <= TODAY()

This formula doesn't respect daylight saving changes, as a day can possibly have 23 or 25 hours.Here is an example of second example is a formula returning the partitions representing the past seven days along with and the partition for today which the current day that does respect daylight saving time:

Code Block
nopaneltrue
 $partition > ADDTODATE(TODAY();"-7d") && $partition <= TODAY()

And an example of a formula returning The formula below returns the partitions representing yesterday which respect , respecting daylight saving:

Code Block
nopaneltrue
 $partition == ADDTODATE(TODAY();"-1d")

To catch capture the last seven days of the previous month in a workbook, you would use a  a formula that respects daylight saving timtime:

Code Block
nopaneltrue
$partition < ENDOFMONTH(STARTOFMONTH(ADDTODATE(TODAY();"-1M"))) && $partition >= ENDOFMONTH(STARTOFMONTH(ADDTODATE(TODAY();"-1M")))-7d

Understanding the $partition variable for different partition resolutions

When a partition is created in Datameer for an an import job or  or data link, there are four different partition resolutions that can be configured: YEAR, MONTH, DAY, or HOUR. The $partition variable is < a <date type> object in Datameer. This variable is set to the start of the partition window. Depending on the resolution of the partitions, the $partition variable takes on different date field type values. 

For example, suppose that Apache log data is being imported from July 4, 2014 22:00:00 until July 4, 2014 22:59:59. The following table describes how an import job partitions data for each possible resolution. Additionally it describes what the corresponding $partition variable is for this data set:

Partition resolutionPartition range (inclusive)$partition variable value
YEARJanuary 1, 2014 00:00:00 - December 31, 2014 23:59:59January 1, 2014 00:00:00
MONTHJuly 1, 2014 00:00:00 - July 31, 2014 23:59:59July 1, 2014 00:00:00
DAYJuly 4, 2014 00:00:00 - July 4, 2014 23:59:59July 4, 2014 00:00:00
HOURJuly 4, 2014 22:00:00 - July 4, 2014 22:59:59July 4, 2014 22:00:00

The $lastpartition variable

...

It is also possible to export only the desired partition or partitions during during export.

Simple partition filter

During export you can choose to export only certain partitions.

...

After a partition has been set up configured it might may be necessary to change the partition's resolution. You can change the resolution for for import jobs and  and file uploads. Changing the resolution requires a few simple steps.

  1. Highlight and right-click the partitioned import job or file upload and click click Edit.
  2. Click Click Next until  until you reach reach Define Fields.
  3. Under Under Time-based partitions you  you can then change the resolution, as you would upon upon initial import.
  4. After choosing the desired resolution, click click Next until  until you reach the final screen and save the repartitioning.

The repartitioning process runs automatically and as long as the resolution is more finemore granular, all workbooks are updated automatically. If the resolution has become less fineless granular, then you are will be prompted to choose partitions again when opening an existing workbook.

If a running repartitioning is aborted, just process the import job or file upload again. As long as the the job configuration has  has been saved, then you need to restart the repartitioning job.

Repartitioning and migration

...

jobs

If you are repartitioning data from a migration job, it can affect resources on your cluster and use extra disk space. The repartitioning leaves the existing data alone until the migration job is finished and housekeeping executes. The data takes up at least twice of what it currently does after the migration has run and housekeeping hasn't. Datameer's partitioning logic always performs dynamic-based partitioning and needs to read the records to write the partition files. Datameer regenerates the samples, so there is a separate sample per partition, which requires Datameer to read through the data. If you have a yearly migration job, you can make it run faster by partitioning by smaller amounts of time, such as a month or a day so more tasks can be run in parallel.

Note
titleAs of Datameer 7.4
Note that if your input job is partitioned and you have changed the partition or schema, when you reach the last step of the Import Job or file upload wizard, clicking the Save Copy As button in fact does not re-import the data, rather it triggers a migration job instead.