Re: minor compaction same as flush

2022-04-14 Thread Brian Loss
Just a small correction re: > Major compactions combine all files into a single file. Minor compactions > select a subset of files can combines them into a file. Minor compactions are when in-memory data is written to files. Major compactions are when files are combined. Major compactions can

Re: Hadoop ConnectException

2021-07-07 Thread Brian Loss
Based on the jps output below, it would appear that no NameNode process is running (only SecondaryNameNode). That would mean the name node process exited for some reason. Check its logs and see if there is any useful error message there. > On Jul 7, 2021, at 11:45 AM, wrote: > > Did you

Re: [External] Running Apache Accumulo on Amazon EMR

2021-04-21 Thread Brian Loss
If you don’t have to use EMR specifically and can use EC2, then Muchos (https://github.com/apache/fluo-muchos) might help you. > On Apr 21, 2021, at 3:27 PM, Roberts, Geoffry [USA] > wrote: > > Thanks Christopher, > > I was looking for an easy way to spin up an Accumulo instance(s), oh well.

Re: best practice for deploying server side iterator jars

2014-02-20 Thread Brian Loss
Starting with Accumulo 1.5 there is a VFS class loader that is capable of loading jars from HDFS. If you have a look at the accumulo-site.xml in conf/examples/vfs-classloader, there is example configuration in the VFS ClassLoader Settings” section. If you’re on 1.4 or earlier, I don’t believe