Modified: 
mesos/site/source/documentation/latest/app-framework-development-guide.md
URL: 
http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/app-framework-development-guide.md?rev=1636462&r1=1636461&r2=1636462&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/app-framework-development-guide.md 
(original)
+++ mesos/site/source/documentation/latest/app-framework-development-guide.md 
Mon Nov  3 22:37:09 2014
@@ -194,7 +194,7 @@ Declared in `MESOS_HOME/include/mesos/ex
   virtual void shutdown(ExecutorDriver* driver) = 0;
 
   /**
-   * Invoked when a fatal error has occured with the executor and/or
+   * Invoked when a fatal error has occurred with the executor and/or
    * executor driver. The driver will be aborted BEFORE invoking this
    * callback.
    */
@@ -205,4 +205,4 @@ Declared in `MESOS_HOME/include/mesos/ex
 
 You need to put your framework somewhere that all slaves on the cluster can 
get it from. If you are running HDFS, you can put your executor into HDFS. 
Then, you tell Mesos where it is via the `ExecutorInfo` parameter of 
`MesosSchedulerDriver`'s constructor (e.g. see 
src/examples/java/TestFramework.java for an example of this). ExecutorInfo is a 
a Protocol Buffer Message class (defined in `include/mesos/mesos.proto`), and 
you set its URI field to something like "HDFS://path/to/executor/". Also, you 
can pass the `frameworks_home` configuration option (defaults to: 
`MESOS_HOME/frameworks`) to your `mesos-slave` daemons when you launch them to 
specify where all of your framework executors are stored (e.g. on an NFS mount 
that is available to all slaves), then set `ExecutorInfo` to be a relative 
path, and the slave will prepend the value of frameworks_home to the relative 
path provided.
 
-Once you are sure that your executors are available to the mesos-slaves, you 
should be able to run your scheduler, which will register with the Mesos 
master, and start receiving resource offers!
\ No newline at end of file
+Once you are sure that your executors are available to the mesos-slaves, you 
should be able to run your scheduler, which will register with the Mesos 
master, and start receiving resource offers!

Modified: mesos/site/source/documentation/latest/configuration.md
URL: 
http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/configuration.md?rev=1636462&r1=1636461&r2=1636462&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/configuration.md (original)
+++ mesos/site/source/documentation/latest/configuration.md Mon Nov  3 22:37:09 
2014
@@ -113,7 +113,7 @@ If you have special compilation requirem
                                            NOTE: This flag is *experimental* 
and should not be used in
                                            production yet. (default: false)
 
-  --roles=VALUE                            A comma seperated list of the 
allocation
+  --roles=VALUE                            A comma separated list of the 
allocation
                                            roles that frameworks in this 
cluster may
                                            belong to.
 
@@ -131,7 +131,7 @@ If you have special compilation requirem
 
   --webui_dir=VALUE                        Location of the webui files/assets 
(default: /usr/local/share/mesos/webui)
 
-  --weights=VALUE                          A comma seperated list of 
role/weight pairs
+  --weights=VALUE                          A comma separated list of 
role/weight pairs
                                            of the form 
'role=weight,role=weight'. Weights
                                            are used to indicate forms of 
priority.
 

Modified: mesos/site/source/documentation/latest/powered-by-mesos.md
URL: 
http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/powered-by-mesos.md?rev=1636462&r1=1636461&r2=1636462&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/powered-by-mesos.md (original)
+++ mesos/site/source/documentation/latest/powered-by-mesos.md Mon Nov  3 
22:37:09 2014
@@ -29,6 +29,7 @@ layout: documentation
 * [MediaCrossing](http://www.mediacrossing.com)
 * [Mesosphere](http://www.mesosphere.io)
 * [Netflix](http://www.netflix.com)
+* [Oakmore Labs](http://www.oakmorelabs.com)
 * [OpenCredo](http://www.opencredo.com/)
 * [OpenTable](http://www.opentable.com)
 * [Oscar Insurance](https://www.hioscar.com/)


Reply via email to