Techniques and architectures for providing continuous integration (CI) and/or continuous delivery (CD) in a data lake environment

Information

  • Patent Grant
  • 11275569
  • Patent Number
    11,275,569
  • Date Filed
    Friday, October 30, 2020
    3 years ago
  • Date Issued
    Tuesday, March 15, 2022
    2 years ago
Abstract
Mechanisms and techniques for providing continuous integration and continuous deployment (CI/CD) for data lake applications are disclosed. Assembly of code for an app is managed with a CI platform to create a container within a shared environment within which the app runs. The container is isolated from other containers and bundles software, libraries and configuration files and can communicate with other containers through defined channels. The shared environment provides a platform for running the app. The app writes to one or more tables maintained in the shared environment. Assembly of subsequent versions of code for the app is managed by the CI platform. Deployment of the assembled subsequent version of the code to the container is managed by the CI platform. Integration tests are run on the deployed subsequent version of the code with the CI platform. The subsequent version of the code replaces the app in the shared environment when integration testing is complete.
Description
TECHNICAL FIELD

Embodiments relate to techniques for managing data traffic in environments not providing native atomic transactions to provide, for example, atomic data ingestion. More particularly, embodiments relate to techniques for managing data traffic in environments not providing native atomic transactions by, for example, utilizing two or more coordinated data tables.


BACKGROUND

A “data lake” is a collection data from multiple sources and is not stored in a standardized format. Because of this, collection of the data in the data lake is not as systematic and predictable as more structured collections of data. Thus, many of the tools that are utilized to ingest data into a data lake (or other data collection structures) do not (or cannot) provide atomic writes to the final data source.





BRIEF DESCRIPTION OF THE DRAWINGS

Embodiments of the invention are illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings in which like reference numerals refer to similar elements.



FIG. 1 is one embodiment of an example Docker file that can be utilized to support providing continuous integration and continuous deployment (CI/CD) for data lake applications.



FIG. 2 is one embodiment of an example structure to create a container that can be utilized to support providing CI/CD for data lake applications.



FIG. 3 is a workflow diagram of one embodiment of deployment and running of an app in a Databricks-based CI/CD environment.



FIG. 4 is a flow diagram of one embodiment of a technique to run a job in a CI/CD environment configured according to the workflow of FIG. 3.



FIG. 5 illustrates one embodiment of a folder structure that can be utilized to support the architectures and techniques described herein.



FIG. 6 is a block diagram of one embodiment of an environment to manage data tables in a Databricks environment.



FIG. 7 is a block diagram of one embodiment of an environment to manage data tables in a Databricks environment.



FIG. 8 illustrates one embodiment of a workflow for utilizing scenario specifications to deploy and test apps in a Databricks-based environment.



FIG. 9 provides a conceptual illustration of an isolated runtime context.



FIG. 10 is a block diagram of one embodiment of an environment utilizing namespaces to provide application context.



FIG. 11 is a block diagram of one embodiment of an electronic system.





DETAILED DESCRIPTION

In the following description, numerous specific details are set forth. However, embodiments of the invention may be practiced without these specific details. In other instances, well-known structures and techniques have not been shown in detail in order not to obscure the understanding of this description.


Some embodiments described herein can be based on a Databricks-based architecture, which is a cloud platform for running data lake applications. Databricks is available from Databricks, Inc. of San Francisco, Calif., USA. Databricks can provide a unified analytics platform that can host and run any number of apps. These embodiments are sample embodiments and other configurations with other architectures and mechanisms to support data lake applications can be provided. For example, Azure Databricks available from Microsoft could be utilized.


Some data lake implementations are based on Apache Hadoop, which provides various software utilities that provide distributed processing of large data sets across multiple computing devices. Other data lake implementations can be based on Apache Spark, which provides a framework for real time data analytics using distributed computing resources. Other platforms and mechanisms can be utilized to manage data lakes (or other large collections of data). Both Hadoop and Spark are available from The Apache Software Foundation of Wakefield, Mass., USA.


Current configurations of Databricks do not provide for the ability to run Databricks outside of a managed cloud environment, which results in challenges for providing continuous integration and continuous deployment (CI/CD) for data lake applications. Providing CI/CD introduces further complexities to leverage Databricks libraries and utilities such as, for example, Databricks Connect and Databricks Command Line Interface (CLI) due to the overhead of installation and configurations. Described herein is a CI/CD framework that can function to provide a seamless experience for developing, for example, Spark-based Delta Lake applications from local developer environments including testing, production deployment and application runs. Other non-Apache based architectures and frameworks can be supported using the novel concepts described herein.


