hadoop AuditSpan 源码
haddop AuditSpan 代码
文件路径:/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/store/audit/AuditSpan.java
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.fs.store.audit;
import java.io.Closeable;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
/**
* This is a span created by an {@link AuditSpanSource}.
* An implementation of a span may carry context which can be picked
* up by the filesystem when activated.
* Each FS can have one active span per thread.
* Different filesystem instances SHALL have different active
* spans (if they support them)
* A span is activated in a thread when {@link #activate()}
* is called.
* The span stays active in that thread until {@link #deactivate()}
* is called.
* When deactivated in one thread, it MAY still be active in others.
* There's no explicit "end of span"; this is too hard to manage in
* terms of API lifecycle.
* Similarly, there's no stack of spans. Once a span is activated,
* the previous span is forgotten about.
* Therefore each FS will need a fallback "inactive span" which
* will be reverted to on deactivation of any other span.
*/
@InterfaceAudience.Private
@InterfaceStability.Unstable
public interface AuditSpan extends Closeable {
/**
* Return a span ID which must be unique for all spans within
* everywhere. That effectively means part of the
* span SHOULD be derived from a UUID.
* Callers MUST NOT make any assumptions about the actual
* contents or structure of this string other than the
* uniqueness.
* @return a non-empty string
*/
String getSpanId();
/**
* Get the name of the operation.
* @return the operation name.
*/
String getOperationName();
/**
* Timestamp in UTC of span creation.
* @return timestamp.
*/
long getTimestamp();
/**
* Make this span active in the current thread.
* @return the activated span.
* This is makes it easy to use in try with resources
*/
AuditSpan activate();
/**
* Deactivate the span in the current thread.
*/
void deactivate();
/**
* Close calls {@link #deactivate()}; subclasses may override
* but the audit manager's wrapping span will always relay to
* {@link #deactivate()} rather
* than call this method on the wrapped span.
*/
default void close() {
deactivate();
}
/**
* Is the span valid? False == this is a span to indicate unbonded.
* @return true if this span represents a real operation.
*/
default boolean isValidSpan() {
return true;
}
/**
* Set an attribute.
* This may or may not be propagated to audit logs.
* @param key attribute name
* @param value value
*/
default void set(String key, String value) { }
}
相关信息
相关文章
hadoop ActiveThreadSpanSource 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