Database code for Swift
swift.common.db.
BROKER_TIMEOUT
= 25¶Timeout for trying to connect to a DB
swift.common.db.
DB_PREALLOCATION
= False¶Whether calls will be made to preallocate disk space for database files.
swift.common.db.
DatabaseAlreadyExists
(path)¶Bases: sqlite3.DatabaseError
More friendly error messages for DB Errors.
swift.common.db.
DatabaseBroker
(db_file, timeout=25, logger=None, account=None, container=None, pending_timeout=None, stale_reads_ok=False, skip_commits=False)¶Bases: object
Encapsulates working with a database.
db_file
¶delete_db
(timestamp)¶Mark the DB as deleted
Parameters: | timestamp – internalized delete timestamp |
---|
empty
()¶Check if the broker abstraction contains any undeleted records.
get
(**kwds)¶Use with the “with” statement; returns a database connection.
get_device_path
()¶get_info
()¶get_items_since
(start, count)¶Get a list of objects in the database between start and end.
Parameters: |
|
---|---|
Returns: | list of objects between start and end |
get_max_row
(table=None)¶get_raw_metadata
()¶get_replication_info
()¶Get information about the DB required for replication.
Returns: | dict containing keys from get_info plus max_row and metadata |
---|
get_sync
(id, incoming=True)¶Gets the most recent sync point for a server from the sync table.
Parameters: |
|
---|---|
Returns: | the sync point, or -1 if the id doesn’t exist. |
get_syncs
(incoming=True)¶Get a serialized copy of the sync table.
Parameters: | incoming – if True, get the last incoming sync, otherwise get the last outgoing sync |
---|---|
Returns: | list of {‘remote_id’, ‘sync_point’} |
initialize
(put_timestamp=None, storage_policy_index=None)¶Create the DB
The storage_policy_index is passed through to the subclass’s
_initialize
method. It is ignored by AccountBroker
.
Parameters: |
|
---|
is_deleted
()¶Check if the DB is considered to be deleted.
Returns: | True if the DB is considered to be deleted, False otherwise |
---|
is_reclaimable
(now, reclaim_age)¶Check if the broker abstraction is empty, and has been marked deleted for at least a reclaim age.
lock
(**kwds)¶Use with the “with” statement; locks a database.
make_tuple_for_pickle
(record)¶Turn this db record dict into the format this service uses for pending pickles.
maybe_get
(**kwds)¶merge_items
(item_list, source=None)¶Save :param:item_list to the database.
merge_syncs
(sync_points, incoming=True)¶Merge a list of sync points with the incoming sync table.
Parameters: |
|
---|
merge_timestamps
(created_at, put_timestamp, delete_timestamp)¶Used in replication to handle updating timestamps.
Parameters: |
|
---|
metadata
¶Returns the metadata dict for the database. The metadata dict values are tuples of (value, timestamp) where the timestamp indicates when that key was set to that value.
newid
(remote_id)¶Re-id the database. This should be called after an rsync.
Parameters: | remote_id – the ID of the remote database being rsynced in |
---|
possibly_quarantine
(exc_type, exc_value, exc_traceback)¶Checks the exception info to see if it indicates a quarantine situation (malformed or corrupted database). If not, the original exception will be reraised. If so, the database will be quarantined and a new sqlite3.DatabaseError will be raised indicating the action taken.
put_record
(record)¶Put a record into the DB. If the DB has an associated pending file with space then the record is appended to that file and a commit to the DB is deferred. If the DB is in-memory or its pending file is full then the record will be committed immediately.
Parameters: | record – a record to be added to the DB. |
---|---|
Raises: |
|
quarantine
(reason)¶The database will be quarantined and a sqlite3.DatabaseError will be raised indicating the action taken.
reclaim
(age_timestamp, sync_timestamp)¶Delete reclaimable rows and metadata from the db.
By default this method will delete rows from the db_contains_type table
that are marked deleted and whose created_at timestamp is <
age_timestamp, and deletes rows from incoming_sync and outgoing_sync
where the updated_at timestamp is < sync_timestamp. In addition, this
calls the _reclaim_metadata()
method.
Subclasses may reclaim other items by overriding _reclaim()
.
Parameters: |
|
---|
update_metadata
(metadata_updates, validate_metadata=False)¶Updates the metadata dict for the database. The metadata dict values
are tuples of (value, timestamp) where the timestamp indicates when
that key was set to that value. Key/values will only be overwritten if
the timestamp is newer. To delete a key, set its value to (‘’,
timestamp). These empty keys will eventually be removed by
reclaim()
update_put_timestamp
(timestamp)¶Update the put_timestamp. Only modifies it if it is greater than the current timestamp.
Parameters: | timestamp – internalized put timestamp |
---|
update_status_changed_at
(timestamp)¶Update the status_changed_at field in the stat table. Only modifies status_changed_at if the timestamp is greater than the current status_changed_at timestamp.
Parameters: | timestamp – internalized timestamp |
---|
updated_timeout
(**kwds)¶Use with “with” statement; updates timeout
within the block.
validate_metadata
(metadata)¶Validates that metadata falls within acceptable limits.
Parameters: | metadata – to be validated |
---|---|
Raises: | HTTPBadRequest – if MAX_META_COUNT or MAX_META_OVERALL_SIZE is exceeded, or if metadata contains non-UTF-8 data |
swift.common.db.
DatabaseConnectionError
(path, msg, timeout=0)¶Bases: sqlite3.DatabaseError
More friendly error messages for DB Errors.
swift.common.db.
GreenDBConnection
(database, timeout=None, *args, **kwargs)¶Bases: sqlite3.Connection
SQLite DB Connection handler that plays well with eventlet.
commit
()¶Commit the current transaction.
cursor
(cls=None)¶Return a cursor for the connection.
swift.common.db.
GreenDBCursor
(*args, **kwargs)¶Bases: sqlite3.Cursor
SQLite Cursor handler that plays well with eventlet.
execute
(*args, **kwargs)¶Executes a SQL statement.
swift.common.db.
PICKLE_PROTOCOL
= 2¶Pickle protocol to use
swift.common.db.
chexor
(old, name, timestamp)¶Each entry in the account and container databases is XORed by the 128-bit hash on insert or delete. This serves as a rolling, order-independent hash of the contents. (check + XOR)
Parameters: |
|
---|---|
Returns: | a hex representation of the new hash value |
swift.common.db.
dict_factory
(crs, row)¶This should only be used when you need a real dict, i.e. when you’re going to serialize the results.
swift.common.db.
get_db_connection
(path, timeout=30, okay_to_create=False)¶Returns a properly configured SQLite database connection.
Parameters: |
|
---|---|
Returns: | DB connection object |
swift.common.db.
native_str_keys
(metadata)¶swift.common.db.
utf8encode
(*args)¶swift.common.db.
zero_like
(count)¶We’ve cargo culted our consumers to be tolerant of various expressions of zero in our databases for backwards compatibility with less disciplined producers.
swift.common.db_replicator.
ReplConnection
(node, partition, hash_, logger)¶Bases: swift.common.bufferedhttp.BufferedHTTPConnection
Helper to simplify REPLICATEing to a remote server.
replicate
(*args)¶Make an HTTP REPLICATE request
Parameters: | args – list of json-encodable objects |
---|---|
Returns: | bufferedhttp response object |
swift.common.db_replicator.
Replicator
(conf, logger=None)¶Bases: swift.common.daemon.Daemon
Implements the logic for directing db replication.
cleanup_post_replicate
(broker, orig_info, responses)¶Cleanup non primary database from disk if needed.
Parameters: |
|
---|---|
Return success: | returns False if deletion of the database was attempted but unsuccessful, otherwise returns True. |
delete_db
(broker)¶extract_device
(object_file)¶Extract the device name from an object path. Returns “UNKNOWN” if the path could not be extracted successfully for some reason.
Parameters: | object_file – the path to a database file. |
---|
report_up_to_date
(full_info)¶roundrobin_datadirs
(dirs)¶run_forever
(*args, **kwargs)¶Replicate dbs under the given root in an infinite loop.
run_once
(*args, **kwargs)¶Run a replication pass once.
swift.common.db_replicator.
ReplicatorRpc
(root, datadir, broker_class, mount_check=True, logger=None)¶Bases: object
Handle Replication RPC calls. TODO(redbo): document please :)
complete_rsync
(drive, db_file, args)¶debug_timing
(**kwds)¶dispatch
(replicate_args, args)¶merge_items
(broker, args)¶merge_syncs
(broker, args)¶rsync_then_merge
(drive, db_file, args)¶sync
(broker, args)¶swift.common.db_replicator.
looks_like_partition
(dir_name)¶True if the directory name is a valid partition number, False otherwise.
swift.common.db_replicator.
quarantine_db
(object_file, server_type)¶In the case that a corrupt file is found, move it to a quarantined area to allow replication to fix it.
Parameters: |
|
---|
swift.common.db_replicator.
roundrobin_datadirs
(datadirs)¶Generator to walk the data dirs in a round robin manner, evenly hitting each device on the system, and yielding any .db files found (in their proper places). The partitions within each data dir are walked randomly, however.
Parameters: | datadirs – a list of tuples of (path, context, partition_filter) to walk. The context may be any object; the context is not used by this function but is included with each yielded tuple. |
---|---|
Returns: | A generator of (partition, path_to_db_file, context) |
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.