如果我有以下表模式来记录异常(在标准 SQL 模式中):
Table: ExceptionLog
Columns: ID (Long), 
         ExceptionClass (String),      
         ExceptionMessage (String), 
         Host (String), 
         Port (Integer), 
         HttpHeader (String), 
         HttpPostBody (String), 
         HttpMethod (String)
我将如何在 HyperTable 中设计相同的东西(具体来说,提高效率的最佳方法是什么)?而且,我将如何使用 HyperTable Java 客户端对其进行编码?