Skip to content

Commit 9d59554

Browse files
committed
first commit
0 parents  commit 9d59554

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+6191
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
target/
2+
*.pyc
3+
*.pem
4+
.classpath
5+
.project
6+
.settings/
7+
.coverage

CHANGELOG

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
## [0.1.0] 2016-07-01
5+
### First version
6+
7+
## [Pre-release]
8+
9+
### Added
10+
11+
- Add hue endpoint to environment endpoints API
12+
- Application names checked to only contain alphanumeric characters (a-z A-Z 0-9 - and _) because they are used directly in file paths.
13+
- Added ability to discover HDFS namedservices
14+
- Added information field to status reports
15+
- Using an external pacakge repository API instead of internal swift integration
16+
- Application detail API (GET /applications/<application>/detail) now returns YARN IDs assigned to the running tasks for that application.
17+
- Oozie error messages are reported when querying for status of an application creation call.
18+
- Packages are validated on deployment and the error messages reported when querying for status of a package deployment call.
19+
- Added support for opentsdb.json descriptor for creating metrics when deploying applications.
20+
- Callback events are sent to the console data logger.
21+
- Application detail API now completed to return Yarn IDs for any Yarn applications associated with a PNDA application.
22+
23+
### Fixed
24+
25+
- Return IP address for webhdfs/HTTPFS endpoint instead of hostname
26+
- Timeout calls to package repository at 120 seconds.
27+
- Deploying a package that does not exist in the package repository now results in a useful error message being returned to the caller.
28+
- Fixed defect preventing '-' being used in application names.
29+
- Fix Zookeeper quorum bug issue
30+
- Improve package validation to catch packages without 3 point version numbers and where the folder inside the tar does not match the package name.
31+
- Add list of zookeeper nodes to quorum
32+
- Remove port=8020 for named service
33+
- Oozie creator plugin sets 'oozie.wf.application.path' and 'oozie.coord.application.path' to point at the folder not the xml files.
34+
- Removed some stdout printouts
35+
- Fixed bug preventing recency parameter being used on the repository/packages API.

LICENSE

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Unless otherwise specified in the file, this software is:
2+
3+
Copyright (c) 2016 Cisco and/or its affiliates.
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.

0 commit comments

Comments
 (0)