Log Management
The GaussDB JDBC driver uses log records to help solve problems when the GaussDB JDBC driver is used in applications. GaussDB JDBC supports the following log management methods:
- Use the SLF4J log framework for interconnecting with applications.
- Use the JdkLogger log framework for interconnecting with applications.
SLF4J and JdkLogger are mainstream frameworks for Java application log management in the industry. For details about how to use these frameworks, see the official documents (SLF4J: http://www.slf4j.org/manual.html; JdkLogger: https://docs.oracle.com/javase/8/docs/technotes/guides/logging/overview.html).
Method 1: Use the SLF4J log framework for interconnecting with applications.
When a connection is set up, logger=Slf4JLogger is configured in the URL.
The SLF4J may be implemented by using Log4j or Log4j2. When the Log4j is used to implement the SLF4J, the following JAR packages need to be added: log4j-*.jar, slf4j-api-*.jar, and slf4j-log4*-*.jar (* varies according to versions), and configuration file log4j.properties. In addition, the code for reading the configuration file must be added to the main program. If the Log4j2 is used to implement the SLF4J, you need to add the following JAR packages: log4j-api-*.jar, log4j-core-*.jar, log4j-slf4j18-impl-*.jar, and slf4j-api-*-alpha1.jar (* varies according to versions), and configuration file log4j2.xml.
This method supports log management and control. The SLF4J can implement powerful log management and control functions through related configurations in files. This method is recommended.
Example:
// Note: The location of the log4j.propertie or log4j2.xml file must be specified during calling. // Specify the location of log4j.propertie. //PropertyConfigurator.configure("log4j.properties"); // Specify log4j2.xml. //ConfigurationSource source = new ConfigurationSource(new FileInputStream("log4j2.xml")); //Configurator.initialize(null, source); public static Connection GetConnection(String username, String passwd){ String sourceURL = "jdbc:gaussdb://$ip:$port/database?logger=Slf4JLogger"; Connection conn = null; try{ // Create a connection. conn = DriverManager.getConnection(sourceURL,username,passwd); System.out.println("Connection succeed!"); }catch (Exception e){ e.printStackTrace(); return null; } return conn; }
The following is an example of the log4j.properties file:
log4j.logger.com.huawei.gaussdb.jdbc=ALL, log_gsjdbc # Default file output configuration log4j.appender.log_gsjdbc=org.apache.log4j.RollingFileAppender log4j.appender.log_gsjdbc.Append=true log4j.appender.log_gsjdbc.File=gsjdbc.log log4j.appender.log_gsjdbc.Threshold=TRACE log4j.appender.log_gsjdbc.MaxFileSize=10MB log4j.appender.log_gsjdbc.MaxBackupIndex=5 log4j.appender.log_gsjdbc.layout=org.apache.log4j.PatternLayout log4j.appender.log_gsjdbc.layout.ConversionPattern=%d %p %t %c - %m%n log4j.appender.log_gsjdbc.File.Encoding = UTF-8
The following is an example of the log4j2.xml file:
<?xml version="1.0" encoding="UTF-8"?> <configuration status="OFF"> <appenders> <Console name="Console" target="SYSTEM_OUT"> <PatternLayout pattern="%d %p %t %c - %m%n"/> </Console> <File name="FileTest" fileName="test.log"> <PatternLayout pattern="%d %p %t %c - %m%n"/> </File> <!-- JDBC driver log file output configuration. Log rewinding is supported. When the log size exceeds 10 MB, a new file is created. The new file is named in the format of yyyy-mm-dd-file ID. --> <RollingFile name="RollingFileJdbc" fileName="gsjdbc.log" filePattern="%d{yyyy-MM-dd}-%i.log"> <PatternLayout pattern="%d %p %t %c - %m%n"/> <Policies> <SizeBasedTriggeringPolicy size="10 MB"/> </Policies> </RollingFile> </appenders> <loggers> <root level="all"> <appender-ref ref="Console"/> <appender-ref ref="FileTest"/> </root> <!-- JDBC driver logs. The log level is all. All logs can be viewed and exported to the gsjdbc.log file. --> <logger name="com.huawei.gaussdb.jdbc.Driver" level="all" additivity="false"> <appender-ref ref="RollingFileJdbc"/> </logger> </loggers> </configuration>
Method 2: Use the JdkLogger log framework for interconnecting with applications.
The default Java logging framework stores its configurations in a file named logging.properties. Java installs the global configuration file in the folder in the Java installation directory. The logging.properties file can also be created and stored with a single project.
Configuration example of logging.properties:
# Specify the processing program as a file. handlers= java.util.logging.FileHandler # Specify the default global log level. .level= ALL # Specify the log output control standard. java.util.logging.FileHandler.level=ALL java.util.logging.FileHandler.pattern = gsjdbc.log java.util.logging.FileHandler.limit = 500000 java.util.logging.FileHandler.count = 30 java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter java.util.logging.FileHandler.append=false
System.setProperty("java.util.logging.FileHandler.pattern","jdbc.log"); FileHandler fileHandler = new FileHandler(System.getProperty("java.util.logging.FileHandler.pattern")); Formatter formatter = new SimpleFormatter(); fileHandler.setFormatter(formatter); Logger logger = Logger.getLogger("com.huawei.gaussdb.jdbc"); logger.addHandler(fileHandler); logger.setLevel(Level.ALL); logger.setUseParentHandlers(false);
Link trace function
The GaussDB JDBC driver provides the application-to-database link trace function to associate discrete SQL statements on the database side with application requests. This function requires application developers to implement the com.huawei.gaussdb.jdbc.log.Tracer API class and specify the permission name of the API implementation class in the URL.
String URL = "jdbc:gaussdb://$ip:$port/database?traceInterfaceClass=xxx.xxx.xxx.OpenGaussTraceImpl";
The com.huawei.gaussdb.jdbc.log.Tracer API class is defined as follows:
public interface Tracer { // Retrieves the value of traceId. String getTraceId(); }
import com.huawei.gaussdb.jdbc.log.Tracer; public class OpenGaussTraceImpl implements Tracer { private static MDC mdc = new MDC(); private final String TRACE_ID_KEY = "traceId"; public void set(String traceId) { mdc.put(TRACE_ID_KEY, traceId); } public void reset() { mdc.clear(); } @Override public String getTraceId() { return mdc.get(TRACE_ID_KEY); } }
The following is an example of context mapping which is used to store traceId generated for different requests:
import java.util.HashMap; public class MDC { static final private ThreadLocal<HashMap<String, String>> threadLocal = new ThreadLocal<>(); public void put(String key, String val) { if (key == null || val == null) { throw new IllegalArgumentException("key or val cannot be null"); } else { if (threadLocal.get() == null) { threadLocal.set(new HashMap<>()); } threadLocal.get().put(key, val); } } public String get(String key) { if (key == null) { throw new IllegalArgumentException("key cannot be null"); } else if (threadLocal.get() == null) { return null; } else { return threadLocal.get().get(key); } } public void clear() { if (threadLocal.get() == null) { return; } else { threadLocal.get().clear(); } } }
Take the service traceId as an example. The prerequisite is that the table test_trace_id (id int,name varchar(20)) is created.
String traceId = UUID.randomUUID().toString().replaceAll("-", ""); OpenGaussTraceImpl openGaussTrace = new OpenGaussTraceImpl(); openGaussTrace.set(traceId); Connection con = DriverManager.getConnection(url, user, password); pstm = con.prepareStatement("select * from test_trace_id where id = ?"); pstm.setInt(1, 1); pstm.execute(); pstm = con.prepareStatement("insert into test_trace_id values(?,?)"); pstm.setInt(1, 2); pstm.setString(2, "test"); pstm.execute(); openGaussTrace.reset();
- When the link trace function is used, the link function at the application layer is guaranteed by services.
- The application must expose the API for obtaining traceId to the JDBC and configure the API implementation class to the JDBC connection string.
- SQL statements of the same request must use the same traceId.
- The value of traceId transferred by the application cannot exceed 32 bytes. Otherwise, the extra bytes will be truncated.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot