Skip to content

Latest commit

 

History

History
94 lines (70 loc) · 3.68 KB

AZURE_FEDERATIONS.md

File metadata and controls

94 lines (70 loc) · 3.68 KB

Azure Federations

Implementing Federations inside a new Doctrine Sharding Extension. Some extensions to the DBAL and ORM core have to be done to get this working.

  1. DBAL (Database Abstraction Layer)
  • Add support for Database Schema Operations
    • CREATE FEDERATION
    • CREATE TABLE ... FEDERATED ON
    • Add support to create a multi-tenant schema from any given schema
  • Add API to pick a shard based on distribution key and atomic value
  • Add API to ask about federations, federation members and so on.
  • Add Sharding Abstraction
    • If a shard is picked via distribution key and atomic value fire queries against this only
    • Or query the global database.
  1. ORM (Object-Relational Mapper)
  • Federation Key has to be part of the clustered index of the table
    • Test with a pure Multi-Tenant App with Filtering = ON (TaskList)
    • Test with sharded app (Weather)

Implementation Details

SQL Azure requires one and exactly one clustered index. It makes no difference if the primary key or any other key is the clustered index. Sharding requires an external ID generation (no auto-increment) such as GUIDs. GUIDs have negative properties with regard to clustered index performance, so that typically you would add a "created" timestamp for example that holds the clustered index instead of making the GUID a clustered index.

Example API:

@@@ php
<?php
use Doctrine\DBAL\DriverManager;

$dbParams = array(
    'dbname' => 'tcp:dbname.database.windows.net',
    'sharding' => array(
        'federationName'   => 'Orders_Federation',
        'distributionKey'  => 'CustID',
        'distributionType' => 'integer',
        'filteringEnabled' => false,
    ),
    // ...
);

$conn = DriverManager::getConnection($dbParams);
$shardManager = $conn->getShardManager();

// Example 1: query against root database
$sql = "SELECT * FROM Products";
$rows = $conn->executeQuery($sql);

// Example 2:  query against the selected shard with CustomerId = 100
$aCustomerID = 100;
$shardManager->selectShard($aCustomerID); // Using Default federationName and distributionKey
// Query: "USE FEDERATION Orders_Federation (CustID = $aCustomerID) WITH RESET, FILTERING OFF;"

$sql = "SELECT * FROM Customers";
$rows = $conn->executeQuery($sql);

// Example 3: Reset API to root database again
$shardManager->selectGlobal();

ID Generation

With sharding all the ids have to be generated for global uniqueness. There are three strategies for this.

  1. Use GUIDs as described here http://blogs.msdn.com/b/cbiyikoglu/archive/2011/06/20/id-generation-in-federations-identity-sequences-and-guids-uniqueidentifier.aspx
  2. Having a central table that is accessed with a second connection to generate sequential ids
  3. Using natural keys from the domain.

The second approach has the benefit of having numerical primary keys, however also a central failure location. The third strategy can seldom be used, because the domains don't allow this. Identity columns cannot be used at all.

@@@ php
<?php
use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Id\TableHiLoIdGenerator;

$dbParams = array(
    'dbname' => 'dbname.database.windows.net',
    // ...
);
$conn = DriverManager::getConnection($dbParams);

$idGenerator = new TableHiLoIdGenerator($conn, 'id_table_name', $multiplicator = 1);
// only once, create this table
$idGenerator->createTable();

$nextId = $idGenerator->generateId('for_table_name');
$nextOtherId = $idGenerator->generateId('for_other_table');

The connection for the table generator has to be a different one than the one used for the main app to avoid transaction clashes.