aws-samples / aws-samples/amazon-aggregation-query-proxy
the AQP filters out duplicated items
Open
good first issue
- Dominant language
- Java
- Stars
- 8
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
the DDB connector ignores duplicated items, for example,
Input:
{"col2": 1, "col0": "0", "col1": "0"}
{"col2": 1, "col0": "0", "col1": "0"}
{"col2": 1, "col0": "0", "col1": "0"}
{"col2": 1, "col0": "0", "col1": "0"}
{"col2": 1, "col0": "0", "col1": "0"}
{"col2": 1, "col0": "0", "col1": "0"}
{"col2": 1, "col0": "0", "col1": "0"}
Output:
"response": [
{
"resultSet": [
{
"cnt": 1
}
]
}
]
Contributor guide
Assessment
This issue has not been assessed yet.