As described in greater detail below, the architectures and techniques described herein can provide “out-of-the-box” functionalities to deploy, test and run Delta Lake Spark applications on Databricks from any environment (e.g., local, on premise, cloud). Further a template can be provided to define a deployment specification of Delta Lake Spark application(s) on Databricks. Similar architectures can be utilized to provide non-Apache and/or non-Databricks embodiments having the same or similar functionality.



FIG. 1 is one embodiment of an example Docker file that can be utilized to support providing continuous integration and continuous deployment (CI/CD) for data lake applications. In an example embodiment, a Docker image (or similar container-type structure) is built to abstract away the complexity of satisfying Databricks dependencies and to provide out-of-the-box functionalities consistently across different environments. Docker is a set of platforms as a service (PaaS) components that utilized operating system (OS)-level virtualization to provide containers that are isolated from one another and bundle their own software, libraries and configuration files, but can communicate with each other through defined channels. Docker is available from Docker, Inc. of Palo Alto, Calif., USA.


In the example of FIG. 1, file 100 can include at least two parts. The first part of file 100 is dependencies 120 and the second part of the file is the deployment script 140. In one embodiment, there is a separate process to build the Docker image and publish it to an internal repository. In one embodiment, the base image used by the Docker file (e.g., docker.amz.relateiq.com/cbase/base20190722) contains root certificates to allow the Databricks CLI and application program interfaces (APIs) to be executed through, for example, HyperText Transfer Protocol Secure (HTTPS). The Docker file can install Databricks CLI, copy necessary scripts and execute the deployment script when a container based on its image is run.



FIG. 2 is one embodiment of an example structure to create a container that can be utilized to support providing CI/CD for data lake applications. Command structure 200 is a Databricks example implementation; however, non-Databricks variations can also be supported.


In one embodiment, Build Type 210 (BUILD_TYPE) indicates the type of build to run (e.g., PR, STAGING, PERF, PROD). Deployment environment 220 (DEPLOY_ENV) indicates the target environment to which the container will be deployed (e.g., STAGING, PERF, PROD). In one embodiment, cluster profile 230 (AWS_INSTANCE_PROFILE_ARN) indicates the cloud role assigned to the runtime cluster. The example of FIG. 2 is based on Amazon Web Services (AWS) available from Amazon, Inc. of Seattle, Wash., USA; however, other configurations can also be utilized.


In one embodiment, Databricks Host 240 (DATABRICKS_HOST) indicates the Uniform Resource Locator (URL), or other indicator, for the Databricks host. Databricks Token 250 (DATABRICKS_TOKEN) indicates the Databricks access token that will be used by the Databricks CLI or Databricks API. Image name 260 (IMAGE_NAME) is the Docker image name in the internal Docker repository.



FIG. 3 is a workflow diagram of one embodiment of deployment and running of an app in a Databricks-based CI/CD environment. The example of FIG. 3 is based on five underlying components or elements. Alternate embodiments can have more and/or different components.


In one embodiment, Databricks 300 can provide the environment in which the app can run. As mentioned above, Databricks is an open source computing framework that can provide an operating environment in a data lake architecture. Alternative environments can also be supported. In one embodiment, CI platform 305 can provide a build management and CI platform (e.g., server) to manage the workflow of FIG. 3. In one embodiment, CI platform 305 can be provided by TeamCity, which is available from JetBrains s.r.o. of Prague, Czech Republic. Alternative platforms can also be utilized.


In one embodiment, version platform 310 can provide version control functionality for managing changes in source code or other types of files. In one embodiment, version platform 310 can be, for example, Git available from GitHub of San Francisco, Calif., USA. Other platforms can be utilized to provide version control functionality. In one embodiment, build platform 315 can provide continuous compilation, testing and deployment functionality. Build platform 315 can be, for example, sbt available from Lightbend, Inc. of San Francisco, Calif., USA. Alternative platforms, for example, Maven or Ant, can be utilized to provide continuous deployment functionality.


In one embodiment, Docker Image Repository 320 functions to store or host any number of Docker images. Docker Image Repository 320 can be, for example, a virtual machine (VM) that functions as the repository. In other example embodiments, Docker Image Repository 320 can be a Docker Hub repository.


In one embodiment, a root folder (or other structure) can be set up to contain all deployment specification files grouped by environment. An environment can be, for example, development, staging, performance, production, etc. The deployment script can be used to read files from a specified folder of an environment and be used to create or update job operations for each file. One example folder structure is described in greater detail below.


