# Lambda for archiving small files in exploration flow
Does archiving of files smaller than 500mb(with optional drop of some lines from file header/footer)
## Lambda Output
In case of successful lambda execution the following output will be provided:
```json
{
    "meta": {
        "status": "OK",
        "chunks_count": 1

    }
}
```

If any kind of exception occurred, the response will look like the following:
```json
{
    "meta": {
        "status": "FAILURE",
        "message": <exception message>
    }
}
```

