forked from data-prep-kit/data-prep-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_access.py
More file actions
247 lines (226 loc) · 9.6 KB
/
data_access.py
File metadata and controls
247 lines (226 loc) · 9.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
129
130
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
# (C) Copyright IBM Corp. 2024.
# Licensed under the Apache License, Version 2.0 (the “License”);
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an “AS IS” BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
import random
from typing import Any
import pyarrow as pa
from data_processing.utils import KB, MB, get_logger
logger = get_logger(__name__)
class DataAccess:
"""
Base class for data access (interface), defining all the methods
"""
def get_num_samples(self) -> int:
"""
Get number of samples for input
:return: Number of samples
"""
pass
def get_output_folder(self) -> str:
"""
Get output folder as a string
:return: output_folder
"""
pass
@staticmethod
def get_random_file_set(n_samples: int, files: list[str]) -> list[str]:
"""
Get random set of files
:param n_samples: set size
:param files: list of original files
:return: set of randomly selected files
"""
# Pick files to include
if len(files) > n_samples:
# Pick files at random
files_set = [int(random.random() * len(files)) for _ in range(n_samples)]
else:
# use all existing files
files_set = range(len(files))
result = [""] * len(files_set)
index = 0
for f in files_set:
result[index] = files[f]
index += 1
logger.info(f"Using files {result} to sample data")
return result
def get_files_to_process(self) -> tuple[list[str], dict[str, float], int]:
"""
Get files to process
:return: list of files and a dictionary of the files profile:
"max_file_size_MB",
"min_file_size_MB",
"avg_file_size_MB",
"total_file_size_MB"
and the number of operation retries.
Retries are performed on operation failures and are typically due to the resource overload.
"""
if self.get_output_folder() is None:
logger.warning("Input/Output are not defined, returning empty list")
return [], {}, 0
path_list, path_profile, retries = self.get_files_to_process_internal()
n_samples = self.get_num_samples()
if n_samples > 0:
files = self.get_random_file_set(n_samples=n_samples, files=path_list)
return files, path_profile, retries
return path_list, path_profile, retries
def get_files_to_process_internal(self) -> tuple[list[str], dict[str, float], int]:
"""
Get files to process
:return: list of files and a dictionary of the files profile:
"max_file_size_MB",
"min_file_size_MB",
"avg_file_size_MB",
"total_file_size_MB"
and number of operation retries.
Retries are performed on operation failures and are typically due to the resource overload.
"""
pass
def get_table(self, path: str) -> tuple[pa.table, int]:
"""
Get pyArrow table for a given path
:param path - file path
:return: pyArrow table or None, if the table read failed and number of operation retries.
Retries are performed on operation failures and are typically due to the resource overload.
"""
pass
def get_file(self, path: str) -> tuple[bytes, int]:
"""
Get file as a byte array
:param path: file path
:return: bytes array of file content and number of operation retries
Retries are performed on operation failures and are typically due to the resource overload.
"""
pass
def get_folder_files(
self, path: str, extensions: list[str] = None, return_data: bool = True
) -> tuple[dict[str, bytes], int]:
"""
Get a list of byte content of files. The path here is an absolute path and can be anywhere.
The current limitation for S3 and Lakehouse is that it has to be in the same bucket
:param path: file path
:param extensions: a list of file extensions to include. If None, then all files from this and
child ones will be returned
:param return_data: flag specifying whether the actual content of files is returned (True), or just
directory is returned (False)
:return: A dictionary of file names/binary content will be returned
"""
pass
def save_file(self, path: str, data: bytes) -> tuple[dict[str, Any], int]:
"""
Save byte array to the file
:param path: file path
:param data: byte array
:return: a dictionary as
defined https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/put_object.html
in the case of failure dict is None and number of operation retries
Retries are performed on operation failures and are typically due to the resource overload.
"""
def get_output_location(self, path: str) -> str:
"""
Get output location based on input
:param path: input file location
:return: output file location
"""
return ""
def save_table(self, path: str, table: pa.Table) -> tuple[int, dict[str, Any], int]:
"""
Save table to a given location
:param path: location to save table
:param table: table
:return: size of table in memory and a dictionary as
defined https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/put_object.html
in the case of failure dict is None and number of operation retries.
Retries are performed on operation failures and are typically due to the resource overload.
"""
pass
def save_job_metadata(self, metadata: dict[str, Any]) -> tuple[dict[str, Any], int]:
"""
Save job metadata
:param metadata: a dictionary, containing the following keys
(see https://github.ibm.com/arc/dmf-library/issues/158):
"pipeline",
"job details",
"code",
"job_input_params",
"execution_stats",
"job_output_stats"
two additional elements:
"source"
"target"
are filled bu implementation
:return: a dictionary as
defined https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/put_object.html
in the case of failure dict is None and number of operation retries.
Retries are performed on operation failures and are typically due to the resource overload.
"""
pass
def sample_input_data(self, n_samples: int = 10) -> tuple[dict[str, Any], int]:
"""
Sample input data set to get average table size, average doc size, number of docs, etc.
Note that here we are not reading all of the input documents, but rather randomly pick
their subset. It gives more precise answer as subset grows, but it takes longer
:param n_samples: number of samples to use - default 10
:return: a dictionary of the files profile:
"max_file_size_MB",
"min_file_size_MB",
"avg_file_size_MB",
"total_file_size_MB"
average table size MB,
average doc size KB,
estimated number of docs
and number of operation retries
Retries are performed on operation failures and are typically due to the resource overload.
"""
# get files to process
path_list, path_profile, retries = self.get_files_to_process_internal()
# Pick files to sample
files = self.get_random_file_set(n_samples=n_samples, files=path_list)
# Read table and compute number of docs and sizes
number_of_docs = []
table_sizes = []
n_tables = 0
for f in files:
table, r = self.get_table(path=f)
retries += r
if table is not None:
n_tables += 1
number_of_docs.append(table.num_rows)
# As a table size is mostly document, we can consider them roughly the same
table_sizes.append(table.nbytes)
# compute averages
if n_tables == 0:
av_number_docs = 0
av_table_size = 0
av_doc_size = 0
else:
av_number_docs = sum(number_of_docs) / n_tables
av_table_size = sum(table_sizes) / n_tables / MB
if av_number_docs == 0:
av_doc_size = 0
else:
av_doc_size = av_table_size * MB / av_number_docs / KB
logger.info(
f"average number of docs {av_number_docs}, average table size {av_table_size} MB, "
f"average doc size {av_doc_size} kB"
)
# compute number of docs
number_of_docs = av_number_docs * len(path_list)
logger.info(f"Estimated number of docs {number_of_docs}")
return (
path_profile
| {
"average table size MB": av_table_size,
"average doc size KB": av_doc_size,
"estimated number of docs": number_of_docs,
},
retries,
)