In one embodiment, CI platform 305 can pull code for the app to be deployed (340) from version platform 310. Version platform 310 returns the code (345). CI platform 305 causes the code to be assembled (350) by build platform 315, which results in, for example, a Java Archive (jar) file (355). Other programming languages and/or coding structures can also be utilized.


CI platform 305 also functions to pull a container image (360) from Docker Image Repository 320 and utilizes the received image (365) to create a container (370). The container can be utilized to deploy the jar file (375) to Databricks environment 300, run integration tests (380) in Databricks environment 300, run deploy job script (385) in Databricks environment 300, and/or run the app (390) in Databricks environment 300.



FIG. 4 is a flow diagram of one embodiment of a technique to run a job in a CI/CD environment configured according to the workflow of FIG. 3. In one embodiment, the technique of FIG. 4 can be provided by a CI platform (e.g., 305 in FIG. 3). In alternate embodiments, one or more other components can provide the functionality described.


In one embodiment, all job definition files are read, 400. For each job, if the job has been created in the Databricks environment (as described with respect to FIG. 3), 410, the job can be updated, 430. If the job has not been created in the Databricks environment, 410, the job can be created, 420.


After the job has been created (420) or updated (430), the run list is checked to determine if the job is included, 440. If the job is on the run list, 440, the job is run, 450. If the job is not on the run list, 440, the process can terminate. The process of FIG. 4 can be repeated as necessary.



FIG. 5 illustrates one embodiment of a folder structure that can be utilized to support the architectures and techniques described herein. The example of FIG. 5 is just one structure that can be utilized. In one embodiment, applications provide a deployment specification to instruct the deployment script how to deploy the app in a Databricks environment (e.g., 300 in FIG. 3).


In one embodiment, within jobs folder (“databricks-jobs”) 500, one or subfolders (e.g., 520, 540) can be utilized to further organize files related to providing a Databricks-based CI/CD environment. The example files (e.g., 530, 550) illustrated in FIG. 5 are just one example collection of files that can be utilized to provide the functionality described herein.


As discussed above, Databricks is a cloud platform for running, for example, Delta Lake Spark applications. However, in Databricks environments (or similar platforms), there are many challenges to applying and automating integration testing. For example, it is difficult to build an isolated application runtime context that may be required by each integration test suite execution on a shared cloud-based environment. Delta Lake Spark applications, for example, are richly integrated with external services including, for example, Apache Kafka for stream processing, Delta Lake Tables for database (e.g., SQL) operations, Apache Zookeeper, etc. Further, given that these applications provide a dedicated, relatively small piece of functionality as a micro-service, then number of applications may grow rapidly.


Without a good mechanism to effectively organize the applications, deploy testbeds and develop test scenarios, the resulting applications can be vulnerable to bugs, defects and errors. Various concepts and designs are described to overcome these challenges and provide a robust quality assurance mechanism for applications on a shared cloud platform environment.


At a high level, Delta Lake Spark applications can be utilized to provide three types of stream processing: 1) data stream ingestion with associated writes to multiple tables (e.g., data tables); 2) change data capture (CDC) stream management (aka, mutations) for data sources and merging the mutations with the multiple tables; and 3) data privacy management (e.g., General Data Protection Regulation, or GDPR, processing) to manage data retention and delete functionality.


As described in greater detail below, an organizational concept referred to herein as a “scenario” can be utilized to effectively organize applications and associated integration tests. In general, a scenario is a group of relevant applications that collectively fulfill certain kinds of functionalities. In various embodiments, test cases are developed per scenario.


In one embodiment, each scenario is defined by a scenario specification that includes three components: 1) metadata that describes the scenario; 2) a list of applications needed to perform the relevant functionalities of the scenario; and 3) a list of integration tests to verify the expected behaviors of the applications in the scenario.


As illustrated in the examples below, in the example embodiments, each scenario specification is self-contained and only addresses one application function, the applications and tests are only relevant to that application function, and one application may appear across multiple scenario specifications.


As one example, an EngagementIDMutation scenario can be defined as:














{


 ″name″: ″EngagementIdMutation″,


 ″description″:″Merge mutation record into engagement data table″,


 ″applications″: [


  ″CreateDatabaseAndTables″,


  ″EngagementIngestion″,


  ″MutationRecordIngestion″,


  ″IDMutationProcess″


 ],


″tests″: [


 ″com.salesforceiq.sas.engagement.it.


EngagementIdMutationIntegrationTest.scala″


 ]


}









As another example, a NameMutation scenario can be defined as:














