8/25/2017 7:06:07 PM
in tests (#1396)
This function is currently only used in the testProjectSideBarView test. This is to make it easier to auto format html files and velocity templates.
|
|
8/25/2017 5:24:34 PM
Switch Metastore calls to use RetryingMetastoreClient
|
|
8/25/2017 4:04:51 PM
small refactor
This code patch is basically a refactor, which consolidate common code into a utility method.
|
8/25/2017 4:02:33 PM
class (#1393)
Add <p> tags to add new lines.
see
https://stackoverflow.com/questions/5077382/javadoc-line-breaks-without-html-tags
https://stackoverflow.com/questions/11053144/how-to-see-javadoc-in-intellij-idea
|
|
|
8/24/2017 7:56:40 PM
(#1346)
Added a config azkaban.storage.artifact.max.retention(default: 0)
Based on the storage parameter the files are removed and the project_versions table entries are removed.
``` /* * The max number of artifacts retained per project. * Accepted Values: * - 0 : Save all artifacts. No clean up is done on storage. * - 1, 2, 3, ... (any +ve integer 'n') : Maintain 'n' latest versions in storage * * Note: Having an unacceptable value results in an exception and the service would REFUSE * to start. * * Example: * a) azkaban.storage.artifact.max.retention=all * implies save all artifacts * b) azkaban.storage.artifact.max.retention=3 * implies save latest 3 versions saved in storage. **/ public static final String AZKABAN_STORAGE_ARTIFACT_MAX_RETENTION = "azkaban.storage.artifact.max.retention";
```
|
8/23/2017 2:04:06 PM
this PR is a follow-up of #1345. Last but not least, I'm migrating remained methods in JdbcExecutorloader to use new DB API. This commit should be the last one of the series.
|