[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-07-28 Thread git
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 #883: Fixes #842 Support multiple ways for running Fluo applications

2017-07-28 Thread git
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] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-02 Thread git
/FluoConfiguration.java ## @@ -47,59 +48,140 @@ // Client properties private static final String CLIENT_PREFIX = FLUO_PREFIX + ".client"; + @Deprecated Review comment: Fixed This is an automated message from the

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-02 Thread git
ETRY_TIMEOUT_MS_DEFAULT = -1; - // Administration + // Connection properties + public static final String CONNECTION_PREFIX = FLUO_PREFIX + ".connection"; Review comment: It has to be public due to reference in `FluoAdminImpl` so I added since tag

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
is prop somewhere. Not sure if it should be here, maybe in the fluo-app.props file? -------- 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 #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
and `fluo.hdfs.root`. 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 #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
ystemClassLoader(); Review comment: It might be better to get the classloader from the current class. ---- 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.

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
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 #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
not documented here. 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 I

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
y test for diff combos of these configs? Combos of accumulo jars, init dir, observers jars, etc ---- 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

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
x, configurable via an impl property. 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 #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
n about containers of Fluo application" - echo " scan Prints snapshot of data in Fluo application" - echo " classpath Prints the classpath setup in fluo-env.sh" - echo " wait Waits until all notifications are processed" - echo " vers

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
0 replaced by ...` 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,

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
myself wondering, why isn't this documentation in the app docs? 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

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
in a per app dfs dir. 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 #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
)); - } + config = FluoAdminImpl.mergeZookeeperConfig(config); Review comment: could curator be passed here? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
OP, CLIENT_ACCUMULO_USER_PROP); Review comment: It seems like this prop is no longer required for a client. Maybe only check for old accumulo props if `CLIENT_APPLICATION_NAME_PROP ` is present? -------- This is an automated messag

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
LIENT_RETRY_TIMEOUT_MS_DEFAULT = -1; - // Administration + // Connection properties + public static final String CONNECTION_PREFIX = FLUO_PREFIX + ".connection"; Review comment: Can this be private? If its public it should have a since tag.

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
getObserverInitDir() { Review comment: Would it be better to use `Url` instead of `Dir` here? Just thinking about consistency with other method names. This is an automated message from the Apache Git Service. To respond

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
factor code to avoid creating multiple connections to ZK. 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 querie

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
static final String HDFS_PREFIX = FLUO_PREFIX + ".hdfs"; + public static final String HDFS_ROOT_PROP = HDFS_PREFIX + ".root"; Review comment: since tag -------- 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 #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
$FLUO_HOME/apps/app/conf/fluo.properties` file. This is kinda unfortunate because it means we now have to connect to zookeeper before running the user code. This is an automated message from the Apache Git Service. To respond to the messa

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-01 Thread git
coverage? If not I can try that. 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

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
amp; !key.equals(FluoConfiguration.OBSERVER_PROVIDER) + && !key.equals(FluoConfiguration.OBSERVER_INIT_DIR_PROP) Review comment: Tests were broken without the exclusions This is an automated message from the Apache

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
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] mikewalch opened a new issue #896: Limit connections to Zookeeper

