Skip to content
Snippets Groups Projects

Added Logs to Debug Partition Latency Issue

Merged Aayushi Jain requested to merge latencyDebug into azure/m12-master
4 unresolved threads

Added Logs to Debug Partition Latency Issue

Merge request reports

Merge request pipeline #140994 failed

Pipeline: Partition

#140995

    Merge request pipeline failed for e13c773e

    Deployed to G‎CP‎ 2 years ago
    Deployed to I‎BM‎ 2 years ago
    Skipped deployment to A‎WS‎
    Approval is optional

    Merged by Aayushi JainAayushi Jain 2 years ago (Oct 12, 2022 7:25am UTC)

    Merge details

    • Changes merged into with accfbcf0.
    • Deleted the source branch.

    Activity

    Filter activity
    • Approvals
    • Assignees & reviewers
    • Comments (from bots)
    • Comments (from users)
    • Commits & branches
    • Edits
    • Labels
    • Lock status
    • Mentions
    • Merge request status
    • Tracking
  • Komal Makkar
  • Komal Makkar
  • 114 118 @SuppressWarnings("unchecked")
    115 119 private List<PartitionEntity> getAllByPartitionId(String partitionId) {
    116 120 List<PartitionEntity> out = new ArrayList<>();
    121 long startTime = System.currentTimeMillis();
    117 122 Iterable<PartitionEntity> results = (Iterable<PartitionEntity>)
    118 123 this.cloudTableStore.queryByKey(PartitionEntity.class,
    119 124 PARTITION_KEY, partitionId);
    125 log.info(String.format("Complete Cloud Store Query Method Time: %d", System.currentTimeMillis() - startTime));
  • 86 88
    87 89 @Override
    88 90 public PartitionInfo getPartition(String partitionId) {
    91 long startTime = System.currentTimeMillis();
  • Aayushi Jain added 1 commit

    added 1 commit

    Compare with previous version

  • Aayushi Jain added 1 commit

    added 1 commit

    • a4c5210d - Fixed stopwatch stop position

    Compare with previous version

  • Aayushi Jain added 1 commit

    added 1 commit

    Compare with previous version

  • Nikhil Singh[MicroSoft] approved this merge request

    approved this merge request

  • Aayushi Jain mentioned in commit accfbcf0

    mentioned in commit accfbcf0

  • merged

  • Please register or sign in to reply
    Loading