Skip to content

EntryInfo

Bases: BaseModel

Entry of bucket

Source code in reduct/bucket.py
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
class EntryInfo(BaseModel):
    """Entry of bucket"""

    name: str
    """name of entry"""

    size: int
    """size of stored data in bytes"""

    block_count: int
    """number of blocks"""

    record_count: int
    """number of records"""
    oldest_record: int

    """UNIX timestamp of the oldest record in microseconds"""

    latest_record: int
    """UNIX timestamp of the latest record in microseconds"""

block_count: int instance-attribute

number of blocks

latest_record: int instance-attribute

UNIX timestamp of the latest record in microseconds

name: str instance-attribute

name of entry

oldest_record: int instance-attribute

UNIX timestamp of the oldest record in microseconds

record_count: int instance-attribute

number of records

size: int instance-attribute

size of stored data in bytes