keith-turner commented on a change in pull request #1527: Added detailed trace logging for FATE #1316 URL: https://github.com/apache/accumulo/pull/1527#discussion_r382108661
########## File path: core/src/main/java/org/apache/accumulo/core/logging/FateLogger.java ########## @@ -0,0 +1,136 @@ +/* + * 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.accumulo.core.logging; + +import static org.apache.accumulo.fate.FateTxId.formatTid; + +import java.io.Serializable; +import java.util.EnumSet; +import java.util.List; +import java.util.function.Function; + +import org.apache.accumulo.fate.ReadOnlyRepo; +import org.apache.accumulo.fate.Repo; +import org.apache.accumulo.fate.StackOverflowException; +import org.apache.accumulo.fate.TStore; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class FateLogger { + private static final String PREFIX = Logging.PREFIX + "fate."; + + // Logs all mutations to FATEs persistent storage. Enabling this logger could help debug + // reproducible problems with FATE transactions. + private static final Logger storeLog = LoggerFactory.getLogger(PREFIX + "store"); + + public static <T> TStore<T> wrap(TStore<T> store, Function<Repo<T>,String> toLogString) { Review comment: I do not like that the code to convert a Repo to a string for logging is not in this class. I would like for a user to look at the source code for this class and see exactly what will be logged. However I could not figure out how to make Gson do what I wanted in this class, I had to move the code to master module. When the code was here Gson kept converting the Repo's to `{}`. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
