spring-batch-rs 0.3.4

A toolkit for building enterprise-grade batch applications
Documentation
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
---
title: Feature Flags Reference
description: Complete guide to Spring Batch RS feature flags and optional dependencies
sidebar:
  order: 1
---

import { Card, CardGrid, Aside } from '@astrojs/starlight/components';

Spring Batch RS uses feature flags to enable optional functionality. This keeps the core library lean while allowing you to opt into specific capabilities.

## Core Features (Always Available)

These features are always included and require no feature flags:

<CardGrid>
  <Card title="Core Traits" icon="star">
    ItemReader, ItemWriter, ItemProcessor, Tasklet
  </Card>
  <Card title="Job & Step" icon="puzzle">
    JobBuilder, StepBuilder, execution management
  </Card>
  <Card title="Error Handling" icon="warning">
    BatchError, fault tolerance, skip/retry logic
  </Card>
  <Card title="Logger Writer" icon="pencil">
    LoggerWriter for debugging output
  </Card>
</CardGrid>

---

## File Format Features

### CSV

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["csv"] }
```

**Provides:**
- `CsvItemReader<R>` - Read CSV files and strings
- `CsvItemWriter<O, W>` - Write CSV files

**Use for:**
- Comma/tab/custom-delimited files
- Headers or headerless CSV
- Data import/export pipelines

**Dependencies:**
- `csv` crate

---

### JSON

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["json"] }
```

**Provides:**
- `JsonItemReader<I, R>` - Streaming JSON array reader
- `JsonItemWriter<O, W>` - JSON array writer with pretty-printing

**Use for:**
- REST API data processing
- Configuration file manipulation
- JSON data transformation

**Dependencies:**
- `serde_json` crate

---

### XML

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["xml"] }
```

**Provides:**
- `XmlItemReader<R, I>` - Extract elements by tag name
- `XmlItemWriter<O, W>` - Generate XML documents

**Use for:**
- SOAP/XML API integration
- RSS/Atom feed processing
- Legacy XML data migration

**Dependencies:**
- `quick-xml` crate
- `serde-xml-rs` crate

---

## Database Features

### PostgreSQL

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["rdbc-postgres"] }
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "postgres"] }
```

**Provides:**
- `PostgresRdbcItemReader<I>` - Paginated PostgreSQL queries
- `PostgresItemWriter<O>` - Bulk PostgreSQL inserts

**Use for:**
- Reading from PostgreSQL tables
- ETL from PostgreSQL to other systems
- Bulk data loading

**Dependencies:**
- `sqlx` with PostgreSQL support
- `tokio` async runtime

---

### MySQL

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["rdbc-mysql"] }
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "mysql"] }
```

**Provides:**
- `MysqlRdbcItemReader<I>` - Paginated MySQL queries
- `MysqlItemWriter<O>` - Bulk MySQL inserts

**Use for:**
- MySQL/MariaDB data extraction
- Database migrations
- Reporting queries

**Dependencies:**
- `sqlx` with MySQL support
- `tokio` async runtime

---

### SQLite

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["rdbc-sqlite"] }
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "sqlite"] }
```

**Provides:**
- `SqliteRdbcItemReader<I>` - Paginated SQLite queries
- `SqliteItemWriter<O>` - Bulk SQLite inserts

**Use for:**
- Embedded database processing
- Local data stores
- Testing and development

**Dependencies:**
- `sqlx` with SQLite support
- `tokio` async runtime

---

## NoSQL Features

### MongoDB

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["mongodb"] }
mongodb = "2.8"
```

**Provides:**
- `MongodbItemReader<I>` - Cursor-based MongoDB queries
- `MongodbItemWriter<O>` - Bulk MongoDB inserts

**Use for:**
- Document database processing
- MongoDB data migration
- Collection transformations

**Dependencies:**
- `mongodb` official driver
- Requires `WithObjectId` trait implementation

---

## ORM Feature

### SeaORM

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["orm"] }
sea-orm = { version = "0.12", features = ["sqlx-postgres", "runtime-tokio-native-tls"] }
```

**Provides:**
- `OrmItemReader<I>` - Read using SeaORM entities
- `OrmItemWriter<O>` - Write using SeaORM entities

**Use for:**
- Type-safe database access
- Working with existing SeaORM models
- Complex query building

**Dependencies:**
- `sea-orm` with appropriate database backend

---

## Tasklet Features

### ZIP Compression

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["zip"] }
```

**Provides:**
- `ZipTasklet` - Compress files and directories

**Capabilities:**
- Configurable compression levels (0-9)
- File filtering with glob patterns
- Directory structure preservation
- Single file or directory compression

**Use for:**
- Backup operations
- Log file archival
- Report packaging

**Dependencies:**
- `zip` crate

---

### FTP Transfers

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["ftp"] }
```

**Provides:**
- `FtpTasklet` - Upload/download via FTP/FTPS