{


 ″name″: ″NameMutation″,


 ″description″:″Merge mutation record into engagement data table″,


 ″applications″: [


  ″CreateDatabaseAndTables″,


  ″EngagementIngestion″,


  ″MutationRecordIngestion″,


  ″NameMutationProcess″


 ],


″tests″: [


 ″com.salesforceiq.sas.engagement.it.NameMutationIntegrationTest.scala″


 ]


}










FIG. 6 is a block diagram of one embodiment of an environment to manage data tables in a Databricks environment. In the example of FIG. 6, structured streaming 620 can provide a platform to utilize one or more scenario specifications to manage apps (e.g., 630, 650, 660) in Databricks environment 600, the flow of which is described in greater detail in FIG. 8.


In one embodiment, engagement app(s) 630 can function to manage the ingestion of data into a data lake or other environment. As part of this process, engagement app(s) 630 can write to data table(s) 640. CDC process app(s) 650 can function to mange mutations (or merging) of data in data table(s) 640. GDPR process app(s) 660 can function to manage deletions of data from data table(s) 640.



FIG. 7 is a block diagram of one embodiment of an environment to manage data tables in a Databricks environment. In the example of FIG. 7, structured streaming platforms 720 and 770 can provide a platform to utilize one or more scenario specifications to manage apps (e.g., 730, 750, 760) in Databricks environment 700, the flow of which is described in greater detail in FIG. 8.


In one embodiment, engagement ingestion app(s) 730 can function to manage the ingestion of data into a data lake or other environment. As part of this process, engagement app(s) 730 can write to engagement data table 740 and to name data table 745. Engagement ID Mutation app(s) 750 can function to manage mutations (or merging) of data in engagement data table 740. Similarly, Name Mutation app(s) 760 can function to manage mutations (or merging) of names in name data table 745.



FIG. 8 illustrates one embodiment of a workflow for utilizing scenario specifications to deploy and test apps in a Databricks-based environment. In the example workflow of FIG. 8, logic within container 805 can utilize one or more scenario specifications 800 to deploy and test apps within Databricks environment 810 and can publish the test data, for example, to data environment 815.


In one embodiment, logic within container 805 can read one or more scenario specifications, 800 and 825. In some example embodiments, the scenario specifications can be in the form of JavaScript Object Notation (JSON) files and can be organized in directories as illustrated in FIG. 5. Other file types and/or other structures can also be supported.


Retrieved specifications (825) can be utilized to create a cluster (830) in Databricks environment 810. A cluster ID is returned (835) from Databricks environment 810 to container 805. The logic in container 805 can create a namespace string, 840 to create scoped objects. In one embodiment, a namespace is a globally unique string to define the scope of an application runtime context. Use of the namespace string and benefits from its use are described in greater detail below with respect to FIGS. 9 and 10.


The namespace string can be utilized to deploy one or more apps (845) to Databricks environment 810 by passing the cluster ID and the namespace to build a private testbed. The logic in container 805 can then cause one or more database tables to be created (850) in Databricks environment 810.


After the apps have been deployed, logic within container 805 can run tests (806) with integration test platform 855. The resulting test data can be published (865) to Kafka environment 815, or a similar data streaming environment. In one embodiment, integration test platform 855 can provide one or more query tables (870) to Databricks environment 810.


The query tables can be utilized for testing within Databricks environment 810 and test results can be returned (875) to integration test platform 855. Clean-up operations can then be performed (880) in response to integration test platform 855, and clean-up operations can be performed (885) in response to logic in container 810. Upon completion, the cluster can be terminated, 890.


In one embodiment, each integration test execution (with associated scenario specification) is run in a private testbed in which: 1) a new cluster is created as a separate runtime environment, and 2) scoped objects with a given namespace are created by applications (and their dependent services), which can be considered Isolated Application Runtime Context (IARC).


As used herein, application context is an abstraction of an application runtime as a component to build an isolated runtime context. In one embodiment, it could be a SCALA class. In one embodiment, the namespace and application properties can be used as inputs to generate scoped properties with which dependent services can use to create scoped objects. Examples of dependent services include Apache Kafka, Zookeeper, AWS S3, Sumo Logic, Datadog.



FIG. 9 provides a conceptual illustration of an isolated runtime context. As described above, namespace 900 and properties 910 can be utilized to create application context 920. In one example embodiment, application context 920 can use the following rules to generate scoped properties 930.














Property Key
Value
Scoped Value







Kafka.topics
Topic1,Topic2
{namespace}-topic1,{namespace}-




topic2


Database.name
sas
{namespace}_sas


S3.bucket
Bucket
Bucket/namespace


Application_name
appName
{namespace}_appName









