La entidad que estoy consultando tiene un HashKey
& a RangeKey
(Número). Cuando uso batchGetItem
en él, me sale el siguiente error:Error en la API batchGetItem en Java
AWS Error Code: ValidationException, AWS Error Message: One or more parameter values were invalid: Mismatching attribute types between location and schema
esquema:
Table: Daily
Hash Key: CustId (String)
Range Key: Dated (Number)
datos:
CustId : VisioNerdy
Dated : 1329071400000
Código:
List<Key> fkeys = new ArrayList<Key>(); //tableName="Daily", keys=["VisioNerdy"], ranges=[1329071400000] Map<String, KeysAndAttributes> requestItems = new HashMap<String, KeysAndAttributes>(); for(int i = 0; i < keys.size(); i++) { String key = keys.get(i); if(ranges == null) fkeys.add(new Key().withHashKeyElement(new AttributeValue().withS(key))); else fkeys.add(new Key().withHashKeyElement(new AttributeValue().withS(key)) .withRangeKeyElement(new AttributeValue().withS(ranges.get(i).toString()))); } requestItems.put(tableName, new KeysAndAttributes().withKeys(fkeys)); BatchGetItemRequest batchGetItemRequest = new BatchGetItemRequest().withRequestItems(requestItems); BatchGetItemResult result = client.batchGetItem(batchGetItemRequest);
Alguna pista?
Podría, por favor añadir su esquema (finalmente condensada) y el fragmento de código que se ejecuta la consulta para aliviar ¿análisis? ¡Gracias! –
Han editado la pregunta para incluirlos. ¡Gracias! –
Tiene "if (ranges == null)", pero si una tabla tiene una clave de rango, se requiere un valor; no puedes omitirlo –