aurora git commit: Remove restriction on task id length.

2017-06-12 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 06518c86b -> 40d9d4dbe Remove restriction on task id length. To work around an old Mesos bug (MESOS-691) we would reject jobs that resulted in Mesos task ids longer than 255 characters. This is because Mesos used to use the task id to

aurora git commit: Process rescinds in the same thread pool as offers.

2017-06-06 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 2cbaeecce -> 73234d09d Process rescinds in the same thread pool as offers. In a a production environment I was able to observe the following: ``` I0606 00:31:32.510 [Thread-77638, MesosCallbackHandler$MesosCallbackHandlerImpl:229] Offer

aurora git commit: Fix schema to allow multiple task volumes per task.

2017-04-07 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 656cf9ac5 -> cc2aa46f7 Fix schema to allow multiple task volumes per task. The original commit adding this feature added an artifical constraint to the schema that prevented more than one task volume per task. This is because there was a

aurora git commit: Reset `framework_registered` metric on disconnection.

2017-03-29 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master c32f14c75 -> 3a9aabda9 Reset `framework_registered` metric on disconnection. Previously the `framework_registered` metric only transitioned from 0 to 1 on the first registration. On disconnection and registration loss, the metric was not

aurora git commit: Support Mesos Maintenance

2017-03-23 Thread zmanji
@@ -13,6 +13,8 @@ */ package org.apache.aurora.common.util; +import java.time.Instant; + /** * An abstraction of the system clock. * @author John Sirois @@ -21,7 +23,6 @@ public interface Clock { // TODO(zmanji): Consider replacing this with java.time.Clock /** * A clock that returns the

aurora git commit: Populate `host` and `webURL`fields of FrameworkInfo.

2017-03-17 Thread zmanji
LoadingModule; import org.apache.aurora.scheduler.stats.StatsModule; import org.apache.aurora.scheduler.storage.Storage; @@ -82,6 +83,7 @@ public class SchedulerMain { @CmdLine(name = "serverset_path", help = "ZooKeeper ServerSet path to register at.") private static fin

aurora git commit: Reduce log output in `VersionedSchedulerDriverService`.

2017-03-08 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 932e90871 -> a07b9edf5 Reduce log output in `VersionedSchedulerDriverService`. The `acceptOffers` log message outputs the entire `Operation` object which for the `LAUNCH` type includes the entire `TaskInfo` protobuf. This makes the log

[1/2] aurora git commit: Enable Mesos HTTP API.

2017-03-02 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 2652fe02a -> 705dbc7cd http://git-wip-us.apache.org/repos/asf/aurora/blob/705dbc7c/src/test/java/org/apache/aurora/scheduler/mesos/MesosSchedulerImplTest.java -- diff

[2/2] aurora git commit: Enable Mesos HTTP API.

2017-03-02 Thread zmanji
quot;Allow jobs to request Mesos GPU resource.") private static final Arg ALLOW_GPU_RESOURCE = Arg.create(false); + public enum DriverKind { +// TODO(zmanji): Remove this option once V0_DRIVER has been proven out in production. +// This is the original driver that libmesos

aurora git commit: Fix scheduler_framework_disconnects stat.

2017-02-27 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master fadfd554d -> 2652fe02a Fix scheduler_framework_disconnects stat. Refactoring in r/31550 has disabled incrementing scheduler_framework_disconnects stats. This change brings it back. Testing Done: Added a check to

aurora git commit: Displaying update id after 'Killed for job update' message for the update that resulted in the task getting killed.

2017-02-13 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master ad3377ab2 -> 40d91feb7 Displaying update id after 'Killed for job update' message for the update that resulted in the task getting killed. Testing Done: Tests: -- aurora job create devcluster/www-data/devel/hello_world

aurora git commit: Add additional tests for the conversion of TaskStatus.

2017-02-08 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 5b7042c4e -> ad3377ab2 Add additional tests for the conversion of TaskStatus. This adds additional testing for the `ProtosConversions` class, ensuring there is the correct conversion between `SlaveID` and `AgentID`. Reviewed at

[2/2] aurora git commit: Move Aurora to v1 Protobufs.

2017-02-06 Thread zmanji
Move Aurora to v1 Protobufs. This is the first step in moving Aurora to the V1 API from Mesos. This patch moves most of the code to v1 Protobufs. This means all peices of code that do not interact with Mesos now handle only v1 Protobufs. Classes that interact with Mesos directly are: *

aurora git commit: Move deprecated resource validations so they happen after the thrift backfill.

2017-01-30 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 7be7ad6f1 -> 07065b502 Move deprecated resource validations so they happen after the thrift backfill. As the validations for NumCpus, RamMb and DiskMb happened before the thrift backfill, those values needed to be set, even though they

aurora git commit: Exposed stats on number of offers rescinded and number of slaves lost.

2017-01-13 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 264527896 -> b75dfb838 Exposed stats on number of offers rescinded and number of slaves lost. Testing Done: curl -w '\n' 192.168.33.7:8081/vars | grep offers_rescinded % Total% Received % Xferd Average Speed TimeTime Time

aurora git commit: Expose stats on SlotSizeCounter runs.

2017-01-13 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 06a221fda -> 264527896 Expose stats on SlotSizeCounter runs. Bugs closed: AURORA-1874 Reviewed at https://reviews.apache.org/r/55477/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit:

aurora git commit: Improve scheduling throughput via logging changes.

2016-12-02 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 3ea0331d4 -> 4bc524614 Improve scheduling throughput via logging changes. This patch makes two logging performance changes. First, it reduces the cost of logging by replacing the costly class and line patterns with the cheaper logger

[1/2] aurora git commit: Change job updates to rely on `health-checks` rather than on `watch_secs`.

2016-11-17 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 05f082a1c -> 2992c8b4d http://git-wip-us.apache.org/repos/asf/aurora/blob/2992c8b4/src/test/python/apache/aurora/executor/test_status_manager.py -- diff --git

aurora git commit: Send SIGTERM to daemonized processes on shutdown.

2016-11-04 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master fb936b545 -> 5410c229f Send SIGTERM to daemonized processes on shutdown. Problem Processes can deamonize and escape the supervision of a coordinator. Using the Docker Containerizer or the Mesos Containerizer with pid isolation means that

aurora git commit: Add support for receiving min_consecutive_successes in health checker

2016-10-05 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 640f07bab -> e91130e49 Add support for receiving min_consecutive_successes in health checker - Add support for receiving a new HealthCheckConfig attribute "min_consecutive_successes" in health checker. - Add an entry in release note

aurora git commit: Replace wfarner with zmanji as default reviewer.

2016-10-04 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 249245db0 -> ebdaa6b86 Replace wfarner with zmanji as default reviewer. Reviewed at https://reviews.apache.org/r/52521/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aur

aurora git commit: Add Criteo to Aurora user list

2016-09-28 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 69cba786e -> 1c1c0a597 Add Criteo to Aurora user list Testing Done: N/A Reviewed at https://reviews.apache.org/r/52343/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit:

aurora git commit: Aurora admin commands for reconciliation

2016-09-13 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 795a2728c -> 633948ab0 Aurora admin commands for reconciliation * A new command for task reconciliation `reconcile_tasks` was added to the aurora_admin CLI. It takes type of reconciliation and the batch size(for explicit

aurora git commit: Extend getJobUpdateDetails to accept JobUpdateQuery

2016-09-13 Thread zmanji
ache/aurora/gen/api.thrift +++ b/api/src/main/thrift/org/apache/aurora/gen/api.thrift @@ -896,7 +896,9 @@ struct GetJobUpdateSummariesResult { /** Result of the getJobUpdateDetails call. */ struct GetJobUpdateDetailsResult { + // TODO(zmanji): Remove this once we complete AURORA-1765 1: J

aurora git commit: Implement `toString` on lazy modules.

2016-09-12 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master c4903d873 -> f0ff1c4fb Implement `toString` on lazy modules. This will change the help output from: `-shiro_realm_modules (default [org.apache.aurora.scheduler.app.MoreModules$1@158a8276])` to `-shiro_realm_modules (default [class

aurora git commit: Modify the watch_secs assertion on scheduler

2016-09-07 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 19866b516 -> 8fca74501 Modify the watch_secs assertion on scheduler This feature intends to improve reliability and performance of the Aurora scheduler job updater by relying on health check status rather than watch_secs timeout when

aurora git commit: Remove HttpServletRequestParams.

2016-09-06 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 0c90c862a -> 19866b516 Remove HttpServletRequestParams. `HttpServletRequestParams` is dead code can be removed safely. Reviewed at https://reviews.apache.org/r/51667/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit:

aurora git commit: Add MEDIAN_TIME_TO_STARTING as a new metric.

2016-09-06 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 059b08621 -> 0c90c862a Add MEDIAN_TIME_TO_STARTING as a new metric. A new MTTS (Median Time To Starting) metric is added to the sla module in addition to MTTA and MTTR. This review request is related to my previous review request:

aurora git commit: Fix thermos killing heuristic to permit setuid(2).

2016-08-23 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master c115ac6bc -> 50f47ccc9 Fix thermos killing heuristic to permit setuid(2). Previously this process killing heuristic would not allow killing of a process if the uid it was launched with differs from the real uid of the currently running

aurora git commit: Reduce static method exposure for Stats.

2016-08-22 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 370813f11 -> 9b34a4036 Reduce static method exposure for Stats. `org.apache.aurora.common.stats.Stats` has several static methods that are not used in our codebase. This patch deletes the unused methods and reduces the visability of other

aurora git commit: Add rollback functionality to the scheduler

2016-08-12 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 90846640b -> a4fdf284d Add rollback functionality to the scheduler For active job updates in ROLLING_FORWARD, ROLL_BACK_PAUSED, ROLL_BACK_AWAITING_PULSE, ROLL_FORWARD_PAUSED or ROLL_FORWARD_AWAITING_PULSE state it is possible now to

aurora git commit: Remove unnecessary guice container parameters.

2016-08-10 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 581262ccf -> c465fb1e2 Remove unnecessary guice container parameters. I noticed these configuration parameters have no effect. Both the API and JAX-RS endpoints like /vars return gipped content. Testing Done: $ curl -I -X GET

aurora git commit: Fix typo in `RELEASE-NOTES.md`.

2016-08-05 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 122780872 -> 581262ccf Fix typo in `RELEASE-NOTES.md`. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/581262cc Tree:

aurora git commit: Deleting --setuid-health-checks and switching to --nosetuid-health-checks flag to to control whether the executor runs health checks as the job role's user.

2016-04-19 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 96d5b648e -> d1dfd16a3 Deleting --setuid-health-checks and switching to --nosetuid-health-checks flag to to control whether the executor runs health checks as the job role's user. Bugs closed: AURORA-1666 Reviewed at

aurora git commit: Add @Timed annotations to cron stores.

2016-04-18 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master a6197316c -> 96d5b648e Add @Timed annotations to cron stores. Both cron stores don't have @Timed annoations. This adds them so operators can look at the throughput of storage. Bugs closed: AURORA-1665 Reviewed at

aurora git commit: Make MyBatis connection pool size configurable.

2016-04-18 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master e543415d2 -> 96c990875 Make MyBatis connection pool size configurable. This adds two arguments which enables operators to configure the internal MyBatis connection pool size. Increasing the size will allow for greater concurrency in

aurora git commit: Implement custom MyBatis cache to record cache statistics.

2016-04-06 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 1a391d75f -> 9a93955a1 Implement custom MyBatis cache to record cache statistics. This swaps out our use of the MyBatis default cache with a custom one backed by Guava. The benefit of this is that we can now plumb cache statistics out

aurora git commit: Show principal in auth failure messaage.

2016-03-04 Thread zmanji
@@ public class ShiroAuthorizingParamInterceptorTest extends EasyMockTest { .andReturn(false); expect(subject.isPermitted(interceptor.makeTargetPermission("killTasks", JOB_KEY))) .andReturn(false); +expect(subject.getPrincipal()).andReturn("zmanji"); replayAndInitialize();

aurora git commit: Install thrift package from the offical debs.

2016-03-04 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master f6506d903 -> a4e7b3a43 Install thrift package from the offical debs. `twopercent` pointed out on IRC that due to the people.a.o change our vagrant provisioning was broken. This ports the change from aurora-packaging to our vagrant script.

aurora git commit: Complete TODO in Tasks.java.

2016-03-03 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 35de88645 -> 98a2bc194 Complete TODO in Tasks.java. This completes the TODO in Tasks.java by removing the unused code. Reviewed at https://reviews.apache.org/r/44219/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit:

aurora git commit: Bump mybatis dependency to 3.3.1. The release notes[1] indicate a few changes including one performance improvement[2].

2016-02-23 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 14f867cde -> 0df94f6e7 Bump mybatis dependency to 3.3.1. The release notes[1] indicate a few changes including one performance improvement[2]. [1]: http://blog.mybatis.org/2016/02/mybatis-331-and-mybatis-spring-124.html [2]:

aurora git commit: Do not create a set inside DbTaskStore#fetchTasks.

2016-02-19 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 9d642dcfa -> 8501d8219 Do not create a set inside DbTaskStore#fetchTasks. The TaskStore interface allows for an Iterable to be returned. Taking advantage of this and returning the list MyBatis creates results in a performance improvement.

aurora git commit: Increase throughput of DbTaskStore

2016-02-12 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 17ddc484f -> 9340d468f Increase throughput of DbTaskStore Profiling master indicated that the bottleneck was MyBatis populating ResultSets and populating the resulting objects. This patch removes subselects, which reduces the number of

aurora git commit: Reject NULL for enum values in H2.

2016-02-10 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 86b6d7919 -> d657f952a Reject NULL for enum values in H2. While I was working on something else, I introduced an error where MyBatis was populating a thrift enum value and was reading in NULL. I realized that the code would currently

aurora git commit: Add benchmark for feching tasks.

2016-02-07 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 2d59b697a -> 784deaf40 Add benchmark for feching tasks. This adds a benchmark for the throughput of fetching tasks from both the DB and InMem store. Reviewed at https://reviews.apache.org/r/43237/ Project:

aurora git commit: Remove unused entry in TaskMapper.

2016-02-04 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 52c19cf05 -> 42bff1961 Remove unused entry in TaskMapper. The property `taskConfigRowId` doesn't exist on `DbScheduledTask` so this line has no use. Testing Done: ./gadlew test Reviewed at https://reviews.apache.org/r/43178/ Project:

aurora git commit: Expose MyBatis PoolState via stats.

2016-02-03 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 2d91e18fb -> 52c19cf05 Expose MyBatis PoolState via stats. To better understand the MyBatis connection pool this patch exposes the pool state via stats. Reviewed at https://reviews.apache.org/r/43150/ Project:

aurora git commit: Enable ping query to prevent use of invalid pooled connections.

2016-02-01 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master de0029bb6 -> 6c539fe5a Enable ping query to prevent use of invalid pooled connections. Bugs closed: AURORA-1596 Reviewed at https://reviews.apache.org/r/42979/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit:

aurora git commit: Turn TaskHistoryPruner into a service and trigger shutdown on pruning failure.

2016-01-21 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master a2c7ccc17 -> c89fecbcd Turn TaskHistoryPruner into a service and trigger shutdown on pruning failure. Task pruning is key to operating a large cluster and failure to prune should trigger shutdown to prevent unbounded growth of storage.

aurora git commit: Add metric for counting uncaught exceptions in async executor.

2016-01-15 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 4dff5da84 -> b56367902 Add metric for counting uncaught exceptions in async executor. Add metric "async_executor_uncaught_exceptions" for tracking uncaught exceptions in async executor. Bugs closed: AURORA-1582 Reviewed at

aurora git commit: Enable H2 query statistics collection.

2016-01-11 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master e4c9c73f5 -> f064dc106 Enable H2 query statistics collection. With this enabled operators can visit the H2 console at /h2console and run queries like `SELECT * FROM INFORMATION_SCHEMA.QUERY_STATISTICS ORDER BY MAX_EXECUTION_TIME DESC;` to

aurora git commit: Fixup `getJobSummary` for cron jobs with invalid next run dates.

2015-12-18 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master edaf984ad -> 1c7343831 Fixup `getJobSummary` for cron jobs with invalid next run dates. Previously, the fact `null` could be returned by Quartz when calculating the next run was not taken into account. Now The CronPredictor interface

aurora git commit: Replace manual Forwarding* with `@Forward`.

2015-12-07 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 676ee5be7 -> 0c98e8a82 Replace manual Forwarding* with `@Forward`. This is a bit of a straw man. While working on https://issues.apache.org/jira/browse/AURORA-987 I found the need for `javapoet` and this project spun off the side. See

aurora git commit: Set JDK and langauge level for entire project.

2015-11-24 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 697087b29 -> 3e69dd46d Set JDK and langauge level for entire project. To ensure IDEA is configured correctly, set JDK and langauge level for entire project. Testing Done: ./gradlew idea Verified that a freshly created project uses JDK

aurora git commit: Upgrade RBTools to 0.7.5

2015-11-24 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master e3c5c370c -> 8524dbfef Upgrade RBTools to 0.7.5 Upgrade to RBTools 0.7.5 and use the wheel hosted on PyPI. Changelog: https://www.reviewboard.org/docs/releasenotes/rbtools/0.7.5/ Testing Done: Modified the script and ran ./rbt Reviewed

svn commit: r1714871 - in /aurora/site: publish/downloads/index.html publish/sitemap.xml source/downloads.html.md

2015-11-17 Thread zmanji
Author: zmanji Date: Tue Nov 17 20:16:34 2015 New Revision: 1714871 URL: http://svn.apache.org/viewvc?rev=1714871=rev Log: Update the website to link to 0.10.0 release. Modified: aurora/site/publish/downloads/index.html aurora/site/publish/sitemap.xml aurora/site/source

svn commit: r11206 - in /release/aurora/0.10.0: apache-aurora-0.10.0.tar.gz apache-aurora-0.10.0.tar.gz.asc apache-aurora-0.10.0.tar.gz.md5 apache-aurora-0.10.0.tar.gz.sha

2015-11-16 Thread zmanji
Author: zmanji Date: Mon Nov 16 22:01:17 2015 New Revision: 11206 Log: aurora-0.10.0 release Added: release/aurora/0.10.0/apache-aurora-0.10.0.tar.gz (with props) release/aurora/0.10.0/apache-aurora-0.10.0.tar.gz.asc release/aurora/0.10.0/apache-aurora-0.10.0.tar.gz.md5 release

svn commit: r11205 - /release/aurora/0.10.0/

2015-11-16 Thread zmanji
Author: zmanji Date: Mon Nov 16 22:01:10 2015 New Revision: 11205 Log: aurora-0.10.0 release Added: release/aurora/0.10.0/

[2/2] aurora git commit: Updating CHANGELOG for 0.10.0 release.

2015-11-11 Thread zmanji
Updating CHANGELOG for 0.10.0 release. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/3cbb6e5d Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/3cbb6e5d Diff:

[2/2] aurora git commit: Updating CHANGELOG for 0.10.0 release.

2015-11-11 Thread zmanji
Updating CHANGELOG for 0.10.0 release. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/3cbb6e5d Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/3cbb6e5d Diff:

svn commit: r11155 - /dev/aurora/0.10.0-rc2/

2015-11-11 Thread zmanji
Author: zmanji Date: Thu Nov 12 04:10:10 2015 New Revision: 11155 Log: aurora-0.10.0 release candidate 2 Added: dev/aurora/0.10.0-rc2/

[1/2] aurora git commit: Incrementing snapshot version to 0.11.0-SNAPSHOT.

2015-11-11 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 0b9198a76 -> 48aedae3a Incrementing snapshot version to 0.11.0-SNAPSHOT. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/48aedae3 Tree:

[2/2] aurora git commit: Updating CHANGELOG for 0.10.0 release.

2015-11-11 Thread zmanji
Updating CHANGELOG for 0.10.0 release. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/90af4afb Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/90af4afb Diff:

svn commit: r11154 - in /dev/aurora/0.10.0-rc1: apache-aurora-0.10.0-rc1.tar.gz apache-aurora-0.10.0-rc1.tar.gz.asc apache-aurora-0.10.0-rc1.tar.gz.md5 apache-aurora-0.10.0-rc1.tar.gz.sha

2015-11-11 Thread zmanji
Author: zmanji Date: Thu Nov 12 04:05:19 2015 New Revision: 11154 Log: aurora-0.10.0 release candidate 1 Added: dev/aurora/0.10.0-rc1/apache-aurora-0.10.0-rc1.tar.gz (with props) dev/aurora/0.10.0-rc1/apache-aurora-0.10.0-rc1.tar.gz.asc dev/aurora/0.10.0-rc1/apache-aurora-0.10.0

aurora git commit: Revert .auroraversion for 0.10.0-rc1.

2015-11-11 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 4f43df09e -> 0b9cf78ff Revert .auroraversion for 0.10.0-rc1. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/0b9cf78f Tree:

[1/2] aurora git commit: Incrementing snapshot version to 0.11.0-SNAPSHOT.

2015-11-10 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 02df5eeea -> 3ea1b26ae Incrementing snapshot version to 0.11.0-SNAPSHOT. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/3ea1b26a Tree:

aurora git commit: Remove unused Connection interface.

2015-10-25 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 7c25ef914 -> ed2cfb7da Remove unused Connection interface. Reviewed at https://reviews.apache.org/r/39633/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/ed2cfb7d

aurora git commit: Explicitly declare FindBugs version and effort level.

2015-10-25 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 84b9d4a4d -> 7c25ef914 Explicitly declare FindBugs version and effort level. Reviewed at https://reviews.apache.org/r/39630/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit:

aurora git commit: Restore build properties within Scheduler vars endpoint and snapshots

2015-09-17 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master d98bfc8f4 -> 26644fcc5 Restore build properties within Scheduler vars endpoint and snapshots Testing Done: `./gradlew build -Pq` Bugs closed: AURORA-1473 Reviewed at https://reviews.apache.org/r/38280/ Project:

aurora git commit: Added support for {{mesos.hostname}} in configuration files.

2015-09-02 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master c87113337 -> 85f93a70d Added support for {{mesos.hostname}} in configuration files. Bugs closed: AURORA-1261 Reviewed at https://reviews.apache.org/r/37801/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit:

aurora git commit: Remove barely used commons classes.

2015-08-31 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 68447b385 -> f94e5c271 Remove barely used commons classes. This patch removes a few barely used or duplicate classes from commons. Testing Done: ./gradlew -Pq Reviewed at https://reviews.apache.org/r/37937/ Project:

[1/3] aurora git commit: WIP of upgrading guice.

2015-08-31 Thread zmanji
Repository: aurora Updated Branches: refs/heads/zmanji/upgrade-guice [created] 5be754a06 WIP of upgrading guice. Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/9d0fc043 Tree: http://git-wip-us.apache.org/repos/asf

[2/3] aurora git commit: Remove guice-servlet 3.0 from the classpath.

2015-08-31 Thread zmanji
/diff/e9fa4ba3 Branch: refs/heads/zmanji/upgrade-guice Commit: e9fa4ba35f8651661bcfc540a7fbe07bb3bbdc30 Parents: 9d0fc04 Author: Zameer Manji <zma...@apache.org> Authored: Mon Aug 31 12:59:08 2015 -0700 Committer: Zameer Manji <zma...@apache.org> Committed: Mon Aug 31 12:59:0

Git Push Summary

2015-08-31 Thread zmanji
Repository: aurora Updated Branches: refs/heads/zmanji/upgrade-guice [deleted] 5be754a06

aurora git commit: Upgrade to Guava 18

2015-08-30 Thread zmanji
Repository: aurora Updated Branches: refs/heads/master 4899e2de3 - 68447b385 Upgrade to Guava 18 Upgrades the Gauva dep to 18. Full release notes can be found here: * https://code.google.com/p/guava-libraries/wiki/Release17 * https://code.google.com/p/guava-libraries/wiki/Release18 Relevant

[05/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/resources/org/apache/aurora/common/application/http/graphview/dygraph-combined.js -- diff --git

[40/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/net/pool/DynamicHostSetUtil.java -- diff --git a/commons/src/main/java/com/twitter/common/net/pool/DynamicHostSetUtil.java

[16/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/util/concurrent/ExecutorServiceShutdown.java -- diff --git

[22/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/net/pool/DynamicHostSet.java -- diff --git a/commons/src/main/java/org/apache/aurora/common/net/pool/DynamicHostSet.java

[50/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons-args/src/main/java/com/twitter/common/args/apt/CmdLineProcessor.java -- diff --git a/commons-args/src/main/java/com/twitter/common/args/apt/CmdLineProcessor.java

[28/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/base/Command.java -- diff --git a/commons/src/main/java/org/apache/aurora/common/base/Command.java

[04/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/resources/org/apache/aurora/common/application/http/graphview/dygraph-extra.js -- diff --git

[11/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/resources/com/twitter/common/application/http/graphview/dygraph-extra.js -- diff --git

[23/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/net/http/handlers/TimeSeriesDataSource.java -- diff --git

[26/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/logging/julbridge/JULBridgeLevelConverter.java -- diff --git

[33/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/zookeeper/Group.java -- diff --git a/commons/src/main/java/com/twitter/common/zookeeper/Group.java

[27/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/inject/DefaultProvider.java -- diff --git a/commons/src/main/java/org/apache/aurora/common/inject/DefaultProvider.java

[44/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/logging/Glog.java -- diff --git a/commons/src/main/java/com/twitter/common/logging/Glog.java

[17/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/util/QueueDrainer.java -- diff --git a/commons/src/main/java/org/apache/aurora/common/util/QueueDrainer.java

[24/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/net/http/GuiceServletConfig.java -- diff --git

[18/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/thrift/callers/RetryingCaller.java -- diff --git

[36/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/thrift/callers/RetryingCaller.java -- diff --git a/commons/src/main/java/com/twitter/common/thrift/callers/RetryingCaller.java

[38/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/stats/Stats.java -- diff --git a/commons/src/main/java/com/twitter/common/stats/Stats.java

[10/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/resources/com/twitter/common/webassets/bootstrap/2.1.1/css/bootstrap.min.css -- diff --git

[41/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/net/http/handlers/TimeSeriesDataSource.java -- diff --git

[25/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/net/UrlTokenizerUtil.java -- diff --git a/commons/src/main/java/org/apache/aurora/common/net/UrlTokenizerUtil.java

[20/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/org/apache/aurora/common/stats/Stats.java -- diff --git a/commons/src/main/java/org/apache/aurora/common/stats/Stats.java

[32/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/zookeeper/ZooKeeperClient.java -- diff --git a/commons/src/main/java/com/twitter/common/zookeeper/ZooKeeperClient.java

[31/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/java/com/twitter/common/zookeeper/testing/ZooKeeperTestServer.java -- diff --git

[08/51] [partial] aurora git commit: Move packages from com.twitter.common to org.apache.aurora.common

2015-08-26 Thread zmanji
http://git-wip-us.apache.org/repos/asf/aurora/blob/06ddaadb/commons/src/main/resources/com/twitter/common/webassets/bootstrap/2.3.2/css/bootstrap.min.css -- diff --git

  1   2   >