[GitHub] keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public 
API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145549177
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/shard/BulkInsert.java
 ##
 @@ -172,7 +171,7 @@ private void sort(State state, RandWalkEnv env, FileSystem 
fs, String tableName,
 
 Collection splits = conn.tableOperations().listSplits(tableName, 
maxSplits);
 for (Text split : splits)
-  
out.println(Base64.getEncoder().encodeToString(TextUtil.getBytes(split)));
+  out.println(Base64.getEncoder().encodeToString(split.getBytes()));
 
 Review comment:
   Text has a copyBytes() method.  Would probably be best to use that here.  I 
think TextUtil method only copies if needed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[jira] [Assigned] (ACCUMULO-4721) Document rfile-info in the user manual

2017-10-18 Thread Mark Owens (JIRA)

 [ 
https://issues.apache.org/jira/browse/ACCUMULO-4721?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark Owens reassigned ACCUMULO-4721:


Assignee: Mark Owens

> Document rfile-info in the user manual
> --
>
> Key: ACCUMULO-4721
> URL: https://issues.apache.org/jira/browse/ACCUMULO-4721
> Project: Accumulo
>  Issue Type: Bug
>Affects Versions: 1.7.3, 1.8.1
>Reporter: Michael Wall
>Assignee: Mark Owens
>Priority: Trivial
> Fix For: 1.7.4, 1.8.2, 2.0.0
>
>
> Currently the 'old school' PrintInfo is documented at 
> http://accumulo.apache.org/1.8/accumulo_user_manual.html#_tools
> We should document the 'rfile-info' info which is easier to remember than 
> org.apache.accumulo.core.file.rfile.PrintInfo



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[GitHub] ctubbsii commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
ctubbsii commented on a change in pull request #7: ACCUMULO-4717 Use public API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145547456
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/shard/BulkInsert.java
 ##
 @@ -172,7 +171,7 @@ private void sort(State state, RandWalkEnv env, FileSystem 
fs, String tableName,
 
 Collection splits = conn.tableOperations().listSplits(tableName, 
maxSplits);
 for (Text split : splits)
-  
out.println(Base64.getEncoder().encodeToString(TextUtil.getBytes(split)));
+  out.println(Base64.getEncoder().encodeToString(split.getBytes()));
 
 Review comment:
   Well, ideally, Text will not be part of the API, eventually. It might make 
sense to move a few helpful utils into the public API in the interim.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] milleruntime commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
milleruntime commented on a change in pull request #7: ACCUMULO-4717 Use public 
API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145515816
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/concurrent/Config.java
 ##
 @@ -190,10 +186,8 @@ private void changeTableSetting(RandomDataGenerator 
random, State state, RandWal
 try {
   env.getAccumuloConnector().tableOperations().setProperty(table, 
setting.property.getKey(), "" + newValue);
 } catch (AccumuloException ex) {
-  if (ex.getCause() instanceof ThriftTableOperationException) {
 
 Review comment:
   Assuming this is the correct spot, I followed what the setProperty() method 
in TableOperationsImpl was doing... 
https://github.com/apache/accumulo/blob/master/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java#L897


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] milleruntime commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
milleruntime commented on a change in pull request #7: ACCUMULO-4717 Use public 
API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145514988
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/shard/BulkInsert.java
 ##
 @@ -172,7 +171,7 @@ private void sort(State state, RandWalkEnv env, FileSystem 
fs, String tableName,
 
 Collection splits = conn.tableOperations().listSplits(tableName, 
maxSplits);
 for (Text split : splits)
-  
out.println(Base64.getEncoder().encodeToString(TextUtil.getBytes(split)));
+  out.println(Base64.getEncoder().encodeToString(split.getBytes()));
 
 Review comment:
   This case and a few others made me wonder why code from util is not part of 
the API?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] milleruntime commented on issue #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
milleruntime commented on issue #7: ACCUMULO-4717 Use public API
URL: https://github.com/apache/accumulo-testing/pull/7#issuecomment-337699040
 
 
   Sorry I rebase'd a fix I found while running randomwalk Security.xml.  


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] milleruntime commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
milleruntime commented on a change in pull request #7: ACCUMULO-4717 Use public 
API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145514385
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/image/ImageFixture.java
 ##
 @@ -64,15 +63,15 @@ public void setUp(State state, RandWalkEnv env) throws 
Exception {
 try {
   conn.tableOperations().create(imageTableName);
   conn.tableOperations().addSplits(imageTableName, splits);
-  log.debug("Created table " + imageTableName + " (id:" + 
Tables.getNameToIdMap(instance).get(imageTableName) + ")");
 
 Review comment:
   Yeah there is, I can use it.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public 
API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145509955
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/shard/BulkInsert.java
 ##
 @@ -172,7 +171,7 @@ private void sort(State state, RandWalkEnv env, FileSystem 
fs, String tableName,
 
 Collection splits = conn.tableOperations().listSplits(tableName, 
maxSplits);
 for (Text split : splits)
-  
out.println(Base64.getEncoder().encodeToString(TextUtil.getBytes(split)));
+  out.println(Base64.getEncoder().encodeToString(split.getBytes()));
 
 Review comment:
   Be careful here.  Text has length.  The getBytes() method may return the 
internal byte array, which may be longer than the length.  I think this is the 
reason that TextUtil.getBytes() exists.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public 
API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145510831
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/concurrent/Config.java
 ##
 @@ -190,10 +186,8 @@ private void changeTableSetting(RandomDataGenerator 
random, State state, RandWal
 try {
   env.getAccumuloConnector().tableOperations().setProperty(table, 
setting.property.getKey(), "" + newValue);
 } catch (AccumuloException ex) {
-  if (ex.getCause() instanceof ThriftTableOperationException) {
 
 Review comment:
   How did you find what exception to replace the cause with?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
keith-turner commented on a change in pull request #7: ACCUMULO-4717 Use public 
API
URL: https://github.com/apache/accumulo-testing/pull/7#discussion_r145510442
 
 

 ##
 File path: 
core/src/main/java/org/apache/accumulo/testing/core/randomwalk/image/ImageFixture.java
 ##
 @@ -64,15 +63,15 @@ public void setUp(State state, RandWalkEnv env) throws 
Exception {
 try {
   conn.tableOperations().create(imageTableName);
   conn.tableOperations().addSplits(imageTableName, splits);
-  log.debug("Created table " + imageTableName + " (id:" + 
Tables.getNameToIdMap(instance).get(imageTableName) + ")");
 
 Review comment:
   I think there are public apis to get the table id


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] milleruntime opened a new pull request #7: ACCUMULO-4717 Use public API

2017-10-18 Thread GitBox
milleruntime opened a new pull request #7: ACCUMULO-4717 Use public API
URL: https://github.com/apache/accumulo-testing/pull/7
 
 
   * Replace security operations with API
   * Utilize newer RFile API
   * Replace core.client.impl code
   * Replace CachedConfiguration with Hadoop Configuration


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ctubbsii commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
ctubbsii commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337648760
 
 
   @asfbot went crazy and started replying to its own replies to the 
notification list, in an endless loop. Infra took a look and I think the 
problem is resolved now. I've tried to delete the spammy comments from @asfbot 
; Hopefully the comment thread is cleaner now. I'll try to clean up the JIRA 
worklog later, because that got spammed, too. Can't do anything about the 
notifications list, though.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607509
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607494


  GitBox  on notifications@accumulo.apache.org replies:
  PircDef commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607485
   
   
 If we can, we want to grab compressed data before it is written to 
disk. This way we insert controls on the file size without speculating about 
the results of compression.
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607705
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607687


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607678
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607662
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607640
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607630


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607615
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607602
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   PircDef commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485


  If we can, we want to grab compressed 
data before it is written to disk. This way we insert controls on the file size 
without speculating about the results of compression.
   

 
  
   

 
  
   

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact 

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607602
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607583


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607574
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607564
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494


  GitBox  on notifications@accumulo.apache.org 
replies:
  PircDef commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485
   
   
 If we can, we want to grab compressed data 
before it is written to disk. This way we insert controls on the file size 
without speculating about the results of compression.
  
   

 
  
   

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607662
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607652


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607640
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607630
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 PircDef commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485
  

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608015
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608006


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607993
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607978
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607875
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607863
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607852


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607837
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607820
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607993
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607978


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607966
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607949
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607875


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607863
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607852
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607837
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607820


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607798
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607784
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608006
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607993


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607978
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607966
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607875
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607863
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607852
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607837


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607820
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607798
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607978
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607966


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607949
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607933
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607875
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607863


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607852
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607837
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607820
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607798


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607784
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607767
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608702
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608685


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608666
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608655
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608641
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608627


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608611
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608601
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608588
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608729
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608713


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608702
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608685
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608666
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608655


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608641
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608627
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608611
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608601


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608588
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608641
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608627


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608611
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608601
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608588
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608655
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608641


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608627
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608611
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608601
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608588


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608713
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608702


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608685
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608666
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608655
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608641


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608627
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608611
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608601
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608588


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608627
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608611


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608601
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608588
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608666
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608655


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608641
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608627
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608611
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608601


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608588
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608685
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608666


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608655
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608641
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608627
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608611


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608601
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608588
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608573
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608611
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608601


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608588
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608573
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608560
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608553


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608560
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608553


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608539
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608528
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608588
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608573


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608560
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608553
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608539
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608553
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608539


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608528
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608513
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608573
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608560


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608553
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608539
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608528
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608513


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608507
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608539
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608528


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608513
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608507
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608496
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608513
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608507


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608496
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608481
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608528
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608513


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608507
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608496
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608481
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608472


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608265
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608249


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608231
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608210
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608361
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608349


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608335
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608318
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608397
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608378


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608361
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608349
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608461
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608448


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608436
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608420
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608507
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608496


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608481
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608472
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608461
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608481
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608472


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608461
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608448
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608210
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608202


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608189
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608169
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608335
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608318


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608306
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608293
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608231
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608210


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608202
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608189
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608412
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608397


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608378
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608361
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608496
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608481


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608472
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608461
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608448
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608436


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608472
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608461


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608448
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608436
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608420
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608412


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608293
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608277


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608265
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608249
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608378
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608361


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608349
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608335
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608349
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608335


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608318
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608306
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608277
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608265


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608249
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608231
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608448
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608436


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608420
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608412
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608397
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608420
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608412


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608397
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608378
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608306
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608293


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608277
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608265
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608436
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608420


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608412
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608397
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608378
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608361


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608349
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608335
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608318
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608306


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608293
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608277
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608318
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608306


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608293
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608277
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608265
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608249


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608231
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608210
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608202
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607820
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607798


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607784
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607767
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607759
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607896
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607887


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607875
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607863
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607852
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607837


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607820
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607798
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607784
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607767


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607759
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608073
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608064


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608050
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608039
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608249
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608231


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608210
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608202
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608189
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608169


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608159
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608148
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607863
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607852


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607837
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607820
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607798
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607784


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607767
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607759
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607887
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607875


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607863
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607852
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607837
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607820


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607798
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607784
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607767
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607759


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608039
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608027


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608015
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608006
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607875


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607863
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607852
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608115
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608104


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608095
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608086
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608169
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608159


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608148
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608143
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608189
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608169


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608159
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608148
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608143
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608136


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608086
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608073


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608064
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608050
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608136
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608123


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608115
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608104
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607852
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607837


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607820
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607798
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607784
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607767


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607759
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608159
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608148


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608143
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608136
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608123
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608148
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608143


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608136
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608123
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608115
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607767
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607759


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607749
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607738
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608064
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608050


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608039
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608027
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607875
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608027
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608015


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608006
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607993
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607896
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607887
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607875
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607863


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607852
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607837
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608104
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608095


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608086
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608073
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607875
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607863


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607852
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607837
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607820
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607798


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607784
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607767
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607759
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607784
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607767


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607759
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607749
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608143
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608136


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608123
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608115
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608104
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608095


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608123
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608115


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608104
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608095
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608086
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608073


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608064
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608095
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608086


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608073
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337608064
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608050
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608039


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608027
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608015
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337608006
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607993


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607978
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607966
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607949
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607933


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607920
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607910
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607798
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607784


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607767
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607759
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607837
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607820


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607798
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607784
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607767
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607759


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607749
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607738
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607730
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607721
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607712


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607705
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607687
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607749
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607738


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607730
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607721
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607759
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607749


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607738
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607730
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607721
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607712


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607738
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607730


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607721
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607712
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607705
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607687
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607678


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607662
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607652
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607730
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607721


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607712
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607705
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607687
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607678


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607678
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607662


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607652
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607640
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607712
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607705


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607687
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607678
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607662
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607652


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607640
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607630
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607615
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553


  GitBox  on 
notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
   
   
 GitBox  on 
notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607542
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607528


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607524
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607509
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   PircDef commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485


  If we can, we want to grab compressed data before it is 
written to disk. This way we insert controls on the file size without 
speculating about the results of compression.
   

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607574
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607564


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607553
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607542
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
  
  
GitBox  on notifications@accumulo.apache.org replies:
PircDef commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485
 
 
   If we can, we want to grab compressed data before it 
is written to disk. This way we insert controls on the file size without 
speculating about the results of compression.

 
  
   

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607652
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607640


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607630
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607615
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607602
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607583


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
 
 
   GitBox  on 
notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494


  GitBox  on 
notifications@accumulo.apache.org replies:
  PircDef commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485
   
   
 If we can, we want to grab 
compressed data before it is written to disk. This way we insert controls on 
the file size without speculating about the results of compression.
  
   

   

[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607494
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   PircDef commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607485


  If we can, we want to grab compressed data before it is written to disk. 
This way we insert controls on the file size without speculating about the 
results of compression.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607583
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607574


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607564
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607553
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   PircDef commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485


  If we can, we want to grab compressed data before 
it is written to disk. This way we insert controls on the file size without 
speculating about the results of compression.
   

 
  
   

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607615
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607602


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607583
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607574
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 PircDef commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485
  
  
If we can, we want to grab compressed data 
before it is written to disk. This way we insert controls on the file size 
without speculating about the results of compression.
 
  
   

 
  
   

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607528
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607524


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607509
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607494
  
  
GitBox  on notifications@accumulo.apache.org replies:
PircDef commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485
 
 
   If we can, we want to grab compressed data before it is written 
to disk. This way we insert controls on the file size without speculating about 
the results of compression.

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB

2017-10-18 Thread GitBox
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607630
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 2GB
   URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607615


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size to 
2GB
  URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607602
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block size 
to 2GB
 URL: https://github.com/apache/accumulo/pull/300#issuecomment-337607583
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607574
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit RFile block 
size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607564


  GitBox  on notifications@accumulo.apache.org replies:
  asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607553
   
   
 GitBox  on notifications@accumulo.apache.org replies:
 asfbot commented on issue #300: ACCUMULO-4708 Limit RFile 
block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607542
  
  
GitBox  on notifications@accumulo.apache.org replies:
asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607528
 
 
   GitBox  on notifications@accumulo.apache.org replies:
   asfbot commented on issue #300: ACCUMULO-4708 Limit 
RFile block size to 2GB
   URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607524


  GitBox  on notifications@accumulo.apache.org 
replies:
  asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
  URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607509
   
   
 GitBox  on notifications@accumulo.apache.org 
replies:
 asfbot commented on issue #300: ACCUMULO-4708 
Limit RFile block size to 2GB
 URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607494
  
  
GitBox  on 
notifications@accumulo.apache.org replies:
PircDef commented on issue #300: 
ACCUMULO-4708 Limit RFile block size to 2GB
URL: 
https://github.com/apache/accumulo/pull/300#issuecomment-337607485
 
 
   If we can, we want to grab compressed 
data before it is written to disk. This way we insert controls on the file size 
without speculating about the results of compression.

 
  
   

 
  
   

 
  
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


  1   2   3   >