The first column (“Property Key”) is the set of property keys to be consumed by dependency services, second column (“Value”) contains sample values for those property keys, and the third column (“Scoped Value”) indicates the resulting scoped values. Scoped properties 930 can then be utilized to create one or more dependent services (e.g., 940, 942, 944), each of which can have corresponding scoped objects (e.g., 950, 952, 954).



FIG. 10 is a block diagram of one embodiment of an environment utilizing namespaces to provide application context. In various embodiments, tests create application context object 1020 with the same namespace in order to refer to the correct isolated application runtime context, 1050, running any number of applications, 1060. In the example of FIG. 10, deployment scripts (e.g., 1010) and/or integration tests (3.g., 1040) can be run in the same container environment (e.g., 1000) and share the same application context object (e.g., 1020).


The techniques and architectures described herein can provide separation of concerns in terms of deployment and integration testing for Delta Lake Spark (and other types of) application in a shared environment (e.g., Databricks). In some embodiments, with the design of a scenario, applications and tests can be organized, and test cases can be developed within a scenario. In some embodiments, utilizing scenario specifications, scenario-based deployment and integration testing can be achieved. In some embodiments, utilizing namespaces and application context, an isolated application runtime context can be built for each integration testing execution in a shared (e.g., Databricks) environment.



FIG. 11 is a block diagram of one embodiment of an electronic system. The electronic system illustrated in FIG. 11 is intended to represent a range of electronic systems (either wired or wireless) including, for example, desktop computer systems, laptop computer systems, cellular telephones, smartphones, tablets, wearable computing devices, etc. Alternative electronic systems may include more, fewer and/or different components.


Electronic system 1100 can provide the functionality of one or more of the platforms and/or environments described above (e.g., a Databricks environment, a CI platform). Further, electronic system 1100 can provide the data lake functionality and/or ingestion functionality discussed above. In alternative embodiments, different numbers of electronic systems can be interconnected (e.g., via networks and/or direct connection) to provide increased bandwidth and/or resources.


In one embodiment, electronic system 1100 includes bus 1105 or other communication device to communicate information, and processor 1110 coupled to bus 1105 that may process information. While electronic system 1100 is illustrated with a single processor, electronic system 1100 may include multiple processors and/or co-processors and each processor can include multiple processor cores. Electronic system 1100 further may include random access memory (RAM) or other dynamic storage device 1120 (referred to as main memory), coupled to bus 1105 and may store information and instructions that may be executed by processor 1110. Main memory 1120 may also be used to store temporary variables or other intermediate information during execution of instructions by processor 1110.


Electronic system 1100 may also include read only memory (ROM) and/or other static storage device 1130 coupled to bus 1105 that may store static information and instructions for processor 1110. Data storage device 1140 may be coupled to bus 1105 to store information and instructions. Data storage device 1140 such as a magnetic disk or optical disc and corresponding drive may be coupled to electronic system 1100. Instructions stored on data storage device 1140 can be executed by processor 1110 to provide some or all of the functionality described herein.


Electronic system 1100 may also be coupled via bus 1105 to display device 1150, such as a liquid crystal display (LCD) or other display device, to display information to a user. Alphanumeric input device 1160, including alphanumeric and other keys, may be coupled to bus 1105 to communicate information and command selections to processor 1110. Another type of user input device is cursor control 1170, such as a mouse, a trackball, or cursor direction keys to communicate direction information and command selections to processor 1110 and to control cursor movement on display 1150.


Electronic system 1100 further may include network interface(s) 1180 to provide access to a network, such as a local area network. Network interface(s) 1180 may include, for example, a wireless network interface having antenna 1185, which may represent one or more antenna(e). Network interface(s) 1180 may also include, for example, a wired network interface to communicate with remote devices via network cable 1187, which may be, for example, an Ethernet cable, a coaxial cable, a fiber optic cable, a serial cable, or a parallel cable.


In one embodiment, network interface(s) 1180 may provide access to a local area network, for example, by conforming to IEEE 802.11b and/or IEEE 802.11g standards, and/or the wireless network interface may provide access to a personal area network, for example, by conforming to Bluetooth standards. Other wireless network interfaces and/or protocols can also be supported.


