Azure Table Core

The Azure backed implementation of Google Guava Table.

License

License

GroupId

GroupId

com.yammer.collections.azure
ArtifactId

ArtifactId

azure-table-core
Last Version

Last Version

3.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

Azure Table Core
The Azure backed implementation of Google Guava Table.

Download azure-table-core

How to add to project

<!-- https://jarcasting.com/artifacts/com.yammer.collections.azure/azure-table-core/ -->
<dependency>
    <groupId>com.yammer.collections.azure</groupId>
    <artifactId>azure-table-core</artifactId>
    <version>3.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.yammer.collections.azure/azure-table-core/
implementation 'com.yammer.collections.azure:azure-table-core:3.0.0'
// https://jarcasting.com/artifacts/com.yammer.collections.azure/azure-table-core/
implementation ("com.yammer.collections.azure:azure-table-core:3.0.0")
'com.yammer.collections.azure:azure-table-core:jar:3.0.0'
<dependency org="com.yammer.collections.azure" name="azure-table-core" rev="3.0.0">
  <artifact name="azure-table-core" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.yammer.collections.azure', module='azure-table-core', version='3.0.0')
)
libraryDependencies += "com.yammer.collections.azure" % "azure-table-core" % "3.0.0"
[com.yammer.collections.azure/azure-table-core "3.0.0"]

Dependencies

compile (3)

Group / Artifact Type Version
com.yammer.collections : yammer-collections jar 0.0.6
com.microsoft.windowsazure : microsoft-windowsazure-api jar 0.4.4
com.google.guava : guava jar 16.0.1

test (3)

Group / Artifact Type Version
junit : junit Optional jar 4.11
org.mockito : mockito-all jar 1.8.4
org.hamcrest : hamcrest-all jar 1.3

Project Modules

There are no modules declared in this project.

[DEPRECATED] This repository is no longer maintained or supported! Use at your own risk!

Azure Table Build Status

azure-table

Azure based Guava Table implementation

There are four sub-modules:

  • azure-table-core: provides the Guava Table adapter to Azure Table. Main class is BaseAzureTable, a table that uses the String object for row and column keys as well as values.
  • azure-table-json: provides json serialization which allows for use of arbitrary java types for rows, columns, and values. Main class is JsonSerializingTable.
  • azure-table-metrics: provides a metrics wrapper for the table. Main class is MetredTable.
  • azure-table-util: combines all of the above, provides a fluent builder for the azure client and table.

azure-table-core

To start using the core library you simply need to include the following dependency:

<dependency>
  <groupId>com.yammer.collections.azure</groupId>
  <artifactId>azure-table-core</artifactId>
  <version>${project.version}</version>
</dependency>

This is a bare-bones integration. It requires you to provide the table name and an instance of CloudTableClient as provided by the Azure Java SDK: https://github.com/WindowsAzure/azure-sdk-for-java It is your responsibility to ensure that the physical table exists beforehand. Also, no serialization mechanism is provided, row, columns and values need to be provided as String instances.

IMPORTANT Because the provided BaseAzureTable class is nothing but a view on a remote collection, in some aspects it breaks the guava Table interface. Namely, the rowMap and columnMap views, don't behave like in-memory maps. For example, if you were to remove a row from the rowMap in the in-memory implementation you would expect to get the deleted row to be returned, but here this is not possible, as it is being physically deleted from the database. The only way to achieve such a behaviour would be to materialize (retrieve) the whole row in memory prior to deletion, however, given that Azure Table is meant to serve as a large distributed key-value store, such an approach is impractical.

Testing This module contains both unit and integration tests. The latter are contained in BaseAzureTableIT and are run against an actual azure account that requires credentials to be setup in a properties file located (you'll need to create the file) at the following path:

azure-table-core/src/test/resources/com/yammer/collections/azure/azure-table-test-connection.properties

The file should contain the following entries:

account.name=<account name>
account.key=<account key>

You can also choose not to run the integration tests. This can be achieved by passing the -P noazure option to your maven command line.

azure-table-json

To start using the json serialization library you simply need to include the following dependency.

<dependency>
  <groupId>com.yammer.collections.azure</groupId>
  <artifactId>azure-table-core</artifactId>
  <version>${project.version}</version>
</dependency>

This library provides a serialization layer which forms a bridge between guava Table instances that use arbitrary types for row, column and value objects and those that use only the String type. The serialization layer is backed by jackson for automated json serialization and the yammer transforming collections library, which provides live read-write transforming views of other collections. This functionality is provided via the JsonSerializingTable, which is a decorator around a Table<String,String,String> instance.

IMPORTANT You are strongly advised to use immutable data types when working with this library. As it is a view of a remote data store, mutable objects do not behave as they would have for in-memory collections. First of all, using mutable values for the row and column keys is not a good idea in general. Second of all, when you get a value from the table and modify it, that modification has to be explicitly pushed back to the table, by doing a put. This wouldn't be the case if it were a in-memory collection.

azure-table-metrics

To start using the yammer metrics library integration you simply need to include the following dependency.

<dependency>
  <groupId>com.yammer.collections.azure</groupId>
  <artifactId>azure-table-metrics</artifactId>
  <version>${project.version}</version>
</dependency>

The key class is MeteredTable which is a decorator around a Table instance.

This library provides metrics purely around the following operations: get, put and remove.

azure-table-util

To start using the util library you simply need to include the following dependency.

<dependency>
  <groupId>com.yammer.collections.azure</groupId>
  <artifactId>azure-table-util</artifactId>
  <version>${project.version}</version>
</dependency>

Provides fluent utility class for constructing CloudTableClient and an instance azure Table.

Examples:

  1. Construct just the client:
    AzureTables.clientForAccount(accountName, accountKey)
               .withLinearRetryPolicy(retryInterval, numberOfAttempts) // optional
               .withTimeoutInMillis(timeout) // optional
               .build();
  1. Get a table reference
    AzureTables.clientForAccount(accountName, accountKey)
               .tableWithName(tableName)
               .cloudTable();
  1. Construct an azure table with metrics and using json serialization based on the configuration stored in AzureTableConfiguration, which can be loaded from a json or yaml file:
    AzureTables.clientForConfiguration(configuration)
               .createIfDoesNotExist()
               .andAddMetrics() // optional
               .buildWithJsonSerialization(rowClass, columnClass, valueClass);
  1. Construct an azure table with custom serialization, without metrics, and creating regardless:
    AzureTables.clientForAccount(accountName, accountKey)
               .tableWithName(tableName)
               .create()
               .buildUsingCustomSerialization(<serialization functions>);
  1. Do something only if the table exists:
    AzureTables.clientForAccount(accountName, accountKey)
               .tableWithName(tableName)
               .create()
               .ifExists();
com.yammer.collections.azure

Yammer

Connect with people across your organization to make better decisions, faster.

Versions

Version
3.0.0
2.0.1
1.1.4