My kafka send the following json
'{
"eventSummaryList": [
{
"customer": 1,
"data": "{\"cliente\":\"52264\",\"data_posicao\":\"1484250682\",\"gps_valido\":\"1\",\"horimetro\":\"0\",\"ibuttonPart1\":\"0\",\"ibuttonPart2\":\"0\",\"id_evento\":\"null\",\"id_motorista\":\"0\",\"ignicao\":\"0\",\"latitude\":\"-25.5385123\",\"longitude\":\"-49.1995068\",\"odometro\":\"0\",\"pos_memoria\":\"0\",\"veiculo\":\"103970\",\"velocidade\":\"0\"}",
"identifierRule": 1770,
"identifierSummary": 17,
"rule": "rota_fora",
"status": 1,
"vehicle": 103970
},
{
"customer": 2,
"data": "{\"cliente\":\"52264\",\"data_posicao\":\"1484250682\",\"gps_valido\":\"1\",\"horimetro\":\"0\",\"ibuttonPart1\":\"0\",\"ibuttonPart2\":\"0\",\"id_evento\":\"null\",\"id_motorista\":\"0\",\"ignicao\":\"0\",\"latitude\":\"-25.5385123\",\"longitude\":\"-49.1995068\",\"odometro\":\"0\",\"pos_memoria\":\"0\",\"veiculo\":\"103970\",\"velocidade\":\"0\"}",
"identifierRule": 8,
"identifierSummary": 7,
"rule": "velocidade_maior",
"status": 1,
"vehicle": 103970
}
]
}'
I created this continuous transfomr
CREATE CONTINUOUS TRANSFORM sensor_event_process_transform AS
SELECT cast ( cast(pack ->>'eventSummaryList' as json)->>'customer' as bigint ) as customer
FROM pipeline_kafka.sensor_event_process_stream
THEN EXECUTE procedure update_sensor_event_process_t();
but my log pipelineDB return this...
CONTEXT: JSON data, line 1: { COPY sensor_event_process_stream, line 1, column pack: "{" LOG: [pipeline_kafka] sensor_event_process_stream <- topicNotificationProcess (PID 25201): failed to process batch, dropped 8 messages ERROR: invalid input syntax for type json DETAIL: The input string ended unexpectedly.
How do I go through the json array and get only the contents of the customer column?
hi dears i solved my problem, i user the function json_array_elements, stayed like this ...
An important detail, do not pass json with spaces and line breaks, the pipeline doesn't accpet.