IEEE 802.11b corresponds to IEEE Std. 802.11b-1999 entitled “Local and Metropolitan Area Networks, Part 11: Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications: Higher-Speed Physical Layer Extension in the 2.4 GHz Band,” approved Sep. 16, 1999 as well as related documents. IEEE 802.11g corresponds to IEEE Std. 802.11g-2003 entitled “Local and Metropolitan Area Networks, Part 11: Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications, Amendment 4: Further Higher Rate Extension in the 2.4 GHz Band,” approved Jun. 27, 2003 as well as related documents. Bluetooth protocols are described in “Specification of the Bluetooth System: Core, Version 1.1,” published Feb. 22, 2001 by the Bluetooth Special Interest Group, Inc. Associated as well as previous or subsequent versions of the Bluetooth standard may also be supported.


In addition to, or instead of, communication via wireless LAN standards, network interface(s) 1180 may provide wireless communications using, for example, Time Division, Multiple Access (TDMA) protocols, Global System for Mobile Communications (GSM) protocols, Code Division, Multiple Access (CDMA) protocols, and/or any other type of wireless communications protocol.


Reference in the specification to “one embodiment” or “an embodiment” means that a particular feature, structure, or characteristic described in connection with the embodiment is included in at least one embodiment of the invention. The appearances of the phrase “in one embodiment” in various places in the specification are not necessarily all referring to the same embodiment.


While the invention has been described in terms of several embodiments, those skilled in the art will recognize that the invention is not limited to the embodiments described, but can be practiced with modification and alteration within the spirit and scope of the appended claims. The description is thus to be regarded as illustrative instead of limiting.

Claims
  • 1. A system comprising: a constant integration (CI) platform to manage assembly of code for an app, the CI platform to create a container within a shared environment within which the app runs, wherein the container is isolated from other containers and bundles software, libraries and configuration files and can communicate with other containers through defined channels, and the shared environment provides a platform for running the app;the app to write to one or more tables maintained in the shared environment;wherein the CI platform functions to manage assembly of subsequent versions of code for the app, assembly of the subsequent version of code and to deploy the assembled subsequent version of the code to the container, the CI platform further to run integration tests on the deployed subsequent version of the code, and when integration testing is complete, cause the subsequent version of the code to replace the app in the shared environment.
  • 2. The system of claim 1, wherein the CI platform utilizes one or more scenario specifications to run the integration tests, wherein each of the one or more scenario specifications comprise: metadata that describes a scenario;a list of applications to perform the relevant functionalities of the scenario; anda list of integration tests to verify expected behaviors of the applications in the scenario.
  • 3. The system of claim 1, wherein the app is deployed to an isolated runtime context based on a namespace corresponding to an application context and properties corresponding to the application context, the application context to be utilized to develop scoped properties.
  • 4. The system of claim 3, wherein one or more dependent services each having one or more scoped objects function within the scoped properties.
  • 5. The system of claim 3 wherein the application context is utilized to generate the integration tests and to generate a deployment script that utilizes the namespace to limit app scope.
  • 6. The system of claim 1 further comprising: the constant integration (CI) platform to manage assembly of code for a second app to run in the container;the second app to write to the one or more tables maintained in the shared environment;wherein the CI platform functions to manage assembly of subsequent versions of code for the second app, assembly of the subsequent version of code for the second app and to deploy the assembled subsequent version of the code for the second app to the container, the CI platform further to run integration tests on the deployed subsequent version of the code for the second app, and when integration testing is complete, cause the subsequent version of the code for the second app to replace the second app in the shared environment.
  • 7. A non-transitory computer-readable medium having stored thereon instructions that, when executed by one or more processors, are configurable to cause the one or more processors to: manage assembly of code for an app with a constant integration (CI) platform to create a container within a shared environment within which the app runs, wherein the container is isolated from other containers and bundles software, libraries and configuration files and can communicate with other containers through defined channels, and the shared environment provides a platform for running the app;run the app to write to one or more tables maintained in the shared environment;manage assembly, with the CI platform, of subsequent versions of code for the app;manage assembly, with the CI platform, deployment of the assembled subsequent version of the code to the container;run, with the CI platform, integration tests on the deployed subsequent version of the code; andcause, with the CI platform, the subsequent version of the code to replace the app in the shared environment when integration testing is complete.
  • 8. The non-transitory computer-readable medium of claim 7, wherein the CI platform utilizes one or more scenario specifications to run the integration tests, wherein each of the one or more scenario specifications comprise: metadata that describes a scenario;a list of applications to perform the relevant functionalities of the scenario; anda list of integration tests to verify expected behaviors of the applications in the scenario.
  • 9. The non-transitory computer-readable medium of claim 7, wherein the app is deployed to an isolated runtime context based on a namespace corresponding to an application context and properties corresponding to the application context, the application context to be utilized to develop scoped properties.
  • 10. The non-transitory computer-readable medium of claim 9, wherein one or more dependent services each having one or more scoped objects function within the scoped properties.
  • 11. The non-transitory computer-readable medium of claim 9 wherein the application context is utilized to generate the integration tests and to generate a deployment script that utilizes the namespace to limit app scope.
  • 12. The non-transitory computer-readable medium of claim 7 further comprising instructions that, when executed by the one or more processors, are configurable to cause the one or more processors to: manage assembly of code for a second app to run in the container with the constant integration (CI) platform to;run the second app to write to the one or more tables maintained in the shared environment;manage assembly, with the CI platform, of subsequent versions of code for the second app;manage assembly, with the CI platform, deployment of the assembled subsequent version of the code to the container;run, with the CI platform, integration tests on the deployed subsequent version of the code; andcause, with the CI platform, the subsequent version of the code to replace the second app in the shared environment when integration testing is complete.
  • 13. A method comprising: managing assembly of code for an app with a constant integration (CI) platform to create a container within a shared environment within which the app runs, wherein the container is isolated from other containers and bundles software, libraries and configuration files and can communicate with other containers through defined channels, and the shared environment provides a platform for running the app;running the app to write to one or more tables maintained in the shared environment;managing assembly, with the CI platform, of subsequent versions of code for the app;managing assembly, with the CI platform, deployment of the assembled subsequent version of the code to the container;running, with the CI platform, integration tests on the deployed subsequent version of the code; andcausing, with the CI platform, the subsequent version of the code to replace the app in the shared environment when integration testing is complete.
  • 14. The method of claim 13, wherein the CI platform utilizes one or more scenario specifications to run the integration tests, wherein each of the one or more scenario specifications comprise: metadata that describes a scenario;a list of applications to perform the relevant functionalities of the scenario; anda list of integration tests to verify expected behaviors of the applications in the scenario.
  • 15. The method of claim 13, wherein the app is deployed to an isolated runtime context based on a namespace corresponding to an application context and properties corresponding to the application context, the application context to be utilized to develop scoped properties.
  • 16. The method of claim 15, wherein one or more dependent services each having one or more scoped objects function within the scoped properties.
  • 17. The method of claim 15 wherein the application context is utilized to generate the integration tests and to generate a deployment script that utilizes the namespace to limit app scope.
  • 18. The method of claim 13 further comprising: managing assembly of code for a second app to run in the container with the constant integration (CI) platform to;running the second app to write to the one or more tables maintained in the shared environment;managing assembly, with the CI platform, of subsequent versions of code for the second app;managing assembly, with the CI platform, deployment of the assembled subsequent version of the code to the container;running, with the CI platform, integration tests on the deployed subsequent version of the code; andcausing, with the CI platform, the subsequent version of the code to replace the second app in the shared environment when integration testing is complete.
