The table configs get serialized as base64 and placed in the job's Configuration under the key "AccumuloInputFormat.ScanOpts.TableConfigs". Could you verify/print what's being placed in this key in your configuration?
On Sat, Aug 23, 2014 at 12:15 AM, JavaHokie <[email protected]> wrote: > Hey Corey, > > Sure thing! Here is my code: > > Map<String,InputTableConfig> configs = new > HashMap<String,InputTableConfig>(); > > List<Range> ranges = Lists.newArrayList(new > Range("104587"),new > Range("105255")); > > InputTableConfig edgeConfig = new InputTableConfig(); > edgeConfig.setRanges(ranges); > > InputTableConfig followerConfig = new InputTableConfig(); > followerConfig.setRanges(ranges); > > configs.put("following",followerConfig); > configs.put("twitteredges",edgeConfig); > > These are the row values I am using to join entries from the following and > twitteredges tables. > > --John > > > > -- > View this message in context: > http://apache-accumulo.1065345.n5.nabble.com/AccumuloMultiTableInputFormat-IllegalStateException-tp11186p11189.html > Sent from the Users mailing list archive at Nabble.com. >
