martinweiler commented on code in PR #3672:
URL: 
https://github.com/apache/incubator-kie-kogito-runtimes/pull/3672#discussion_r1777655774


##########
addons/common/flyway/README.md:
##########
@@ -0,0 +1,152 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+  -->
+
+# KIE Flyway Add-On
+
+## Goal
+
+This add-on is a utility intended to help bootstrapping the application Data 
Base when running in a `compact` setup,
+when more than one`extension` or `add-on` that require persistence co-exist in 
the same application.
+
+This add-on will be using a managed Flyway to initialize and upgrade each 
`extension`/`add-on` DB 
+instead of using the Platform (Quarkus/Springboot) specific Flyway 
integration, by this we achieve:
+* Simple setups in the `application.properties`. No need to configure Flyway 
unless the customer requires for its 
+    own needs.
+* Component-Based DB Management: the DB management (via Flyway `migrations`) 
will be executed independently by component 
+   (not globally), keeping a separate index for each component to avoid 
collisions and conflict between different component versions.
+* Multi DB Support: a single module can provide SQL scripts for different DB 
vendors (and default as a fallback) that
+    will be loaded depending on the application configuration
+
+> *IMPORTANT*: The usage of this add-on should be reserved only for 
development/test/examples purposes and not it is not recommended
+> using it in productive environments.

Review Comment:
   `and it is not recommended` (duplicate not)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to