forked from doppar/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInteractsWithBigDataProcessing.php
More file actions
348 lines (296 loc) · 9.8 KB
/
InteractsWithBigDataProcessing.php
File metadata and controls
348 lines (296 loc) · 9.8 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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<?php
namespace Phaseolies\Database\Entity\Query;
use PDO;
use Generator;
use RuntimeException;
use Phaseolies\Support\Collection;
trait InteractsWithBigDataProcessing
{
/**
* Process records in chunks to reduce memory usage for large datasets.
*
* @param int $chunkSize
* @param callable $processor
* @param int|null $total
* @return void
*/
public function chunk($chunkSize, callable $processor, ?int $total = null): void
{
$offset = 0;
$processed = $chunkSize;
while (true) {
$chunkQuery = clone $this;
$results = $chunkQuery->limit($chunkSize)
->offset($offset)
->get();
if (!count($results)) {
break;
}
$processor($results, $processed, $total);
$processed += $results->count();
$offset += $chunkSize;
// prevent memory leaks
unset($chunkQuery, $results);
}
}
/**
* Process records using a cursor for maximum memory efficiency
*
* @param callable $processor
* @param int|null $total
* @return void
*/
public function cursor(callable $processor, ?int $total = null): void
{
$processed = 1;
$sql = $this->toSql();
try {
$stmt = $this->pdo->prepare($sql);
$this->bindValues($stmt);
$stmt->execute();
$stmt->setFetchMode(PDO::FETCH_ASSOC);
while ($row = $stmt->fetch()) {
$model = new $this->modelClass($row);
$processor($model, $processed, $total);
$processed++;
unset($model, $row);
if (gc_enabled()) {
gc_collect_cycles();
}
}
} catch (\PDOException $e) {
throw new RuntimeException("Database error during cursor operation: " . $e->getMessage());
} finally {
if (isset($stmt) && $stmt instanceof \PDOStatement) {
$stmt->closeCursor();
}
}
}
/**
* Generator-based approach for memory-efficient iteration over large datasets.
*
* @param int $chunkSize
* @param callable|null $transform
* @return Generator
*/
public function stream($chunkSize, ?callable $transform = null): Generator
{
$offset = 0;
while (true) {
$chunkQuery = clone $this;
$results = $chunkQuery->limit($chunkSize)
->offset($offset)
->get();
if (!count($results)) {
break;
}
foreach ($results as $model) {
yield $transform ? $transform($model) : $model;
}
$offset += $chunkSize;
unset($chunkQuery, $results);
if (gc_enabled()) {
gc_collect_cycles();
}
}
}
/**
* Process records with batch operations for efficiency
*
* @param int chunkSize
* @param callable $batchProcessor
* @param int $batchSize
* @return void
*/
public function batch(int $chunkSize, callable $batchProcessor, int $batchSize = 1000): void
{
$batch = [];
$offset = 0;
while (true) {
$chunkQuery = clone $this;
$results = $chunkQuery->limit($chunkSize)
->offset($offset)
->get();
// If no more results, flush any remaining batch and exit
if (!count($results)) {
if (!empty($batch)) {
$batchProcessor(new Collection($this->modelClass, $batch));
}
break;
}
foreach ($results as $model) {
$batch[] = $model;
// If batch limit is reached, process and reset
if (count($batch) >= $batchSize) {
$batchProcessor(new Collection($this->modelClass, $batch));
$batch = [];
}
}
$offset += $chunkSize;
unset($chunkQuery, $results);
if (gc_enabled()) {
gc_collect_cycles();
}
}
}
/**
* Parallel chunk processing using Fibers
*
* @param int $chunkSize
* @param callable $processor
* @param int $concurrency
* @return void
*/
public function fchunk(int $chunkSize, callable $processor, int $concurrency = 4): void
{
$offset = 0;
$fibers = [];
$running = true;
while ($running) {
while (count($fibers) < $concurrency) {
$fiberOffset = $offset;
$fiber = new \Fiber(function () use ($fiberOffset, $chunkSize, $processor) {
$chunkQuery = clone $this;
$results = $chunkQuery->limit($chunkSize)
->offset($fiberOffset)
->get();
if (!count($results)) {
// Signal completion
return false;
}
$processor($results, $fiberOffset + $results->count());
// More data available
return true;
});
$fibers[] = $fiber;
$fiber->start();
$offset += $chunkSize;
}
// Check fiber status
$activeFibers = [];
foreach ($fibers as $fiber) {
if ($fiber->isTerminated()) {
if ($fiber->getReturn() === false) {
$running = false;
break;
}
} else {
$activeFibers[] = $fiber;
}
}
$fibers = $activeFibers;
// Clean up memory
unset($chunkQuery, $results);
if (gc_enabled()) {
gc_collect_cycles();
}
// Exit if no more data
if (!$running) {
$running = false;
}
}
}
/**
* Fiber-based streaming with backpressure control
*
* @param int $chunkSize
* @param callable|null $transform
* @param int $bufferSize
* @return Generator
*/
public function fstream(int $chunkSize, ?callable $transform = null, int $bufferSize = 1000): Generator
{
$offset = 0;
$buffer = [];
$fiber = null;
while (true) {
// Create a new fiber if none exists or previous completed
if (!$fiber || $fiber->isTerminated()) {
$currentOffset = $offset;
$fiber = new \Fiber(function () use ($currentOffset, $chunkSize, $transform) {
$chunkQuery = clone $this;
$results = $chunkQuery->limit($chunkSize)
->offset($currentOffset)
->get();
if (!count($results)) {
return false; // No more data
}
foreach ($results as $model) {
\Fiber::suspend($transform ? $transform($model) : $model);
}
return true; // More data available
});
$fiber->start();
$offset += $chunkSize;
}
// Get next item from fiber
if (!$fiber->isTerminated()) {
$buffer[] = $fiber->resume();
}
// Yield buffered items when buffer is full or fiber completed
if (count($buffer) >= $bufferSize || $fiber->isTerminated()) {
foreach ($buffer as $item) {
yield $item;
}
$buffer = [];
}
// Exit if no more data
if ($fiber->isTerminated() && $fiber->getReturn() === false) {
break;
}
// Clean up memory
unset($chunkQuery, $results);
if (gc_enabled()) {
gc_collect_cycles();
}
}
}
/**
* Hybrid fiber/cursor processing for maximum efficiency
*
* @param callable $processor
* @param int $bufferSize
* @return void
*/
public function fcursor(callable $processor, int $bufferSize = 1000): void
{
$buffer = [];
$sql = $this->toSql();
try {
$stmt = $this->pdo->prepare($sql);
$this->bindValues($stmt);
$stmt->execute();
$stmt->setFetchMode(PDO::FETCH_ASSOC);
$fiber = new \Fiber(function () use ($stmt, &$buffer, $bufferSize) {
while ($row = $stmt->fetch()) {
$model = new $this->modelClass($row);
$buffer[] = $model;
if (count($buffer) >= $bufferSize) {
\Fiber::suspend($buffer);
$buffer = [];
}
unset($model, $row);
}
return $buffer; // Return remaining items
});
$fiber->start();
while (!$fiber->isTerminated()) {
$chunk = $fiber->resume();
foreach ($chunk as $model) {
$processor($model);
}
}
// Process remaining items
$remaining = $fiber->getReturn();
foreach ($remaining as $model) {
$processor($model);
}
} catch (\PDOException $e) {
throw new RuntimeException("Database error during fiber cursor operation: " . $e->getMessage());
} finally {
if (isset($stmt) && $stmt instanceof \PDOStatement) {
$stmt->closeCursor();
}
}
}
}