US Referenced Citations (121)
Number Name Date Kind
5577188 Zhu Nov 1996 A
5608872 Schwartz et al. Mar 1997 A
5649104 Carleton et al. Jul 1997 A
5715450 Ambrose et al. Feb 1998 A
5761419 Schwartz et al. Jun 1998 A
5819038 Carleton et al. Oct 1998 A
5821937 Tonelli et al. Oct 1998 A
5831610 Tonelli et al. Nov 1998 A
5873096 Lim et al. Feb 1999 A
5918159 Fomukong et al. Jun 1999 A
5963953 Cram et al. Oct 1999 A
6092083 Brodersen et al. Jul 2000 A
6169534 Raffel et al. Jan 2001 B1
6178425 Brodersen et al. Jan 2001 B1
6189011 Lim et al. Feb 2001 B1
6216135 Brodersen et al. Apr 2001 B1
6233617 Rothwein et al. May 2001 B1
6266669 Brodersen et al. Jul 2001 B1
6295530 Ritchie et al. Sep 2001 B1
6324568 Diec Nov 2001 B1
6324693 Brodersen et al. Nov 2001 B1
6336137 Lee et al. Jan 2002 B1
D454139 Feldcamp Mar 2002 S
6367077 Brodersen et al. Apr 2002 B1
6393605 Loomans May 2002 B1
6405220 Brodersen et al. Jun 2002 B1
6434550 Warner et al. Aug 2002 B1
6446089 Brodersen et al. Sep 2002 B1
6535909 Rust Mar 2003 B1
6549908 Loomans Apr 2003 B1
6553563 Ambrose et al. Apr 2003 B2
6560461 Fomukong et al. May 2003 B1
6574635 Stauber et al. Jun 2003 B2
6577726 Huang et al. Jun 2003 B1
6601087 Zhu et al. Jul 2003 B1
6604117 Lim et al. Aug 2003 B2
6604128 Diec Aug 2003 B2
6609150 Lee et al. Aug 2003 B2
6621834 Scherpbier et al. Sep 2003 B1
6654032 Zhu et al. Nov 2003 B1
6665648 Brodersen et al. Dec 2003 B2
6665655 Warner et al. Dec 2003 B1
6684438 Brodersen et al. Feb 2004 B2
6711565 Subramaniam et al. Mar 2004 B1
6724399 Katchour et al. Apr 2004 B1
6728702 Subramaniam et al. Apr 2004 B1
6728960 Loomans Apr 2004 B1
6732095 Warshavsky et al. May 2004 B1
6732100 Brodersen et al. May 2004 B1
6732111 Brodersen et al. May 2004 B2
6754681 Brodersen et al. Jun 2004 B2
6763351 Subramaniam et al. Jul 2004 B1
6763501 Zhu et al. Jul 2004 B1
6768904 Kim Jul 2004 B2
6782383 Subramaniam et al. Aug 2004 B2
6804330 Jones et al. Oct 2004 B1
6826565 Ritchie et al. Nov 2004 B2
6826582 Chatterjee et al. Nov 2004 B1
6826745 Coker et al. Nov 2004 B2
6829655 Huang et al. Dec 2004 B1
6842748 Warner et al. Jan 2005 B1
6850895 Brodersen et al. Feb 2005 B2
6850949 Warner et al. Feb 2005 B2
7289976 Kihneman et al. Oct 2007 B2
7340411 Cook Mar 2008 B2
7620655 Larsson et al. Nov 2009 B2
20010044791 Richter et al. Nov 2001 A1
20020022986 Coker et al. Feb 2002 A1
20020029161 Brodersen et al. Mar 2002 A1
20020029376 Ambrose et al. Mar 2002 A1
20020035577 Brodersen et al. Mar 2002 A1
20020042264 Kim Apr 2002 A1
20020042843 Diec Apr 2002 A1
20020072951 Lee et al. Jun 2002 A1
20020082892 Raffel et al. Jun 2002 A1
20020129352 Brodersen et al. Sep 2002 A1
20020140731 Subramaniam et al. Oct 2002 A1
20020143997 Huang et al. Oct 2002 A1
20020152102 Brodersen et al. Oct 2002 A1
20020161734 Stauber et al. Oct 2002 A1
20020162090 Parnell et al. Oct 2002 A1
20020165742 Robins Nov 2002 A1
20030004971 Gong et al. Jan 2003 A1
20030018705 Chen et al. Jan 2003 A1
20030018830 Chen et al. Jan 2003 A1
20030066031 Laane Apr 2003 A1
20030066032 Ramachadran et al. Apr 2003 A1
20030069936 Warner et al. Apr 2003 A1
20030070000 Coker et al. Apr 2003 A1
20030070004 Mukundan et al. Apr 2003 A1
20030070005 Mukundan et al. Apr 2003 A1
20030074418 Coker Apr 2003 A1
20030088545 Subramaniam et al. May 2003 A1
20030120675 Stauber et al. Jun 2003 A1
20030151633 George et al. Aug 2003 A1
20030159136 Huang et al. Aug 2003 A1
20030187921 Diec Oct 2003 A1
20030189600 Gune et al. Oct 2003 A1
20030191743 Brodersen et al. Oct 2003 A1
20030204427 Gune et al. Oct 2003 A1
20030206192 Chen et al. Nov 2003 A1
20030225730 Warner et al. Dec 2003 A1
20040001092 Rothwein et al. Jan 2004 A1
20040010489 Rio Jan 2004 A1
20040015981 Coker et al. Jan 2004 A1
20040027388 Berg et al. Feb 2004 A1
20040128001 Levin et al. Jul 2004 A1
20040186860 Lee et al. Sep 2004 A1
20040193510 Catahan, Jr. et al. Sep 2004 A1
20040199489 Barnes-Leon et al. Oct 2004 A1
20040199536 Barnes-Leon et al. Oct 2004 A1
20040199543 Braud et al. Oct 2004 A1
20040249854 Barnes-Leon et al. Dec 2004 A1
20040260534 Pak et al. Dec 2004 A1
20040260659 Chan et al. Dec 2004 A1
20040268299 Lei et al. Dec 2004 A1
20050050555 Exley et al. Mar 2005 A1
20050091098 Brodersen et al. Apr 2005 A1
20090177744 Marlow et al. Jul 2009 A1
20170169370 Cornilescu Jun 2017 A1
20190294536 Avisror Sep 2019 A1