metadata_store
Attributes¶
Classes¶
MetadataArchive
¶
Bases: BaseArchive[ARCHIVE_CONFIG_CLS]
, Generic[ARCHIVE_CONFIG_CLS]
Base class for data archiv implementationss.
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
Functions¶
supported_item_types() -> Iterable[str]
classmethod
¶
This archive type only supports storing data.
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
28 29 30 31 32 |
|
find_metadata_item_with_hash(item_hash: str, key: Union[str, None] = None) -> Union[Tuple[str, Mapping[str, Any]], None]
¶
Return the key of the metadata item with the specified hash.
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
48 49 50 51 52 53 |
|
find_matching_metadata_items(matcher: MetadataMatcher, metadata_item_result_fields: Union[Iterable[str], None] = None, reference_item_result_fields: Union[Iterable[str], None] = None) -> Generator[Tuple[Any, ...], None, None]
¶
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
61 62 63 64 65 66 67 68 69 70 71 |
|
retrieve_metadata_item(metadata_item_key: str, reference_type: Union[str, None] = None, reference_key: Union[str, None] = None, reference_id: Union[str, None] = None) -> Union[Tuple[str, Mapping[str, Any]], None]
¶
Return the model type and model data for the specified metadata item.
If more than one item matches, an exception is raised.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
metadata_item_key
|
str
|
The key of the metadata item to retrieve. |
required |
reference_type
|
Union[str, None]
|
The type of the referenced item. |
None
|
reference_key
|
Union[str, None]
|
The key of the referenced item. |
None
|
reference_id
|
Union[str, None]
|
The id of the referenced item. |
None
|
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|
MetadataStore
¶
Bases: MetadataArchive
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
|
Functions¶
store_metadata_item(key: str, item: KiaraMetadata, reference_item_type: Union[str, None] = None, reference_item_key: Union[str, None] = None, reference_item_id: Union[str, None] = None, replace_existing_references: bool = False, allow_multiple_references: bool = False, store: Union[str, uuid.UUID, None] = None) -> uuid.UUID
¶
Store a metadata item into the store.
If reference_item_type
and reference_item_id
are set, the stored metadata item will
be linked to the stored metadata item, to enable lokoups later on.
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
|
store_metadata_and_ref_items(items: Generator[Tuple[Any, ...], None, None])
¶
Source code in src/kiara/registries/metadata/metadata_store/__init__.py
250 251 252 253 |
|