-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mesos support for NodeStats events #4
base: ow-invoker-backpressure-mesos
Are you sure you want to change the base?
mesos support for NodeStats events #4
Commits on Feb 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 619c86d - Browse repository at this point
Copy the full SHA 619c86dView commit details
Commits on Feb 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ca8e414 - Browse repository at this point
Copy the full SHA ca8e414View commit details
Commits on Feb 19, 2019
-
This commit contains multiple changes to the apiv1swagger.json file (a…
…pache#4294) 1. Fixed 2 typos that refer to non-existing response 'TooManyRequsts' 2. Updated description of PUT method for rule 3. Updated description of PUT method for trigger 4. Created new definition ActivationBrief 5. Changed response type for GET activations to refer to ActivationBrief instead of EntityBrief, which didn't match the actual response 6. Added attribute statusCode to definition ActivationBrief and Activation 7. Modified description of GET activations apache#2271 8. Added operationId to GET activation logs and result (apache#318) 9. Removed the init attribute from the ActionExec definition (apache#4201) 10. Use of 2 spaces for indentation, which is the default when working with the Swagger editor, instead of the four spaces used.
Configuration menu - View commit details
-
Copy full SHA for 3fd4db5 - Browse repository at this point
Copy the full SHA 3fd4db5View commit details
Commits on Feb 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 38e4b05 - Browse repository at this point
Copy the full SHA 38e4b05View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9eb197c - Browse repository at this point
Copy the full SHA 9eb197cView commit details
Commits on Feb 21, 2019
-
Improve container factory documentation (apache#4255)
* Improve container factory documentation Explicitly list some of the expectations and requirements an actual container factory / container implementation needs to satisfy. Addresses apache#4002. * Address review feedback
Configuration menu - View commit details
-
Copy full SHA for 8e45921 - Browse repository at this point
Copy the full SHA 8e45921View commit details
Commits on Feb 23, 2019
-
Adding YARNContainerFactory. This allows OpenWhisk to run actions on …
…Apache Hadoop clusters. (apache#4129)
Configuration menu - View commit details
-
Copy full SHA for 6e883f9 - Browse repository at this point
Copy the full SHA 6e883f9View commit details
Commits on Feb 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for fec91db - Browse repository at this point
Copy the full SHA fec91dbView commit details
Commits on Feb 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ae373c8 - Browse repository at this point
Copy the full SHA ae373c8View commit details -
Use runtime tags specified in runtime manifest for YARNContainerFacto…
…ryTests (apache#4305) * Look up runtime tag for YARN tests * Scala formatting
Configuration menu - View commit details
-
Copy full SHA for 1c6cc36 - Browse repository at this point
Copy the full SHA 1c6cc36View commit details -
Use custom runtime manifest for YARN tests (apache#4307)
* Use custom manifest for YARN tests * Remove imageTag method
Configuration menu - View commit details
-
Copy full SHA for bb9f408 - Browse repository at this point
Copy the full SHA bb9f408View commit details
Commits on Feb 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2fad9a3 - Browse repository at this point
Copy the full SHA 2fad9a3View commit details
Commits on Feb 28, 2019
-
Avoid that actions do not stop after action timeout when logging heav…
…ily (apache#4299) * wait for sentinel only in case no timeout occurred * introduce timeout annotation * nodejs:6 logging timeout action w/o busy loop * do conversion from FiniteDuration to Duration
Configuration menu - View commit details
-
Copy full SHA for 33d70bf - Browse repository at this point
Copy the full SHA 33d70bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 68497a1 - Browse repository at this point
Copy the full SHA 68497a1View commit details -
Collect and log CosmosDB query metrics when extra logging is enabled (a…
…pache#4275) * Collect and log CosmosDB query metrics when extra logging is enabled Fixes apache#4268
Configuration menu - View commit details
-
Copy full SHA for 2ddd3c9 - Browse repository at this point
Copy the full SHA 2ddd3c9View commit details
Commits on Mar 1, 2019
-
Make WskRestRuleTests more stable. (apache#4317)
If there is an deployment with several controllers, the test `Whisk rules should preserve rule status when a rule is updated` fails intermittently. The reason is, that there are several modifications on the rule. These modifications are already retried. But enabling and disabling the rule also modifies the database document. But that change is currently not retried. This PR puts the enabling/disabling of the rule into the retry block as well to make this test more stable against our eventual consistency. Co-authored-by: Somaya Jamil <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for db040cb - Browse repository at this point
Copy the full SHA db040cbView commit details
Commits on Mar 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for df3acee - Browse repository at this point
Copy the full SHA df3aceeView commit details -
Record clusterId performing change in CosmosDB (apache#4312)
Records the clusterId (if configured) with the updated document while persisting in ComosDB. This is an optional property. By default no `clusterId` info is saved
Configuration menu - View commit details
-
Copy full SHA for 5b28f46 - Browse repository at this point
Copy the full SHA 5b28f46View commit details -
Configuration menu - View commit details
-
Copy full SHA for c68ad51 - Browse repository at this point
Copy the full SHA c68ad51View commit details
Commits on Mar 5, 2019
-
Update CosmosDB to 2.4.2 (apache#4321)
* Update to CosmosDB SDK 2.4.2 * Remove logic related to storing attachments in CosmosDB * Reduce throughput for test to 400
Configuration menu - View commit details
-
Copy full SHA for 1c3de9f - Browse repository at this point
Copy the full SHA 1c3de9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for a08175f - Browse repository at this point
Copy the full SHA a08175fView commit details
Commits on Mar 7, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 063cb66 - Browse repository at this point
Copy the full SHA 063cb66View commit details
Commits on Mar 8, 2019
-
Add an annotations to inject the API key into the action context. (ap…
…ache#4284) * Factor out some annotation names to WhiskAction singleton. * Omit API key unless requested explicitly. * Add an annotation provide-api-key which causes an API key to be passed to the action context. * Modify Parameters.isTruthy to allow for caller to specify how it wants to treat a missing key. Default is missing key -> false (preserving behavior). Add test for isTruthy. * Treat a missing provide-key-annotation as truthy annotation. Actions that already exist without the annotation will receive the key as they might already expect. * Add container proxy test. * Update tests for new system annotation. * Allow pre-existing actions to be exempt from new system annotations. * Update docs.
Configuration menu - View commit details
-
Copy full SHA for fb0bab6 - Browse repository at this point
Copy the full SHA fb0bab6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb332cb - Browse repository at this point
Copy the full SHA fb332cbView commit details
Commits on Mar 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 47c069a - Browse repository at this point
Copy the full SHA 47c069aView commit details -
Use Gauge metric instead of Histogram where applicable (apache#4327)
* Kamon Gauge abstraction * Switch to gauge metric
Configuration menu - View commit details
-
Copy full SHA for 7633332 - Browse repository at this point
Copy the full SHA 7633332View commit details
Commits on Mar 14, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bb4e4df - Browse repository at this point
Copy the full SHA bb4e4dfView commit details
Commits on Mar 15, 2019
-
Adapts test harness to parses activation ids from wsk activation list…
… with new format. (apache#4346) * Adapts test harness to parses activation ids from wsk activation list with new format.
Configuration menu - View commit details
-
Copy full SHA for 8d5857c - Browse repository at this point
Copy the full SHA 8d5857cView commit details -
Fixes the issue of failing to read empty Splunk JSON objects (apache#…
…4348) Ignores the json records which have some of the required fields missing and replaces them with the error message from the parsing
Configuration menu - View commit details
-
Copy full SHA for 3927828 - Browse repository at this point
Copy the full SHA 3927828View commit details -
Configuration menu - View commit details
-
Copy full SHA for 14c271e - Browse repository at this point
Copy the full SHA 14c271eView commit details -
Configuration menu - View commit details
-
Copy full SHA for cf5587d - Browse repository at this point
Copy the full SHA cf5587dView commit details
Commits on Mar 16, 2019
-
Initial commit to add the deployment configuration for Jenkins (apach…
…e#4345) Closes-Bug: apache#4335
Vincent authoredMar 16, 2019 Configuration menu - View commit details
-
Copy full SHA for 5b055f0 - Browse repository at this point
Copy the full SHA 5b055f0View commit details
Commits on Mar 18, 2019
-
Move runtimesRegistry to pureconfig. (apache#4343)
This PR moves the config of the runtimes-registry to pureconfig. In addition it adds the ability to provide credentials for this registry. They are not used yet in the default implementations of the container factory. But they can be used in the SPIs.
Configuration menu - View commit details
-
Copy full SHA for 64cb8ec - Browse repository at this point
Copy the full SHA 64cb8ecView commit details -
Revert back to the previous version, as the new base image causes reg…
…ression in performance tests. (apache#4353) Reverting back to adoptopenjdk/openjdk8:x86_64-alpine-jdk8u172-b11 from adoptopenjdk/openjdk8:x86_64-alpine-jdk8u202-b08 (commit) as we see regression in Latency. After briefly debugging, we found that the time was lost between Controller->Invoker & Invoker->Controller (as reverting version already helps to improve the problem there seems to be an issue with the communication with kafka). We didnt find a quick solution so reverting back to the old version, and in the meanwhile will continue to look for the root cause.
Configuration menu - View commit details
-
Copy full SHA for 58e3ddd - Browse repository at this point
Copy the full SHA 58e3dddView commit details
Commits on Mar 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for b2f3c7e - Browse repository at this point
Copy the full SHA b2f3c7eView commit details -
Add the private docker registry for three VMs under Apache (apache#4356)
A private docker registry has been set up for the VMs dedicated to OpenWhisk deployment. This PR adds the feature to push the controller and invoker images into this private registry, so that they can be accessed by all the VMs.
Vincent authoredMar 19, 2019 Configuration menu - View commit details
-
Copy full SHA for b3d1e70 - Browse repository at this point
Copy the full SHA b3d1e70View commit details
Commits on Mar 20, 2019
-
Add the file Jenkinsfile into the root directory of OpenWhisk (apache…
Vincent authoredMar 20, 2019 Configuration menu - View commit details
-
Copy full SHA for ac6d6ba - Browse repository at this point
Copy the full SHA ac6d6baView commit details
Commits on Mar 22, 2019
-
Enable soft delete mode for documents in CosmosDB (apache#4339)
* Enable soft deletion of documents in CosmosDB
Configuration menu - View commit details
-
Copy full SHA for e7253ac - Browse repository at this point
Copy the full SHA e7253acView commit details -
Configuration menu - View commit details
-
Copy full SHA for b1a746e - Browse repository at this point
Copy the full SHA b1a746eView commit details
Commits on Mar 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 561dfb6 - Browse repository at this point
Copy the full SHA 561dfb6View commit details
Commits on Mar 25, 2019
-
Adapt limit to query db view as per couch db change (apache#4388)
Co-authored-by: steffenrost <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 701b1a8 - Browse repository at this point
Copy the full SHA 701b1a8View commit details -
Remove separate wskdeploy executable from ow-utils (apache#4393)
wskdeploy is now distributed as a subcommand of wsk (wsk project), so no need to include a wskdeploy executable.
Configuration menu - View commit details
-
Copy full SHA for a10b138 - Browse repository at this point
Copy the full SHA a10b138View commit details
Commits on Mar 26, 2019
-
Improve the efficiency of Jenkins pipeline (apache#4391)
This PR will utilize three VMs as the edge machines, so that we can run 3 openwhisk depoyments at the same time instead of one.
Vincent authoredMar 26, 2019 Configuration menu - View commit details
-
Copy full SHA for aad27be - Browse repository at this point
Copy the full SHA aad27beView commit details
Commits on Mar 27, 2019
-
Add the test to verify the scenario when one invoker is stopped (apac…
Vincent authoredMar 27, 2019 Configuration menu - View commit details
-
Copy full SHA for eab1ba5 - Browse repository at this point
Copy the full SHA eab1ba5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 20ba52e - Browse repository at this point
Copy the full SHA 20ba52eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 29d0d5d - Browse repository at this point
Copy the full SHA 29d0d5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57f3697 - Browse repository at this point
Copy the full SHA 57f3697View commit details
Commits on Mar 28, 2019
-
Replace count suffix with counter (apache#4395)
Due to Graphite convention metric names ending with `count` are aggregated with max which is not desirable in some cases. So change the name to use a neutral suffix
Configuration menu - View commit details
-
Copy full SHA for 13f542f - Browse repository at this point
Copy the full SHA 13f542fView commit details
Commits on Mar 29, 2019
-
Fix the test report issue, so all the test result is posted (apache#4404
Vincent authoredMar 29, 2019 Configuration menu - View commit details
-
Copy full SHA for 2ec03a3 - Browse repository at this point
Copy the full SHA 2ec03a3View commit details
Commits on Mar 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0c869bb - Browse repository at this point
Copy the full SHA 0c869bbView commit details
Commits on Apr 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for af96c51 - Browse repository at this point
Copy the full SHA af96c51View commit details
Commits on Apr 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6453def - Browse repository at this point
Copy the full SHA 6453defView commit details
Commits on Apr 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bb01428 - Browse repository at this point
Copy the full SHA bb01428View commit details -
Enable couchdb persist_path in a distributed environment as well (apa…
…che#4290) * Skip clustering when nodes are already in the cluster * Enable couchdb persist_path for a distributed environment as well
Configuration menu - View commit details
-
Copy full SHA for 321b3d9 - Browse repository at this point
Copy the full SHA 321b3d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3523d41 - Browse repository at this point
Copy the full SHA 3523d41View commit details -
Configuration menu - View commit details
-
Copy full SHA for bd7d847 - Browse repository at this point
Copy the full SHA bd7d847View commit details
Commits on Apr 4, 2019
-
Add detailed error/reason to status code. (apache#4403)
Co-authored-by: Sugandha Agrawal <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bfda2d1 - Browse repository at this point
Copy the full SHA bfda2d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 30a1bd7 - Browse repository at this point
Copy the full SHA 30a1bd7View commit details
Commits on Apr 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9ef3975 - Browse repository at this point
Copy the full SHA 9ef3975View commit details
Commits on Apr 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for cbef71f - Browse repository at this point
Copy the full SHA cbef71fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9dacce4 - Browse repository at this point
Copy the full SHA 9dacce4View commit details
Commits on Apr 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0ebe748 - Browse repository at this point
Copy the full SHA 0ebe748View commit details
Commits on Apr 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 865fcf7 - Browse repository at this point
Copy the full SHA 865fcf7View commit details -
Enable attachment reads from CloudFront (apache#4392)
* Enable attachment reads from CloudFront
Configuration menu - View commit details
-
Copy full SHA for 8d41b39 - Browse repository at this point
Copy the full SHA 8d41b39View commit details
Commits on Apr 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7ecae17 - Browse repository at this point
Copy the full SHA 7ecae17View commit details
Commits on Apr 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 603b0a6 - Browse repository at this point
Copy the full SHA 603b0a6View commit details
Commits on Apr 23, 2019
-
Updating Node.js and Docker docs. (apache#4451)
* Updating Node.js and Docker docs. Adding common use-case instructions based on community feedback. * Fixing scancode issues
Configuration menu - View commit details
-
Copy full SHA for 5a40820 - Browse repository at this point
Copy the full SHA 5a40820View commit details -
Remove ibmcloud specific command (apache#4454)
Great job on the updated docs but I think we should remove the `ibmcloud` part from the commands as we should remain vendor agnostic.
Configuration menu - View commit details
-
Copy full SHA for 5a2bf81 - Browse repository at this point
Copy the full SHA 5a2bf81View commit details
Commits on Apr 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3ef1525 - Browse repository at this point
Copy the full SHA 3ef1525View commit details
Commits on May 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6982f46 - Browse repository at this point
Copy the full SHA 6982f46View commit details -
* actionloop docs * license * fixes
Configuration menu - View commit details
-
Copy full SHA for 2e36d36 - Browse repository at this point
Copy the full SHA 2e36d36View commit details
Commits on May 7, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 65bc5ff - Browse repository at this point
Copy the full SHA 65bc5ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for c68fc94 - Browse repository at this point
Copy the full SHA c68fc94View commit details
Commits on May 8, 2019
-
switch stemcells from nodejs:6 to nodejs:10 (apache#4471)
If we are switching the default runtime to nodejs:10, we should change the default stemcell configuration to match.
Configuration menu - View commit details
-
Copy full SHA for 95afbb3 - Browse repository at this point
Copy the full SHA 95afbb3View commit details -
Touch-up Action loop markdown adjusting grammar/flow (apache#4469)
* Touch-up pass on ActionLoop docs. * Touch-up pass on ActionLoop docs. * Touch-up pass on ActionLoop docs. * Touch-up pass on ActionLoop docs. * Touch-up pass on ActionLoop docs. * Touch-up pass on ActionLoop docs. * Touch-up pass on ActionLoop docs. * complete update of launcher xlate to ruby instructions * complete update of launcher xlate to ruby instructions
Configuration menu - View commit details
-
Copy full SHA for e9583fd - Browse repository at this point
Copy the full SHA e9583fdView commit details
Commits on May 9, 2019
-
ubuntu installation guide change (apache#4463)
Suggested workaround for Java related error that may appear on ubuntu 14.
Configuration menu - View commit details
-
Copy full SHA for b814c42 - Browse repository at this point
Copy the full SHA b814c42View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2bdcda - Browse repository at this point
Copy the full SHA d2bdcdaView commit details -
Adjust error handling in the Cloudant Rest Store (apache#4325)
* correct inconsistent error handling in the couchdb rest store * remove duplicate metrics by making exceptions distinguishable
Configuration menu - View commit details
-
Copy full SHA for 6f4d185 - Browse repository at this point
Copy the full SHA 6f4d185View commit details
Commits on May 13, 2019
-
Add
binding
annotation to record an action path not resolved (apach……e#4211) * Add origin path * Update document * Apply review * Update annotations and add a type decorator * Refactor code * Fix testcase * Reformat code * Refactor code * Remove unused code
Configuration menu - View commit details
-
Copy full SHA for 7a304c1 - Browse repository at this point
Copy the full SHA 7a304c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7ad4a2 - Browse repository at this point
Copy the full SHA e7ad4a2View commit details -
Additional cleanup and simplifications for the ActionLoop docs (apach…
…e#4475) * Additional cleanup and simplifications for the ActionLoop docs * Additional cleanup and simplifications for the ActionLoop docs
Configuration menu - View commit details
-
Copy full SHA for 4740d40 - Browse repository at this point
Copy the full SHA 4740d40View commit details
Commits on May 15, 2019
-
Updating runtimes to include new Node.js v12 image. (apache#4472)
* Updating runtimes to include new Node.js v12 image. - Updated runtimes manifest - Added API documentation - Minor updates to docs - Added automated test case * Fixing accidental default flag for v12
Configuration menu - View commit details
-
Copy full SHA for 4df3d09 - Browse repository at this point
Copy the full SHA 4df3d09View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae9ff6a - Browse repository at this point
Copy the full SHA ae9ff6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8650f36 - Browse repository at this point
Copy the full SHA 8650f36View commit details -
Configuration menu - View commit details
-
Copy full SHA for 541709d - Browse repository at this point
Copy the full SHA 541709dView commit details -
Update docker client version to 18.06.3 (apache#4430)
* Update docker version in the controller and guides * Update travis configuration to install docker=18.06.3 * Separate docker installation from the travis setup script * Add docker setup script * Add CoordinatedShutdown to cleanup runtime containers * add a configuration for root runc dir * Disable runc use in Jenkins environment * Add comments which explain the correlation among the version docker and runc and the type of user * Reenable Docker remote API again
Configuration menu - View commit details
-
Copy full SHA for d353d26 - Browse repository at this point
Copy the full SHA d353d26View commit details
Commits on May 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 55d975f - Browse repository at this point
Copy the full SHA 55d975fView commit details
Commits on May 21, 2019
-
Invoker agent failed to pull docker images if using docker registry n…
…ame (apache#4488) Add `pip install docker` to Dockerfile for ow-utils to fix problem pulling docker images
Configuration menu - View commit details
-
Copy full SHA for fd5d06b - Browse repository at this point
Copy the full SHA fd5d06bView commit details -
Switch to consistent indexing policy for CosmosDB (apache#4484)
* Switch to consistent indexing policy * Remove reference to Range index * Tweak indexing policy comparison to only check for included and excluded path Do not check for Index type as now there is only one which is Range for our cases * Use implicit logger * Excluding root path should be using `/*` instead of `/`
Configuration menu - View commit details
-
Copy full SHA for ed08ed1 - Browse repository at this point
Copy the full SHA ed08ed1View commit details
Commits on May 22, 2019
-
Update to Alpakka S3 Connector v1.0 release (apache#4479)
Updates to Alpakka S3 Connector v1.0.1 release. This commit also includes some fixes related to apache#4484 which were causing compatibility issues with existing setup. For existing setup indexes were still using `Hash` indexing and that caused failure while creating `IndexingPolicy` upon collection read. So added back support for `Hash` index but not using them to create new indexes now
Configuration menu - View commit details
-
Copy full SHA for 73732b4 - Browse repository at this point
Copy the full SHA 73732b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bf6e43 - Browse repository at this point
Copy the full SHA 1bf6e43View commit details
Commits on May 23, 2019
-
Track collection usage metrics for CosmosDB (apache#4490)
Record collection usage stats for CosmosDB so as to enable tracking the growth of collection in terms of storage size, document count and index size over the period of time. It also enables tracking any indexing progress if any change is done in Index configuration. Note that Count stats are currently not exposed via Azure Portal Further this commit also enables emitting verbose trace for query when in debug mode. This would simplify any query performance analysis. Fixes apache#4489
Configuration menu - View commit details
-
Copy full SHA for 2e0c562 - Browse repository at this point
Copy the full SHA 2e0c562View commit details
Commits on May 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 72c08a6 - Browse repository at this point
Copy the full SHA 72c08a6View commit details
Commits on May 28, 2019
-
Use
linesIterator
instead of String.lines (apache#4495)`lines` method is now defined as part of java.lang.String in JDK 11. So need to use `linesIterator` for right method to be picked
Configuration menu - View commit details
-
Copy full SHA for 6fdc7ce - Browse repository at this point
Copy the full SHA 6fdc7ceView commit details
Commits on May 29, 2019
-
Track Kafka client side metrics via Kamon (apache#4481)
Adds a configurable MetricsReporter to route Kafka metrics to Kamon once enabled. Set of metrics names which need to be captured needs to be explicitly configured
Configuration menu - View commit details
-
Copy full SHA for 658516e - Browse repository at this point
Copy the full SHA 658516eView commit details
Commits on May 31, 2019
-
Update rest-assured to v4.0.0 (apache#4500)
* Update to restassured v4.0 which is compatible with jdk11 * Need to initialize both truststore and keystore for ssl cert to be validated
Configuration menu - View commit details
-
Copy full SHA for aeabc35 - Browse repository at this point
Copy the full SHA aeabc35View commit details
Commits on Jun 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9d37fad - Browse repository at this point
Copy the full SHA 9d37fadView commit details
Commits on Jun 4, 2019
-
Fix a few compilation accidents (apache#4505)
* Add explicit return type on a few implicit values. Implicit values without an explicit return types are not guaranteed to work. They may or may not compile, depending on compilation order and they are going to be disallowed in future versions of Scala. This confuses IntelliJ as well. * Make Exec public since it's being used from tests. The call to Exec.isBinaryCode in ActionContainer.scala is from a different package and normally not visible at the call site. Due to scala/bug#11554 this may compile sometimes.
Configuration menu - View commit details
-
Copy full SHA for f9112ed - Browse repository at this point
Copy the full SHA f9112edView commit details
Commits on Jun 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d0f6ba5 - Browse repository at this point
Copy the full SHA d0f6ba5View commit details -
Configuration menu - View commit details
-
Copy full SHA for e88257e - Browse repository at this point
Copy the full SHA e88257eView commit details
Commits on Jun 11, 2019
-
Settle throttle before running the API GW Tests (apache#4496)
* simplify throttle code * revert to original throttle algorithm * Make the waiting time to calm down the thottle explicit
Configuration menu - View commit details
-
Copy full SHA for da61ad2 - Browse repository at this point
Copy the full SHA da61ad2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1113f2d - Browse repository at this point
Copy the full SHA 1113f2dView commit details
Commits on Jun 13, 2019
-
Update all files using Mini license header to use full ASF header (ap…
…ache#4512) * Update Ansible YAML playbooks to use full ASF header * Update remaining files to use full ASF header
Configuration menu - View commit details
-
Copy full SHA for ef8b06f - Browse repository at this point
Copy the full SHA ef8b06fView commit details
Commits on Jun 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2fa8c50 - Browse repository at this point
Copy the full SHA 2fa8c50View commit details
Commits on Jun 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7d92be7 - Browse repository at this point
Copy the full SHA 7d92be7View commit details
Commits on Jun 26, 2019
-
Log more diagnostic info when invoker / controller cluster status cha…
…nges (apache#4520) Whenever invoker or controller cluster status changes, the ShardingContainerPoolBalancer updates its state. If a new invoker registers, it is added to the load balancer status with its user memory capacity and a book-keeping semaphor is created to be used for scheduling load. If the controller cluster size changes, all invoker book-keeping semaphors are updated to reflect the user memory shard size managed by each controller. This change logs more diagnostic information when the ShardingContainerPoolBalancer updates its state due to invoker or controller cluster size changes. The additional information helps with understanding how much user memory is available on invokers and is available on the controller's shard.
Configuration menu - View commit details
-
Copy full SHA for aff144c - Browse repository at this point
Copy the full SHA aff144cView commit details -
Openwhisk in a standalone runnable jar (apache#4516)
A standalone controller, using the lean load balancer and an in memory store. * Use WhiskerControl port 3233 as default! * Allow disabling read of whisk.properties, required for test run to avoid launched server influenced by whisk.properties generated for the tests. Also ensure that a system property is only set if no existing value found. This ensures that in special case user can still supersede the value being set via explicitly providing a system property override. * Ensure that MemoryStore is only created when needed * Fetch logs via `docker logs` command on Mac * Add a OpenWhisk colored banner * Package the default runtimes.json * Include log timestamps and filter till sentinel * Use host.docker.internal as api host for Mac and Windows * Enable colored logging * Add support for --verbose flag to enable debug logging easily * Color transactionId and source also. Also support disabling color logging if needed * Expose extension point for format log message * Api host name is defined via system property * Add a set of pre flight checks to confirm if OpenWhisk can run properly on this host * Also check if docker is running * New StandaloneDockerContainerFactory which adapts as per OS * Only do pull for images having `openwhisk` prefix. For local image generally named `whisk/` no pull would be done * Add ./gradlew :core:standalone:bootRun command to run jar directly. Use Spring boot default bootRun target to run the jar. Also copy the jar to bin directory. * Make test run against standalone server * Support disabling pull of standard images all together. Required for test runs * Disable pause/resume support for non linux setups * Print the wsk and docker cli version * Update README with details on how to connect to db * Increase time allowed for server to start to 30 secs and log logs upon timeout failure * Enable verifySystemShutdown in Mesos tests
Configuration menu - View commit details
-
Copy full SHA for 2f0155f - Browse repository at this point
Copy the full SHA 2f0155fView commit details
Commits on Jun 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a882080 - Browse repository at this point
Copy the full SHA a882080View commit details -
add a throttle for number of in-flight "container starts" when using …
…cluster managed resources
Configuration menu - View commit details
-
Copy full SHA for 65f3395 - Browse repository at this point
Copy the full SHA 65f3395View commit details -
Configuration menu - View commit details
-
Copy full SHA for f6468a2 - Browse repository at this point
Copy the full SHA f6468a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03dc1a7 - Browse repository at this point
Copy the full SHA 03dc1a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d945f6 - Browse repository at this point
Copy the full SHA 6d945f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19208b8 - Browse repository at this point
Copy the full SHA 19208b8View commit details -
refactoring to isolate cluster/local communications to ContainerResou…
…rceManager impls; handle ClusterResourceError in case of reaching cluster capacity
Configuration menu - View commit details
-
Copy full SHA for 184bd55 - Browse repository at this point
Copy the full SHA 184bd55View commit details -
Configuration menu - View commit details
-
Copy full SHA for 85b0ae1 - Browse repository at this point
Copy the full SHA 85b0ae1View commit details -
Configuration menu - View commit details
-
Copy full SHA for ded9882 - Browse repository at this point
Copy the full SHA ded9882View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e4b41a - Browse repository at this point
Copy the full SHA 1e4b41aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ba7c0d - Browse repository at this point
Copy the full SHA 4ba7c0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 43e91b4 - Browse repository at this point
Copy the full SHA 43e91b4View commit details -
added metrics for resource error, rescheduled activation, number node…
…s, total memory, max memory
Configuration menu - View commit details
-
Copy full SHA for 810daa9 - Browse repository at this point
Copy the full SHA 810daa9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5a2689 - Browse repository at this point
Copy the full SHA f5a2689View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc673f2 - Browse repository at this point
Copy the full SHA bc673f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7767607 - Browse repository at this point
Copy the full SHA 7767607View commit details -
Configuration menu - View commit details
-
Copy full SHA for b64ae47 - Browse repository at this point
Copy the full SHA b64ae47View commit details -
Configuration menu - View commit details
-
Copy full SHA for 550a620 - Browse repository at this point
Copy the full SHA 550a620View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d7728d - Browse repository at this point
Copy the full SHA 5d7728dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 89455f9 - Browse repository at this point
Copy the full SHA 89455f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb38426 - Browse repository at this point
Copy the full SHA eb38426View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1885198 - Browse repository at this point
Copy the full SHA 1885198View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb9615a - Browse repository at this point
Copy the full SHA cb9615aView commit details -
Configuration menu - View commit details
-
Copy full SHA for a184417 - Browse repository at this point
Copy the full SHA a184417View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea4a08f - Browse repository at this point
Copy the full SHA ea4a08fView commit details -
Configuration menu - View commit details
-
Copy full SHA for e1e6cd9 - Browse repository at this point
Copy the full SHA e1e6cd9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ce2d35 - Browse repository at this point
Copy the full SHA 1ce2d35View commit details -
Configuration menu - View commit details
-
Copy full SHA for d5a1964 - Browse repository at this point
Copy the full SHA d5a1964View commit details -
add idleGrace duration to prevent aggressive collection of recently i…
…dle containers; only remove idle containers that match the actual host/port of selected container
Configuration menu - View commit details
-
Copy full SHA for ba580d3 - Browse repository at this point
Copy the full SHA ba580d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23e9cf0 - Browse repository at this point
Copy the full SHA 23e9cf0View commit details -
keep track of Container.lastUsed value properly to prevent early clea…
…nup of containers
Configuration menu - View commit details
-
Copy full SHA for f0faa87 - Browse repository at this point
Copy the full SHA f0faa87View commit details
Commits on Jun 28, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6d17424 - Browse repository at this point
Copy the full SHA 6d17424View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91c3eb8 - Browse repository at this point
Copy the full SHA 91c3eb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2a1844 - Browse repository at this point
Copy the full SHA a2a1844View commit details -
Configuration menu - View commit details
-
Copy full SHA for dc127ab - Browse repository at this point
Copy the full SHA dc127abView commit details