**Capabilities:**
- FTP and FTPS (TLS) support
- Upload and download operations
- Authentication support
- Connection management

**Use for:**
- File distribution
- Remote backup
- Legacy system integration

**Dependencies:**
- `ftp` crate

---

### Amazon S3 Transfers

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["s3"] }
```

**Provides:**
- `S3PutTasklet` - Upload a local file to an S3 object
- `S3GetTasklet` - Download an S3 object to a local file

**Capabilities:**
- Single-file and multipart uploads (auto-selected by file size, default threshold 8 MiB)
- Streaming downloads (safe for large files — no full-file buffering)
- Explicit credentials or AWS default credential chain
- Custom endpoint URL for S3-compatible services (MinIO, LocalStack)
- Configurable AWS region

**Use for:**
- Cloud file ingestion / export
- ETL pipelines with S3 staging
- Backup and archival to object storage

**Dependencies:**
- `aws-sdk-s3` crate
- `aws-config` crate
- `tokio` async runtime

---

## Testing Feature

### Fake Data Generation

```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["fake"] }
```

**Provides:**
- `PersonReader` - Generate fake person data
- `Person` struct with realistic test data

**Use for:**
- Testing batch jobs
- Development without real data
- Performance testing

**Dependencies:**
- `fake` crate

---

## Feature Combinations

### Common Combinations

<Card title="File Processing">
  ```toml
  features = ["csv", "json", "xml"]
  ```
  Process all common file formats
</Card>

<Card title="Database ETL">
  ```toml
  features = ["rdbc-postgres", "rdbc-mysql", "csv", "json"]
  ```
  Database to file exports and imports
</Card>

<Card title="Complete Pipeline">
  ```toml
  features = ["csv", "json", "rdbc-postgres", "zip", "ftp"]
  ```
  End-to-end data pipeline with delivery
</Card>

<Card title="NoSQL Processing">
  ```toml
  features = ["mongodb", "json", "csv"]
  ```
  MongoDB data transformation
</Card>

---

## Dependency Impact

### Compile Time

| Feature Combination | Additional Compile Time |
|---------------------|------------------------|
| Core only | Baseline |
| + csv, json, xml | +10-15 seconds |
| + Single database | +30-45 seconds (sqlx) |
| + All databases | +45-60 seconds |
| + mongodb | +20-30 seconds |
| + All features | +60-90 seconds |

### Binary Size

| Feature Combination | Approximate Size (Release) |
|---------------------|---------------------------|
| Core only | ~1 MB |
| + File formats | ~2 MB |
| + Single database | ~4-5 MB |
| + All databases | ~7-9 MB |
| + All features | ~10-12 MB |

<Aside type="tip">
  Enable only the features you need to minimize compile times and binary size.
</Aside>

---

## Advanced Configuration

### Feature-Gated Code

Use conditional compilation for feature-specific code:

```rust
#[cfg(feature = "csv")]
use spring_batch_rs::item::csv::CsvItemReaderBuilder;

#[cfg(feature = "rdbc-postgres")]
use spring_batch_rs::item::rdbc::postgres::PostgresItemWriterBuilder;

fn create_reader() -> Box<dyn ItemReader<MyType>> {
    #[cfg(feature = "csv")]
    {
        Box::new(CsvItemReaderBuilder::new().from_path("data.csv").unwrap())
    }

    #[cfg(not(feature = "csv"))]
    {
        panic!("CSV feature not enabled")
    }
}
```

### Runtime Feature Detection

Check available features at runtime:

```rust
fn check_features() {
    println!("CSV support: {}", cfg!(feature = "csv"));
    println!("JSON support: {}", cfg!(feature = "json"));
    println!("PostgreSQL support: {}", cfg!(feature = "rdbc-postgres"));
}
```

---

## Migration Guide

### Upgrading from Minimal to Full Features

**Before:**
```toml
[dependencies]
spring-batch-rs = "0.1"
```

**After:**
```toml
[dependencies]
spring-batch-rs = { version = "0.1", features = ["csv", "json", "rdbc-postgres"] }
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "postgres"] }
```

### Removing Unused Features

If your project grows and you want to optimize:

1. Audit your imports and identify which readers/writers you use
2. Map them to feature flags using the tables above
3. Remove unused features from `Cargo.toml`
4. Run `cargo clean` and rebuild

---

## Feature Request Guidelines

Can't find a feature you need? We welcome contributions!

<Aside type="note">
**Contribution Areas:**

- Additional database backends (Oracle, MSSQL, etc.)
- Cloud storage (Azure Blob, GCS)
- Message queues (Kafka, RabbitMQ, Redis)
- Additional file formats (Parquet, Avro, Protobuf)
- Network protocols (SFTP, SCP, HTTP/S)
</Aside>

## See Also

- [Getting Started](/spring-batch-rs/getting-started/) - Basic setup
- [Examples](/spring-batch-rs/examples/) - Feature-specific examples
- [API Reference](/spring-batch-rs/api/) - Complete API documentation