You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ol...@apache.org on 2017/05/31 18:14:29 UTC

ambari git commit: AMBARI-21155. Update Infra Manager README.md (oleewere)

Repository: ambari
Updated Branches:
  refs/heads/trunk 23e23afd8 -> 69e73baa8


AMBARI-21155. Update Infra Manager README.md (oleewere)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/69e73baa
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/69e73baa
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/69e73baa

Branch: refs/heads/trunk
Commit: 69e73baa8812a1196d225af7c41cc8ddcfe457d0
Parents: 23e23af
Author: oleewere <ol...@gmail.com>
Authored: Wed May 31 20:12:27 2017 +0200
Committer: oleewere <ol...@gmail.com>
Committed: Wed May 31 20:12:27 2017 +0200

----------------------------------------------------------------------
 ambari-infra/ambari-infra-manager/README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/69e73baa/ambari-infra/ambari-infra-manager/README.md
----------------------------------------------------------------------
diff --git a/ambari-infra/ambari-infra-manager/README.md b/ambari-infra/ambari-infra-manager/README.md
index dd2854c..4e38a69 100644
--- a/ambari-infra/ambari-infra-manager/README.md
+++ b/ambari-infra/ambari-infra-manager/README.md
@@ -21,7 +21,7 @@ limitations under the License.
 
 ## Overview
 
-Ambari Infra Manager is a REST based management application for Ambari Infra services (like Infra Solr). The API is built on top of [Spring Batch] (http://docs.spring.io/spring-batch/reference/html/)
+Ambari Infra Manager is a REST based management application for Ambari Infra services (like Infra Solr). The API is built on top of [Spring Batch](http://docs.spring.io/spring-batch/reference/html/)
 
 ### Architecture
 ![batch-1](docs/images/batch-1.png)
@@ -35,11 +35,11 @@ Ambari Infra Manager is a REST based management application for Ambari Infra ser
 ### Step workflow
 ![batch-4](docs/images/batch-4.png)
 
-(images originally from [here] (http://docs.spring.io/spring-batch/reference/html/))
+(images originally from [here](http://docs.spring.io/spring-batch/reference/html/))
 
 ## API documentation
 
-Infra Manager uses [Swagger] (http://swagger.io/), generated yaml file can be downloaded from [here] (docs/api/swagger.yaml)
+Infra Manager uses [Swagger](http://swagger.io/), generated yaml file can be downloaded from [here](docs/api/swagger.yaml)
 
 
 ## Development guide
@@ -76,11 +76,11 @@ public class MyJobConfig {
 
 }
 ```
-As you can see it will require to implement [ItemWriter] (https://docs.spring.io/spring-batch/apidocs/org/springframework/batch/item/ItemWriter.html), [ItemReader] (http://docs.spring.io/spring-batch/trunk/apidocs/org/springframework/batch/item/ItemReader.html) and [ItemProcessor] (https://docs.spring.io/spring-batch/apidocs/org/springframework/batch/item/ItemProcessor.html)
+As you can see it will require to implement [ItemWriter](https://docs.spring.io/spring-batch/apidocs/org/springframework/batch/item/ItemWriter.html), [ItemReader](http://docs.spring.io/spring-batch/trunk/apidocs/org/springframework/batch/item/ItemReader.html) and [ItemProcessor](https://docs.spring.io/spring-batch/apidocs/org/springframework/batch/item/ItemProcessor.html)
 
 ### Schedule custom jobs
 
-It can be needed based on business requirements to schedule jobs (e.g. daily) instead of run manually through the REST API. It can be done with adding a custom bean to "org.apache.ambari.infra" package with using [@Scheduled] (http://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/annotation/Scheduled.html):
+It can be needed based on business requirements to schedule jobs (e.g. daily) instead of run manually through the REST API. It can be done with adding a custom bean to "org.apache.ambari.infra" package with using [@Scheduled](http://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/annotation/Scheduled.html):
 ```java
 @Named
 public class MySchedulerObject {