Lines Matching refs:thread
10 …thread activity. With this feature, developers will be able to obtain the real-time information ab…
118 …thread running flush job (middle column) and the other thread running a compaction job (right-most…
126 To enable thread-tracking of a rocksdb instance, simply set `enable_thread_tracking` to true in its…
153 the current status of a thread. The `ThreadStatus` structure, defined in
157 // An unique ID for the thread.
160 // The type of the thread, it could be HIGH_PRIORITY,
164 // The name of the DB instance where the thread is currently
165 // involved with. It would be set to empty string if the thread
169 // The name of the column family where the thread is currently
170 // It would be set to empty string if the thread does not involve
174 // The operation (high-level action) that the current thread is involved.
177 // The elapsed time in micros of the current thread operation.
180 // An integer showing the current stage where the thread is involved
189 // The state (lower-level action) that the current thread is involved.
193 If you are interested in the background thread activity of your RocksDB application, please feel fr…