2017-08-03 Thread git
be changed to limit the number of connections to Zookeeper. 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

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
on about containers of Fluo application" - echo " scan Prints snapshot of data in Fluo application" - echo " classpath Prints the classpath setup in fluo-env.sh" - echo " wait Waits until all notifications are processed" - echo " version Prints the version of Fluo" - echo " exec{}"; + echo " init {} Initializes Fluo application using . Run with -h to see additional args." Review comment: Fixed 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] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
ckArgument(connConfig.hasRequiredConnectionProps(), +"missing required connection properties"); +config = FluoAdminImpl.mergeZookeeperConfig(connConfig); Review comment: Created #896 This is an automated message from th

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
FLUO_LOG_ID="${cmd}_$(hostname)_$(date +%s)" + +JAVA_OPTS=("-Dlog4j.configuration=file:${FLUO_LOG4J_CONFIG}" Review comment: Fixed.. changed `JAVA_OPTS` to `SERVICE_OPTS` ---- This is an automated message from the Apach

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
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

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
} + @Deprecated public String getAccumuloClasspath() { return getString(ADMIN_ACCUMULO_CLASSPATH_PROP, ADMIN_ACCUMULO_CLASSPATH_DEFAULT); } + /** + * @since 1.2.0 Review comment: Fixed -------- This is an automated

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
mLocalFile(new Path(jarPath), new Path(hdfsDestDir)); + } catch (IOException e) { +logger.error("Failed to copy file {} to HDFS directory {}", jarPath, hdfsDestDir); Review comment: Fixed -------- This is an automated me

[GitHub] keith-turner opened a new issue #897: Add high level application lifecycle overview to docs

2017-08-03 Thread git
the application specific docs in the install docs to the application docs. 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

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
: I added check to `FluoAdminImpl.initialized()` ---- 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 c

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
rk but can be edited. +# Review comment: Should all of the logging stuff move to this new section? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use

[GitHub] keith-turner commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
ment: With #893 I think storing the accumulo credentials in ZK is a good way to go 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

[GitHub] keith-turner commented on issue #896: Limit connections to Zookeeper

2017-08-03 Thread git
. 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] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
-------- 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] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
getObserverInitDir() { Review comment: The property is set to a directory so I think `Dir` makes more sense. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
ew comment: Fixed 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

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
stored away in HDFS during initialization +#fluo.observer.init.dir=/path/to/observer/jars/ Review comment: Fixed This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub a

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
stored away in HDFS during initialization Review comment: Fixed 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.

[GitHub] mikewalch commented on a change in pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-08-03 Thread git
: Fixed ---- 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] mikewalch opened a new pull request #4: Removed unused dependencies & add travis.yml

2017-08-15 Thread git
mikewalch opened a new pull request #4: Removed unused dependencies & add travis.yml URL: https://github.com/apache/fluo-yarn/pull/4 This is an automated message from the Apache Git Service. To respond to the mes

[GitHub] cjmctague commented on issue #4: Removed unused dependencies & add travis.yml

2017-08-15 Thread git
ache 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

[GitHub] cjmctague commented on issue #4: Removed unused dependencies & add travis.yml

2017-08-15 Thread git
ache 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

[GitHub] mikewalch commented on issue #4: Removed unused dependencies & add travis.yml

2017-08-15 Thread git
fore this work is done. 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 con

[GitHub] ctubbsii closed pull request #905: Add Accumulo API checks to checkstyle rules

2017-08-15 Thread git
ctubbsii closed pull request #905: Add Accumulo API checks to checkstyle rules URL: https://github.com/apache/fluo/pull/905 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] mikewalch opened a new issue #912: Create 'fluo status' command

2017-08-15 Thread git
hers. 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

[GitHub] ctubbsii opened a new pull request #911: Preserve license header comment formatting

2017-08-15 Thread git
they are supposed to, for easier readability. 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

[GitHub] ctubbsii commented on a change in pull request #4: Removed unused dependencies & add travis.yml

2017-08-15 Thread git
any case, I don't think it's necessary to specify one way or the other, because this build probably does not depend on either. This is an automated message from the Apache Git Service. To respond to the message, please log on GitH

[GitHub] ctubbsii closed pull request #911: Preserve license header comment formatting

2017-08-15 Thread git
ctubbsii closed pull request #911: Preserve license header comment formatting URL: https://github.com/apache/fluo/pull/911 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] mikewalch opened a new pull request #910: Fixes #909 Move netty jar to lib/twill

2017-08-15 Thread git
mikewalch opened a new pull request #910: Fixes #909 Move netty jar to lib/twill URL: https://github.com/apache/fluo/pull/910 * Also put log4j & logback jars together This is an automated message from the Apache Git Ser

[GitHub] mikewalch commented on a change in pull request #1: Initial implementation of Apache Fluo YARN launcher

2017-08-15 Thread git
nv.sh" ]; then fi source "$conf/fluo-yarn-env.sh" export CLASSPATH=$LAUNCHER_CLASSPATH +export HADOOP_HOME=$HADOOP_PREFIX Review comment: It's not needed so I removed it This is an automated message from th

[GitHub] mikewalch commented on a change in pull request #1: Initial implementation of Apache Fluo YARN launcher

2017-08-15 Thread git
Review comment: Added 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] mikewalch closed pull request #1: Initial implementation of Apache Fluo YARN launcher

2017-08-15 Thread git
mikewalch closed pull request #1: Initial implementation of Apache Fluo YARN launcher URL: https://github.com/apache/fluo-yarn/pull/1 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] mikewalch commented on a change in pull request #4: Removed unused dependencies & add travis.yml

2017-08-16 Thread git
ment: Ok, I'll remove 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

[GitHub] mikewalch closed pull request #4: Removed unused dependencies & add travis.yml

2017-08-16 Thread git
mikewalch closed pull request #4: Removed unused dependencies & add travis.yml URL: https://github.com/apache/fluo-yarn/pull/4 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] mikewalch closed pull request #910: Fixes #909 Move netty jar to lib/twill

2017-08-16 Thread git
mikewalch closed pull request #910: Fixes #909 Move netty jar to lib/twill URL: https://github.com/apache/fluo/pull/910 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] mikewalch closed issue #909: Move netty jar to lib/twill

2017-08-16 Thread git
mikewalch closed issue #909: Move netty jar to lib/twill URL: https://github.com/apache/fluo/issues/909 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use

[GitHub] mikewalch commented on issue #912: Create 'fluo status' command

2017-08-16 Thread git
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] kpm1985 commented on issue #900: Document properties in FluoConfiguration javadoc

2017-08-13 Thread git
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

[GitHub] mikewalch commented on a change in pull request #1: Initial implementation of Apache Fluo YARN launcher

2017-08-11 Thread git
twill:twill-zookeeper:jar:0.11.0 Review comment: fixed. `fluo-yarn-env.sh` now adds jar to classpath given ZOOKEEPER_HOME 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

[GitHub] mikewalch opened a new issue #3: Check if application is running before starting in YARN

2017-08-14 Thread git
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

[GitHub] keith-turner commented on a change in pull request #1: Initial implementation of Apache Fluo YARN launcher

2017-08-15 Thread git
nv.sh" ]; then fi source "$conf/fluo-yarn-env.sh" export CLASSPATH=$LAUNCHER_CLASSPATH +export HADOOP_HOME=$HADOOP_PREFIX Review comment: why set this? This is an automated message from the Apache Git

[GitHub] keith-turner commented on a change in pull request #1: Initial implementation of Apache Fluo YARN launcher

2017-08-15 Thread git
Review comment: could add a comment 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

[GitHub] keith-turner commented on a change in pull request #1: Provide initial README

2017-08-10 Thread git
val is not mentioned, so the new parameter will mesh well with the current javadoc. 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 comm

[GitHub] keith-turner commented on a change in pull request #1: Provide initial README

2017-08-10 Thread git
: `No runtime dependencies to use the library` this seems a bit off. To use this library a runtime dep on this library will be needed. This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] keith-turner commented on a change in pull request #904: Fixes #897 added context to application docs and moved some docs from?

2017-08-09 Thread git
. 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

[GitHub] keith-turner commented on a change in pull request #904: Fixes #897 added context to application docs and moved some docs from?

2017-08-09 Thread git
of? 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

[GitHub] ctubbsii commented on a change in pull request #905: Add Accumulo API checks to checkstyle rules

2017-08-09 Thread git
`[.]`, because I think that construction is more clear (escapes are hard to reason about). 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

[GitHub] keith-turner commented on a change in pull request #902: fixes #894 merge SimpleConfiguration Objects

2017-08-09 Thread git
lowing : ```java sc1 = ... sc2 = ... sc3 = sc1.orElse(sc2) //set something on sc1 and sc2 // verify that sc3 did not change ``` This is an automated message from the Apache Git Service. To respond to the m

[GitHub] mikewalch commented on a change in pull request #904: Fixes #897 added context to application docs and moved some docs from?

2017-08-09 Thread git
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] mikewalch commented on a change in pull request #904: Fixes #897 added context to application docs and moved some docs from?

2017-08-09 Thread git
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] mikewalch commented on a change in pull request #904: Fixes #897 added context to application docs and moved some docs from?

2017-08-09 Thread git
. This text could be incorporated into architecture.md to improve 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

[GitHub] ctubbsii commented on a change in pull request #1: Provide initial README

2017-08-09 Thread git
--- 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 a change in pull request #1: Provide initial README

2017-08-09 Thread git
correctly when I saw this comment in my email, but I pushed a change which basically applies the same fix, based on your feedback above the blockquote section. This is an automated message from the Apache Git Service. To respond

[GitHub] ctubbsii commented on a change in pull request #1: Provide initial README

2017-08-09 Thread git
in Java, by providing convenient objects to +represent a string of bytes and associated utility classes for situations when Review comment: Fixed. This is an automated message from the Apache Git Service. To respond to the message

[GitHub] ctubbsii commented on a change in pull request #1: Provide initial README

2017-08-09 Thread git
on this subject. :) 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] keith-turner commented on a change in pull request #1: Initial implementation of Apache Fluo YARN launcher

2017-08-10 Thread git
be specified but doesn't need to be named '/fluo-yarn'. Review comment: Is the chroot dir limited to depth 1? If so that would be useful to mention. This is an automated message from the Apache Git Service. To respond

[GitHub] ctubbsii closed pull request #1: Provide initial README

2017-08-10 Thread git
ctubbsii closed pull request #1: Provide initial README URL: https://github.com/apache/fluo-bytes/pull/1 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use

[GitHub] keith-turner commented on a change in pull request #1: Provide initial README

2017-08-10 Thread git
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] mikewalch closed pull request #907: Fixes #906 - Create 'fluo get-jars' command

2017-08-11 Thread git
mikewalch closed pull request #907: Fixes #906 - Create 'fluo get-jars' command URL: https://github.com/apache/fluo/pull/907 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] mikewalch closed issue #906: Create 'fluo get-jars' command

2017-08-11 Thread git
mikewalch closed issue #906: Create 'fluo get-jars' command URL: https://github.com/apache/fluo/issues/906 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use

[GitHub] keith-turner opened a new issue #80: Improve Fluo's front page and short description.

2017-08-11 Thread git
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

[GitHub] keith-turner opened a new issue #908: Discuss get jars behavior

2017-08-11 Thread git
. 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

[GitHub] keith-turner closed pull request #899: fixes #893 added ability to secure zookeeper

2017-08-14 Thread git
keith-turner closed pull request #899: fixes #893 added ability to secure zookeeper URL: https://github.com/apache/fluo/pull/899 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] keith-turner closed issue #893: Support locking down properties in zookeeper

2017-08-14 Thread git
keith-turner closed issue #893: Support locking down properties in zookeeper URL: https://github.com/apache/fluo/issues/893 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] keith-turner commented on issue #900: Document properties in FluoConfiguration javadoc

2017-08-14 Thread git
. 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 closed pull request #902: fixes #894 merge SimpleConfiguration Objects

2017-08-14 Thread git
keith-turner closed pull request #902: fixes #894 merge SimpleConfiguration Objects URL: https://github.com/apache/fluo/pull/902 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] mikewalch opened a new issue #914: Allow configuration to be passed to 'fluo oracle' & 'fluo worker' commands

2017-08-16 Thread git
fluo-conn.properties`: ``` fluo oracle -p key1=value1,key2=value2 fluo oracle myapp -p fluo.connection.zookepers=localhost/fluo,fluo.connection.zookeeper.secret=mysecret ``` This is an automated message from the Apache

[GitHub] ctubbsii commented on a change in pull request #1: Provide initial README

2017-08-10 Thread git
he developers"... but that's basically *always the case*. -------- 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 Infrastr

[GitHub] keith-turner commented on a change in pull request #1: Provide initial README

2017-08-10 Thread git
wording was `bytes library`. 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] keith-turner commented on a change in pull request #70: Website updates for incubator graduation

2017-07-17 Thread git
apache.org/ 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 a change in pull request #137: Fix #135 Remove deprecation warnings

2017-07-17 Thread git
on it. Hoping to have a working plugin by the end of the day. 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

[GitHub] mikewalch opened a new pull request #883: Fixes #842 Support multiple ways for running Fluo applications

2017-07-17 Thread git
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 opened a new pull request #71: re apache/fluo#881 improved documentation about issues

2017-07-17 Thread git
keith-turner opened a new pull request #71: re apache/fluo#881 improved documentation about issues URL: https://github.com/apache/incubator-fluo-website/pull/71 This is an automated message from the Apache Git Service

[GitHub] keith-turner commented on issue #881: Fluo website does not have obvious link to issue tracker

2017-07-17 Thread git
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 closed pull request #71: re apache/fluo#881 improved documentation about issues

2017-07-17 Thread git
keith-turner closed pull request #71: re apache/fluo#881 improved documentation about issues URL: https://github.com/apache/incubator-fluo-website/pull/71 This is an automated message from the Apache Git Service

[GitHub] cjmctague commented on issue #856: Failed test: BytesTest.testCopyToWithUnicode

2017-07-11 Thread git
expected:<c[??]e> but was:<c[?? ]e> at org.apache.fluo.api.data.BytesTest.testCopyToWithUnicode(BytesTest.java:343) ``` Broke another test with the fix in 3302fd6 This is an automated message fro

  1   2   3   4   5   >