xincai98 commented on issue #575:
URL: https://github.com/apache/geaflow/issues/575#issuecomment-3143787433
`try {
String fromKey = getFromKey(key);
if (!update(fromKey, columns, new Object[] {valueArray})) {
LOGGER.info("key: {}, insert fail, try insert", key);
try {
insert(fromKey, columns, new Object[] {valueArray});
} catch (Exception e) {
LOGGER.info("key: {}, insert fail", key);
throw new GeaflowRuntimeException("put fail");
}
}`
This line of log indicates that the update failed, but no subsequent log is
seen, which means that the insert has been successful. This log is normal.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]