google.appengine.datastore.datastore_rpc.Connection

Transaction-less connection class.

Inherits From: BaseConnection, expected_type

This contains those operations that are not allowed on transactional connections. (Currently only allocate_ids and reserve_key_ids.)

adapter Optional AbstractAdapter subclass instance; default IdentityAdapter.
config Optional Configuration object.

adapter The adapter used by this connection.
config The default configuration used by this connection.

Methods

allocate_ids

View source

Synchronous AllocateIds operation.

Exactly one of size and max must be specified.

Args
key A user-level key object.
size Optional number of IDs to allocate.
max Optional maximum ID to allocate.

Returns
A pair (start, end) giving the (inclusive) range of IDs allocation.

async_allocate_ids

View source

Asynchronous AllocateIds operation.

Args
config A Configuration object or None. Defaults are taken from the connection's default configuration.
key A user-level key object.
size Optional number of IDs to allocate.
max Optional maximum ID to allocate.
extra_hook Optional function to be called on the result once the RPC has completed.

Returns
A MultiRpc object.

async_begin_transaction

View source

Asynchronous BeginTransaction operation.

Args
config A configuration object or None. Defaults are taken from the connection's default configuration.
app Application ID.
previous_transaction The transaction to reset.
mode The transaction mode.

Returns
A MultiRpc object.

async_delete

View source

Asynchronous Delete operation.

Args
config A Configuration object or None. Defaults are taken from the connection's default configuration.
keys An iterable of user-level key objects.
extra_hook Optional function to be called once the RPC has completed.

Returns
A MultiRpc object.

async_get

View source

Asynchronous Get operation.

Args
config A Configuration object or None. Defaults are taken from the connection's default configuration.
keys An iterable of user-level key objects.
extra_hook Optional function to be called on the result once the RPC has completed.

Returns
A MultiRpc object.

async_get_indexes

View source

Asynchronous get indexes operation.

Args
config A Configuration object or None. Defaults are taken from the connection's default configuration.
extra_hook Optional function to be called once the RPC has completed.

Returns
A MultiRpc object.

async_put

View source

Asynchronous Put operation.

Args
config: A Configuration object or None. Defaults are taken from the connection's default configuration. entities: An iterable of user-level entity objects. extra_hook: Optional function to be called on the result once the RPC has completed.
Returns A MultiRpc object.

NOTE: If any of the entities has an incomplete key, this will not patch up those entities with the complete key.

begin_transaction

View source

Synchronous BeginTransaction operation.

NOTE: In most cases the new_transaction() method is preferred, since that returns a TransactionalConnection object which will begin the transaction lazily.

Args
app Application ID.
previous_transaction The transaction to reset.
mode The transaction mode.

Returns
An object representing a transaction or None.

check_rpc_success

View source

Check for RPC success and translate exceptions.

This wraps rpc.check_success() and should be called instead of that.

This also removes the RPC from the list of pending RPCs, once it has completed.

Args
rpc A UserRPC or MultiRpc object.

Raises
Nothing if the call succeeded; various datastore_errors.Error subclasses if ApplicationError was raised by rpc.check_success().

create_rpc

View source

Create an RPC object using the configuration parameters.

Internal only.

Args
config Optional Configuration object.
service_name Optional datastore service name.

Returns
A new UserRPC object with the designated settings.

NOTES:

(1) The RPC object returned can only be used to make a single call (for details see apiproxy_stub_map.UserRPC).

(2) To make a call, use one of the specific methods on the Connection object, such as conn.put(entities). This sends the call to the server but does not wait. To wait for the call to finish and get the result, call rpc.get_result().

delete

View source

Synchronous Delete operation.

Args
keys An iterable of user-level key objects.

Returns
None.

get

View source

Synchronous Get operation.

Args
keys An iterable of user-level key objects.

Returns
A list of user-level entity objects and None values, corresponding 1:1 to the argument keys. A None means there is no entity for the corresponding key.

get_datastore_type

View source

Tries to get the datastore type for the given app.

This function is only guaranteed to return something other than UNKNOWN_DATASTORE when running in production and querying the current app.

get_indexes

View source

Synchronous get indexes operation.

Returns
user-level indexes representation

get_pending_rpcs

View source

Return (a copy of) the list of currently pending RPCs.

is_pending

View source

Check whether an RPC object is currently pending.

Note that 'pending' in this context refers to an RPC associated with this connection for which _remove_pending() hasn't been called yet; normally this is called by check_rpc_success() which itself is called by the various result hooks. A pending RPC may be in the RUNNING or FINISHING state.

If the argument is a MultiRpc object, this returns true if at least one of its wrapped RPCs is pending.

make_rpc_call

View source

Make an RPC call.

Internal only.

Except for the added config argument, this is a thin wrapper around UserRPC.make_call().

Args
config A Configuration object or None. Defaults are taken from the connection's default configuration.
method The method name.
request The request protocol buffer.
response The response protocol buffer.
get_result_hook Optional get-result hook function. If not None, this must be a function with exactly one argument, the RPC object (self). Its return value is returned from get_result().
user_data Optional additional arbitrary data for the get-result hook function. This can be accessed as rpc.user_data. The type of this value is up to the service module.

Returns
The UserRPC object used for the call.

new_transaction

View source

Create a new transactional connection based on this one.

This is different from, and usually preferred over, the begin_transaction() method; new_transaction() returns a new TransactionalConnection object.

Args
config A configuration object for the new connection, merged with this connection's config.
previous_transaction The transaction being reset.
mode The transaction mode.

put

View source

Synchronous Put operation.

Args
entities An iterable of user-level entity objects.

Returns
A list of user-level key objects, corresponding 1:1 to the argument entities.

NOTE: If any of the entities has an incomplete key, this will not patch up those entities with the complete key.

wait_for_all_pending_rpcs

View source

Wait for all currently pending RPCs to complete.

DEFAULT_MAX_ENTITY_GROUPS_PER_RPC 10
HIGH_REPLICATION_DATASTORE 2
MAX_ALLOCATE_IDS_KEYS 500
MAX_DELETE_KEYS 500
MAX_GET_KEYS 1000
MAX_PUT_ENTITIES 500
MAX_RPC_BYTES 1048576
UNKNOWN_DATASTORE 0