worker24h opened a new pull request #4136:
URL: https://github.com/apache/incubator-doris/pull/4136


   1) FixBug: load a json object is failed in routine load
       for example json-data:  
{"category":"11","title":"SayingsoftheCentury","price":895,"timestamp":1589191587}
   
   2) add `json_root` for nest json data
      for example json-data:
           {
           "RECORDS":[
               
{"category":"11","title":"SayingsoftheCentury","price":895,"timestamp":1589191587},
               
{"category":"22","author":"2avc","price":895,"timestamp":1589191487},
               
{"category":"33","author":"3avc","title":"SayingsoftheCentury","timestamp":1589191387}
               ]
           }
   Routine load:
           CREATE ROUTINE LOAD example_db.test1 ON example_tbl
           COLUMNS(category, author, price, timestamp, 
dt=from_unixtime(timestamp, '%Y%m%d'))
           PROPERTIES
           (
               "desired_concurrent_number"="3",
               "max_batch_interval" = "20",
               "max_batch_rows" = "300000",
               "max_batch_size" = "209715200",
               "strict_mode" = "false",
               "format" = "json",
               "jsonpaths" = 
"[\"$.category\",\"$.author\",\"$.price\",\"$.timestamp\"]",
               "strip_outer_array" = "true",
               "json_root" = "$.RECORDS"
           )
           FROM KAFKA
           (
               "kafka_broker_list" = "broker1:9092,broker2:9092,broker3:9092",
               "kafka_topic" = "my_topic",
               "kafka_partitions" = "0,1,2",
               "kafka_offsets" = "0,0,0"
           );
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to