1
0
mirror of synced 2025-12-20 10:32:35 -05:00
Files
airbyte/docs/integrations/sources/azure-table.md
octavia-bot-hoard[bot] b2b87a837e 🐙 source-azure-table: run up-to-date pipeline [2025-10-21] (#68397)
Co-authored-by: octavia-bot-hoard[bot] <230633153+octavia-bot-hoard[bot]@users.noreply.github.com>
2025-10-21 08:11:41 -04:00

8.9 KiB

Azure Table Storage

Overview

The Azure table storage supports Full Refresh and Incremental syncs. You can choose which tables you want to replicate.

Output schema

This Source have generic schema for all streams. Azure Table storage is a service that stores non-relational structured data (also known as structured NoSQL data). There is no efficient way to read schema for the given table. We use data property to have all the properties for any given row.

  • data - This property contains all values
  • additionalProperties - This property denotes that all the values are in data property.
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "properties": {
        "data": {
            "type": "object"
        },
        "additionalProperties": {
            "type": "boolean"
        }
    }
}

Data type mapping

Azure Table Storage uses different property types and Airbyte uses internally (string, date-time, object, array, boolean, integer, and number). We don't apply any explicit data type mappings.

Features

Feature Supported?
Full Refresh Sync Yes
Incremental - Append Sync Yes
Incremental - Dedupe Sync No
SSL connection Yes
Namespaces No

Performance considerations

The Azure table storage connector should not run into API limitations under normal usage. Please create an issue if you see any rate limit issues that are not automatically retried successfully.

Getting started

Requirements

  • Azure Storage Account
  • Azure Storage Account Key
  • Azure Storage Endpoint Suffix

Setup guide

Visit the Azure Portal. Go to your storage account, you can find :

  • Azure Storage Account - under the overview tab
  • Azure Storage Account Key - under the Access keys tab
  • Azure Storage Endpoint Suffix - under the Endpoint tab

We recommend creating a restricted key specifically for Airbyte access. This will allow you to control which resources Airbyte should be able to access. However, shared access key authentication is not supported by this connector yet.

Changelog

Expand to review
Version Date Pull Request Subject
0.1.57 2025-10-21 68397 Update dependencies
0.1.56 2025-10-14 67976 Update dependencies
0.1.55 2025-10-07 67169 Update dependencies
0.1.54 2025-09-30 65653 Update dependencies
0.1.53 2025-08-23 65333 Update dependencies
0.1.52 2025-08-16 65046 Update dependencies
0.1.51 2025-08-09 64646 Update dependencies
0.1.50 2025-07-26 63805 Update dependencies
0.1.49 2025-06-21 61900 Update dependencies
0.1.48 2025-06-15 61628 Update dependencies
0.1.47 2025-05-24 60695 Update dependencies
0.1.46 2025-05-10 59873 Update dependencies
0.1.45 2025-05-03 59324 Update dependencies
0.1.44 2025-04-26 58715 Update dependencies
0.1.43 2025-04-19 58249 Update dependencies
0.1.42 2025-04-12 57650 Update dependencies
0.1.41 2025-04-05 57112 Update dependencies
0.1.40 2025-03-29 56621 Update dependencies
0.1.39 2025-03-22 56102 Update dependencies
0.1.38 2025-03-08 55385 Update dependencies
0.1.37 2025-03-01 54862 Update dependencies
0.1.36 2025-02-22 54229 Update dependencies
0.1.35 2025-02-15 53938 Update dependencies
0.1.34 2025-02-01 52877 Update dependencies
0.1.33 2025-01-25 51293 Update dependencies
0.1.32 2024-12-28 50457 Update dependencies
0.1.31 2024-12-21 50179 Update dependencies
0.1.30 2024-12-14 49291 Update dependencies
0.1.29 2024-11-25 48663 Starting with this version, the Docker image is now rootless. Please note that this and future versions will not be compatible with Airbyte versions earlier than 0.64
0.1.28 2024-10-29 47050 Update dependencies
0.1.27 2024-10-12 46763 Update dependencies
0.1.26 2024-10-05 46396 Update dependencies
0.1.25 2024-09-28 46183 Update dependencies
0.1.24 2024-09-21 45836 Update dependencies
0.1.23 2024-09-14 45544 Update dependencies
0.1.22 2024-09-07 45248 Update dependencies
0.1.21 2024-08-31 45039 Update dependencies
0.1.20 2024-08-24 44623 Update dependencies
0.1.19 2024-08-17 44344 Update dependencies
0.1.18 2024-08-10 43677 Update dependencies
0.1.17 2024-08-03 43292 Update dependencies
0.1.16 2024-07-27 42734 Update dependencies
0.1.15 2024-07-20 42274 Update dependencies
0.1.14 2024-07-13 41929 Update dependencies
0.1.13 2024-07-10 41492 Update dependencies
0.1.12 2024-07-09 41105 Update dependencies
0.1.11 2024-07-06 40937 Update dependencies
0.1.10 2024-06-25 40277 Update dependencies
0.1.9 2024-06-22 40072 Update dependencies
0.1.8 2024-06-04 38968 [autopull] Upgrade base image to v1.2.1
0.1.7 2024-06-03 38915 Replace AirbyteLogger with logging.Logger
0.1.6 2024-06-03 38915 Replace AirbyteLogger with logging.Logger
0.1.5 2024-05-20 38443 [autopull] base image + poetry + up_to_date
0.1.4 2024-01-26 34576 Migrate to per-stream/global state
0.1.3 2022-08-12 15591 Clean instantiation of AirbyteStream
0.1.2 2021-12-23 14212 Adding incremental load capability
0.1.1 2021-12-23 8434 Update fields in source-connectors specifications