[GitHub] [iotdb-bin-resources] CloudWise-Lukemiao merged pull request #59: sign grafana plugin

2023-07-13 Thread via GitHub


CloudWise-Lukemiao merged PR #59:
URL: https://github.com/apache/iotdb-bin-resources/pull/59


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

To unsubscribe, e-mail: notifications-unsubscr...@iotdb.apache.org

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



[GitHub] [iotdb-bin-resources] CloudWise-Lukemiao opened a new pull request, #59: sign grafana plugin

2023-07-13 Thread via GitHub


CloudWise-Lukemiao opened a new pull request, #59:
URL: https://github.com/apache/iotdb-bin-resources/pull/59

   sign grafana plugin


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

To unsubscribe, e-mail: notifications-unsubscr...@iotdb.apache.org

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



[jira] [Created] (IOTDB-6067) Pipe: connector-v2 keep retrying when connection is lost

2023-07-13 Thread Jira
马子坤 created IOTDB-6067:
--

 Summary: Pipe: connector-v2 keep retrying when connection is lost
 Key: IOTDB-6067
 URL: https://issues.apache.org/jira/browse/IOTDB-6067
 Project: Apache IoTDB
  Issue Type: Bug
  Components: Core/Others
Reporter: 马子坤


Currently, iotdb-thrift-connector-v2 will keep retrying when the connection to 
receiver is lost, and the failure won't be known by PipeAgent.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IOTDB-6066) Add ConfigNode timeSlot metric

2023-07-13 Thread huxiangpeng (Jira)
huxiangpeng created IOTDB-6066:
--

 Summary: Add ConfigNode timeSlot metric
 Key: IOTDB-6066
 URL: https://issues.apache.org/jira/browse/IOTDB-6066
 Project: Apache IoTDB
  Issue Type: Improvement
Reporter: huxiangpeng
Assignee: huxiangpeng






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IOTDB-6065) Considering LastCacheContainer in the memory estimation of SchemaCacheEntry

2023-07-13 Thread yanze chen (Jira)
yanze chen created IOTDB-6065:
-

 Summary: Considering LastCacheContainer in the memory estimation 
of SchemaCacheEntry
 Key: IOTDB-6065
 URL: https://issues.apache.org/jira/browse/IOTDB-6065
 Project: Apache IoTDB
  Issue Type: Improvement
Reporter: yanze chen
Assignee: yanze chen


{code:java}
/**
 * Total basic 100B
 *
 * 
 *   SchemaCacheEntry Object header, 8B
 *   isAligned, 1B
 *   LastCacheContainer reference, 8B
 *   MeasurementSchema
 *   
 * Reference, 8B
 * Object header, 8B
 * String measurementId basic, 8 + 8 + 4 + 8 + 4 = 32B
 * type, encoding, compressor, 3 B
 * encodingConverter, 8 + 8 + 8 = 24B
 * props, 8B
 *   
 * 
 */
public static int estimateSize(SchemaCacheEntry schemaCacheEntry) {
  // each char takes 2B in Java
  return 100 + 2 * 
schemaCacheEntry.getIMeasurementSchema().getMeasurementId().length();
} {code}
The current memory estimate for the SchemaCacheEntry does not include the 
lastCacheContainer's retained size.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)