How to design an exception logging table using HyperTable and access it via the Java client?
Posted
by
ikevinjp
on Stack Overflow
See other posts from Stack Overflow
or by ikevinjp
Published on 2012-09-09T16:58:11Z
Indexed on
2012/09/10
3:38 UTC
Read the original article
Hit count: 199
If I have the following table schema to log an exception (in standard SQL schema):
Table: ExceptionLog
Columns: ID (Long),
ExceptionClass (String),
ExceptionMessage (String),
Host (String),
Port (Integer),
HttpHeader (String),
HttpPostBody (String),
HttpMethod (String)
How would I design the same thing in HyperTable (specifically, what is the best approach for efficiency)? And, how would I code it using the HyperTable Java client?
© Stack Overflow or respective owner