Title: | Interface to the Table Storage Service in 'Azure' |
---|---|
Description: | An interface to the table storage service in 'Azure': <https://azure.microsoft.com/en-us/services/storage/tables/>. Supplies functionality for reading and writing data stored in tables, both as part of a storage account and from a 'CosmosDB' database with the table service API. Part of the 'AzureR' family of packages. |
Authors: | Hong Ooi [aut, cre], Microsoft [cph] |
Maintainer: | Hong Ooi <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.0.9000 |
Built: | 2024-11-22 03:05:44 UTC |
Source: | https://github.com/azure/azuretablestor |
Batch transactions for table storage
create_table_operation( endpoint, path, options = list(), headers = list(), body = NULL, metadata = c("none", "minimal", "full"), http_verb = c("GET", "PUT", "POST", "PATCH", "DELETE", "HEAD") ) create_batch_transaction(endpoint, operations) do_batch_transaction(transaction, ...) ## S3 method for class 'batch_transaction' do_batch_transaction( transaction, batch_status_handler = c("warn", "stop", "message", "pass"), num_retries = 10, ... )
create_table_operation( endpoint, path, options = list(), headers = list(), body = NULL, metadata = c("none", "minimal", "full"), http_verb = c("GET", "PUT", "POST", "PATCH", "DELETE", "HEAD") ) create_batch_transaction(endpoint, operations) do_batch_transaction(transaction, ...) ## S3 method for class 'batch_transaction' do_batch_transaction( transaction, batch_status_handler = c("warn", "stop", "message", "pass"), num_retries = 10, ... )
endpoint |
A table storage endpoint, of class |
path |
The path component of the operation. |
options |
A named list giving the query parameters for the operation. |
headers |
A named list giving any additional HTTP headers to send to the host. AzureCosmosR will handle authentication details, so you don't have to specify these here. |
body |
The request body for a PUT/POST/PATCH operation. |
metadata |
The level of ODATA metadata to include in the response. |
http_verb |
The HTTP verb (method) for the operation. |
operations |
A list of individual table operation objects, each of class |
transaction |
For |
... |
Arguments passed to lower-level functions. |
batch_status_handler |
For |
num_retries |
The number of times to retry the call, if the response is a HTTP error 429 (too many requests). The Cosmos DB endpoint tends to be aggressive at rate-limiting requests, to maintain the desired level of latency. This will generally not affect calls to an endpoint provided by a storage account. |
Table storage supports batch transactions on entities that are in the same table and belong to the same partition group. Batch transactions are also known as entity group transactions.
You can use create_table_operation
to produce an object corresponding to a single table storage operation, such as inserting, deleting or updating an entity. Multiple such objects can then be passed to create_batch_transaction
, which bundles them into a single atomic transaction. Call do_batch_transaction
to send the transaction to the endpoint.
Note that batch transactions are subject to some limitations imposed by the REST API:
All entities subject to operations as part of the transaction must have the same PartitionKey
value.
An entity can appear only once in the transaction, and only one operation may be performed against it.
The transaction can include at most 100 entities, and its total payload may be no more than 4 MB in size.
create_table_operation
returns an object of class table_operation
.
Assuming the batch transaction did not fail due to rate-limiting, do_batch_transaction
returns a list of objects of class table_operation_response
, representing the results of each individual operation. Each object contains elements named status
, headers
and body
containing the respective parts of the response. Note that the number of returned objects may be smaller than the number of operations in the batch, if the transaction failed.
import_table_entities, which uses (multiple) batch transactions under the hood
Performing entity group transactions
## Not run: endp <- table_endpoint("https://mycosmosdb.table.cosmos.azure.com:443", key="mykey") tab <- create_storage_table(endp, "mytable") ## a simple batch insert ir <- subset(iris, Species == "setosa") # property names must be valid C# variable names names(ir) <- sub("\\.", "_", names(ir)) # create the PartitionKey and RowKey properties ir$PartitionKey <- ir$Species ir$RowKey <- sprintf("%03d", seq_len(nrow(ir))) # generate the array of insert operations: 1 per row ops <- lapply(seq_len(nrow(ir)), function(i) create_table_operation(endp, "mytable", body=ir[i, ], http_verb="POST"))) # create a batch transaction and send it to the endpoint bat <- create_batch_transaction(endp, ops) do_batch_transaction(bat) ## End(Not run)
## Not run: endp <- table_endpoint("https://mycosmosdb.table.cosmos.azure.com:443", key="mykey") tab <- create_storage_table(endp, "mytable") ## a simple batch insert ir <- subset(iris, Species == "setosa") # property names must be valid C# variable names names(ir) <- sub("\\.", "_", names(ir)) # create the PartitionKey and RowKey properties ir$PartitionKey <- ir$Species ir$RowKey <- sprintf("%03d", seq_len(nrow(ir))) # generate the array of insert operations: 1 per row ops <- lapply(seq_len(nrow(ir)), function(i) create_table_operation(endp, "mytable", body=ir[i, ], http_verb="POST"))) # create a batch transaction and send it to the endpoint bat <- create_batch_transaction(endp, ops) do_batch_transaction(bat) ## End(Not run)
Operations on table entities (rows)
insert_table_entity(table, entity) update_table_entity( table, entity, row_key = NULL, partition_key = NULL, etag = NULL ) delete_table_entity(table, row_key, partition_key, etag = NULL) list_table_entities(table, filter = NULL, select = NULL, as_data_frame = TRUE) get_table_entity(table, row_key, partition_key, select = NULL) import_table_entities( table, data, row_key = NULL, partition_key = NULL, batch_status_handler = c("warn", "stop", "message", "pass"), ... )
insert_table_entity(table, entity) update_table_entity( table, entity, row_key = NULL, partition_key = NULL, etag = NULL ) delete_table_entity(table, row_key, partition_key, etag = NULL) list_table_entities(table, filter = NULL, select = NULL, as_data_frame = TRUE) get_table_entity(table, row_key, partition_key, select = NULL) import_table_entities( table, data, row_key = NULL, partition_key = NULL, batch_status_handler = c("warn", "stop", "message", "pass"), ... )
table |
A table object, of class |
entity |
For |
row_key , partition_key
|
For |
etag |
For |
filter , select
|
For |
as_data_frame |
For |
data |
For |
batch_status_handler |
For |
... |
For |
These functions operate on rows of a table, also known as entities. insert
, get
, update
and delete_table_entity
operate on an individual row. import_table_entities
bulk-inserts multiple rows of data into the table, using batch transactions. list_table_entities
queries the table and returns multiple rows, subsetted on the filter
and select
arguments.
Table storage imposes the following requirements for properties (columns) of an entity:
There must be properties named RowKey
and PartitionKey
, which together form the entity's unique identifier. These properties must be of type character.
The property Timestamp
cannot be used (strictly speaking, it is reserved by the system).
There can be at most 255 properties per entity, although different entities can have different properties.
Table properties must be atomic. In particular, they cannot be nested lists.
Note that table storage does not require that all entities in a table must have the same properties.
For insert_table_entity
, update_table_entity
and import_table_entities
, you can also specify JSON text representing the data to insert/update/import, instead of a list or data frame.
list_table_entities(as_data_frame=TRUE)
for a large table may be slow. If this is a problem, and you know that all entities in the table have the same schema, try setting as_data_frame=FALSE
and converting to a data frame manually.
insert_table_entity
and update_table_entity
return the Etag of the inserted/updated entity, invisibly.
get_table_entity
returns a named list of properties for the given entity.
list_table_entities
returns a data frame if as_data_frame=TRUE
, and a list of entities (rows) otherwise.
import_table_entities
invisibly returns a named list, with one component for each value of the PartitionKey
column. Each component contains the results of the individual operations to insert each row into the table.
storage_table, do_batch_transaction
Understanding the table service data model
## Not run: endp <- table_endpoint("https://mycosmosdb.table.cosmos.azure.com:443", key="mykey") tab <- create_storage_table(endp, "mytable") insert_table_entity(tab, list( RowKey="row1", PartitionKey="partition1", firstname="Bill", lastname="Gates" )) get_table_entity(tab, "row1", "partition1") # specifying the entity as JSON text instead of a list update_table_entity(tab, '{ "RowKey": "row1", "PartitionKey": "partition1", "firstname": "Bill", "lastname": "Gates" }') # we can import to the same table as above: table storage doesn't enforce a schema import_table_entities(tab, mtcars, row_key=row.names(mtcars), partition_key=as.character(mtcars$cyl)) list_table_entities(tab) list_table_entities(tab, filter="firstname eq 'Satya'") list_table_entities(tab, filter="RowKey eq 'Toyota Corolla'") delete_table_entity(tab, "row1", "partition1") ## End(Not run)
## Not run: endp <- table_endpoint("https://mycosmosdb.table.cosmos.azure.com:443", key="mykey") tab <- create_storage_table(endp, "mytable") insert_table_entity(tab, list( RowKey="row1", PartitionKey="partition1", firstname="Bill", lastname="Gates" )) get_table_entity(tab, "row1", "partition1") # specifying the entity as JSON text instead of a list update_table_entity(tab, '{ "RowKey": "row1", "PartitionKey": "partition1", "firstname": "Bill", "lastname": "Gates" }') # we can import to the same table as above: table storage doesn't enforce a schema import_table_entities(tab, mtcars, row_key=row.names(mtcars), partition_key=as.character(mtcars$cyl)) list_table_entities(tab) list_table_entities(tab, filter="firstname eq 'Satya'") list_table_entities(tab, filter="RowKey eq 'Toyota Corolla'") delete_table_entity(tab, "row1", "partition1") ## End(Not run)
Operations with azure tables
storage_table(endpoint, ...) ## S3 method for class 'table_endpoint' storage_table(endpoint, name, ...) list_storage_tables(endpoint, ...) ## S3 method for class 'table_endpoint' list_storage_tables(endpoint, ...) create_storage_table(endpoint, ...) ## S3 method for class 'table_endpoint' create_storage_table(endpoint, name, ...) ## S3 method for class 'storage_table' create_storage_table(endpoint, ...) delete_storage_table(endpoint, ...) ## S3 method for class 'table_endpoint' delete_storage_table(endpoint, name, confirm = TRUE, ...) ## S3 method for class 'storage_table' delete_storage_table(endpoint, ...)
storage_table(endpoint, ...) ## S3 method for class 'table_endpoint' storage_table(endpoint, name, ...) list_storage_tables(endpoint, ...) ## S3 method for class 'table_endpoint' list_storage_tables(endpoint, ...) create_storage_table(endpoint, ...) ## S3 method for class 'table_endpoint' create_storage_table(endpoint, name, ...) ## S3 method for class 'storage_table' create_storage_table(endpoint, ...) delete_storage_table(endpoint, ...) ## S3 method for class 'table_endpoint' delete_storage_table(endpoint, name, confirm = TRUE, ...) ## S3 method for class 'storage_table' delete_storage_table(endpoint, ...)
endpoint |
An object of class |
... |
Other arguments passed to lower-level functions. |
name |
The name of a table in a storage account. |
confirm |
For deleting a table, whether to ask for confirmation. |
These methods are for accessing and managing tables within a storage account.
storage_table
and create_storage_table
return an object of class storage_table
. list_storage_tables
returns a list of such objects.
## Not run: endp <- table_endpoint("https://mystorageacct.table.core.windows.net", key="mykey") create_storage_table(endp, "mytable") tab <- storage_table(endp, "mytable2") create_storage_table(tab) list_storage_tables(endp) delete_storage_table(tab) delete_storage_table(endp, "mytable") ## End(Not run)
## Not run: endp <- table_endpoint("https://mystorageacct.table.core.windows.net", key="mykey") create_storage_table(endp, "mytable") tab <- storage_table(endp, "mytable2") create_storage_table(tab) list_storage_tables(endp) delete_storage_table(tab) delete_storage_table(endp, "mytable") ## End(Not run)
Table storage endpoint object, and method to call it.
table_endpoint( endpoint, key = NULL, token = NULL, sas = NULL, api_version = getOption("azure_storage_api_version") ) call_table_endpoint( endpoint, path, options = list(), headers = list(), body = NULL, ..., http_verb = c("GET", "DELETE", "PUT", "POST", "HEAD", "PATCH"), http_status_handler = c("stop", "warn", "message", "pass"), return_headers = (http_verb == "HEAD"), metadata = c("none", "minimal", "full"), num_retries = 10 )
table_endpoint( endpoint, key = NULL, token = NULL, sas = NULL, api_version = getOption("azure_storage_api_version") ) call_table_endpoint( endpoint, path, options = list(), headers = list(), body = NULL, ..., http_verb = c("GET", "DELETE", "PUT", "POST", "HEAD", "PATCH"), http_status_handler = c("stop", "warn", "message", "pass"), return_headers = (http_verb == "HEAD"), metadata = c("none", "minimal", "full"), num_retries = 10 )
endpoint |
For |
key |
The access key for the storage account. |
token |
An Azure Active Directory (AAD) authentication token. For compatibility with AzureStor; not used for table storage. |
sas |
A shared access signature (SAS) for the account. At least one of |
api_version |
The storage API version to use when interacting with the host. Defaults to "2019-07-07". |
path |
For |
options |
For |
headers |
For |
body |
For |
... |
For |
http_verb |
For |
http_status_handler |
For |
return_headers |
For |
metadata |
For |
num_retries |
The number of times to retry the call, if the response is a HTTP error 429 (too many requests). The Cosmos DB endpoint tends to be aggressive at rate-limiting requests, to maintain the desired level of latency. This will generally not affect calls to an endpoint provided by a storage account. |
table_endpoint
returns an object of class table_endpoint
, inheriting from storage_endpoint
. This is the analogue of the blob_endpoint
, file_endpoint
and adls_endpoint
classes provided by the AzureStor package.
call_table_endpoint
returns the body of the response by default, or the headers if return_headers=TRUE
. If http_status_handler="pass"
, it returns the entire response object without modification.
storage_table, table_entity, AzureStor::call_storage_endpoint
Table service REST API reference
Authorizing requests to Azure storage services
## Not run: # storage account table endpoint table_endpoint("https://mystorageacct.table.core.windows.net", key="mykey") # Cosmos DB table endpoint table_endpoint("https://mycosmosdb.table.cosmos.azure.com:443", key="mykey") ## End(Not run)
## Not run: # storage account table endpoint table_endpoint("https://mystorageacct.table.core.windows.net", key="mykey") # Cosmos DB table endpoint table_endpoint("https://mycosmosdb.table.cosmos.azure.com:443", key="mykey") ## End(Not run)