I tried exploring the code and what I found was,
The HBaseData from mappingStrategy is not having column name, column family
details in HRow
CellMappingStrategy mappingStrategy =
endpoint.getCellMappingStrategyFactory().getStrategy(exchange.getIn());
HBaseData data = mappingStrategy.resolveModel
Hi Mark
There was a problem with camel-avro included in ServiceMix 5.1.2
(https://issues.apache.org/jira/browse/CAMEL-7655). The same problem
probably was for camel-hbase as it uses avro too. ServiceMix 5.1.4
includes the Camel version which fixes this problem. You should use the
new version.
But
Hi Mark,
did you try servicemix 5.14 to check if with camel 2.13.3
the problem is resolved ?
Regards
--Filippo
2014-11-18 15:09 GMT+01:00 Mark Webb :
> Sorry for the cross-post, I'm not sure if this is a ServiceMix or Camel
> problem.
>
> I am working on some data routes that will push data to H
Checkout the unit test, if you want:
https://git-wip-us.apache.org/repos/asf?p=camel.git;a=commit;h=5e97f9238fc292cc6fde3d75d8b98d4b26b7e66d
Best,
Christian
-
Software Integration Specialist
Apache Member
V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer
Apach
The "issue" in your route is:
setHeader("CamelHBaseQualifier", simple("id", String.class))
try:
setHeader("CamelHBaseQualifier", constant("id", String.class))
because:
simple("id", String.class) is evaluated to the input message id as
described at [1].
[1] http://camel.apache.org/simple.html
Be
I can confirm this issue. I have raised a JIRA [1] and work on a fix.
[1] https://issues.apache.org/jira/browse/CAMEL-7547
Best,
Christian
-
Software Integration Specialist
Apache Member
V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer
Apache Incubator PMC Me
Ok, I found the answer to my question.
For people that might be asking the same, if there are multiple results, the
header of the output message will contain all of them in its header with
number suffixes (like CamelHBaseValue, CamelHBaseValue2,
CamelHBaseValue3...).
--
View this message in con