bgruenefeld commented on issue #2124:
URL: https://github.com/apache/iotdb/issues/2124#issuecomment-735275056


   Hi @SteveYurongSu 
   
   thanks for your work, but the issue is still persist. 
   Unfortunately my description was a bit unclear. 
   I try to store 35.040 DP with each tablet.
   Maybe you ca do a quick by changing the number in the createData method:
   
   `   
   
       def create_data(ts_prefix, amount_timeseries):  
           data = create_timeseries_data(1546300800000, 35040)
         
           for index in range(1, amount_timeseries):        
               device_id = ts_prefix + str(index)
               save_tablet(device_id, data)
   
   `
   
   **query the data for a device i get** 
   
   IoTDB> select count(comsumption) from root.storagegroup.city.device1
   +-------------------------------------------------+
   |count(root.storagegroup.city.device1.comsumption)|
   +-------------------------------------------------+
   |                                          1261440|
   +-------------------------------------------------+
   Total line number = 1
   It costs 0,012s
   IoTDB>
   
   **is there maybe a limit in batch size when storing data by a tablet?**


----------------------------------------------------------------
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


Reply via email to