eaugene opened a new issue, #10816: URL: https://github.com/apache/pinot/issues/10816
The Creation Time Millis value received for a realtime segment from `/segments/<table_name>/metadata` API is not aligning with the value received from`/segments/<table_name>/<segmant_name>/metadata` API . I assume they denote the time when the segment started consuming . Value received for a segment from `/segments/<table_name>/metadata` : ``` { "segmentName": "segment_name", "schemaName": null, "crc": 1641778138, **"creationTimeMillis": 1685394183377,** "creationTimeReadable": "2023-05-29T21:03:03:377 UTC", "timeColumn": "timestamp", "timeUnit": "SECONDS", "timeGranularitySec": 1, "startTimeMillis": 1685307699000, "startTimeReadable": "2023-05-28T21:01:39.000Z", "endTimeMillis": 1685394146000, "endTimeReadable": "2023-05-29T21:02:26.000Z", "segmentVersion": "v3", "creatorName": null, "totalDocs": 1946111, "custom": {}, "startOffset": "1498385432", "endOffset": "1500331543", "columns": [], "indexes": {}, "star-tree-index": null }, ``` Value received the same segment from `/segments/<table_name>/metadata` : ``` { "segment.realtime.endOffset": "1500331543", "segment.start.time": "1685307699000", "segment.time.unit": "MILLISECONDS", "segment.flush.threshold.size": "2500000", "segment.realtime.startOffset": "1498385432", "segment.end.time": "1685394146000", "segment.total.docs": "1946111", "segment.realtime.numReplicas": "2", **"segment.creation.time": "1685307748436",** "segment.index.version": "v3", "segment.crc": "1641778138", "segment.realtime.status": "DONE", "segment.download.url": "<deepstore_path>" } ``` -- 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: commits-unsubscr...@pinot.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org