summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/SessionId.java
blob: b4b844961f687f8ffaa0711645ad6b2d1cba39f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query;

import com.yahoo.container.Server;
import java.util.concurrent.atomic.AtomicLong;

/**
 * A query id which is unique across this cluster - consisting of
 * container runtime id + timestamp + serial.
 *
 * @author bratseth
 */
public class SessionId {

    private static final String serverId = Server.get().getServerDiscriminator();
    private static final AtomicLong sequenceCounter = new AtomicLong();

    private final String id;

    private SessionId(String serverId, long timestamp, long sequence) {
        this.id = serverId + "." + timestamp + "." + sequence;
    }

    public String toString() { return id; }

    /**
     * Creates a session id which is unique across the cluster this runtime is a member of each time this is called.
     * Calling this causes synchronization.
     */
    public static SessionId next() {
        return new SessionId(serverId, System.currentTimeMillis(), sequenceCounter.getAndIncrement());
    }

}