Konveyor Tackle Data Gravity Insights
Project description
Tackle Data Gravity Insights
Tackle Data Gravity Insights is a new way to gain insights into your monolithic application code so that you can better refactor it into domain driven microservices. It takes a wholistic approach to application modernization and refactoring by triangulating between code, and, data, and transactional boundaries.
Application modernization is a complex topic with refactoring being the most complicated undertaking. Current tools only look at the application source code or only at the runtime traces when refactoring. This, however, yields a myopic view that doesn't take into account data relationships and transactional scopes. This project hopes to join the three views of application, data, and transactions into a 3D view of the all of the application relationships so that you can easily discover application domains of interest and refactor them into microservices. Accordingly, DGI consists of three key components:
1. Call-/Control-/Data-dependency Analysis (code2graph): This is a source code analysis component that extracts various static code interaction features pertating to object/dataflow depdendecies and thir respective lifecycle information. It presents this information in a graphical format with Classes as nodes and their dataflow, call-return, and heap-dependency interactions edges. For more details, see here.
2. Schema: This component of DGI infers the schema of the underlying databases used in the application. It presents this information in a graphical format with database tables and columns as nodes and their relationships (e.g., foreign key, etc.) as edges. For more details, see docs/Schema.md.
3. Transactions to graph (tx2graph): This component of DGI leverages Tackle-DiVA to perform a data-centric application analysis. It imports a set of target application source files (*.java/xml) and provides following analysis result files. It presents this information in a graphical format with database tables and classes as nodes and their transcational relationships as edges. For more details, see here.
Installation
Tackle Data Gravity Insights is written in Python and can be installed using the Python package manager pip
.
pip install tackle-dgi
Usage
You will need an instance of Neo4j to store the graphs that dgi
creates. You can start one up in a docker container and set an environment variable to let dgi
know where to find it.
docker run -d --name neo4j \
-p 7474:7474 \
-p 7687:7687 \
-e NEO4J_AUTH="neo4j/test" \
neo4j
export NEO4J_BOLT_URL="bolt://neo4j:test@localhost:7687"
You can now use the dgi
command to load information about your application into the graph database.
$ gdi --help
Usage: dgi [OPTIONS] COMMAND [ARGS]...
Tackle Data Gravity Insights
Options:
-a, --abstraction TEXT The level of abstraction to use when
building the graph. Valid options are:
class, method, or full. [default: class]
-q, --quiet / -v, --verbose Be more quiet/verbose [default: verbose]
-c, --clear / -dnc, --dont-clear
Clear (or don't clear) graph before loading
[default: clear]
--help Show this message and exit.
Commands:
c2g This command loads Code dependencies into the graph
s2g This command parses SQL schema DLL into a graph
tx2g This command loads DiVA database transactions into a graph
Contributing
To contribute to this project you will need to set up your development environment and set up some files. These are the steps:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tackle-dgi-0.0.3.tar.gz
.
File metadata
- Download URL: tackle-dgi-0.0.3.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 989e8c0faa8a92e132c563cc3171e6675ed82f5f3f7e2171f16e83393f8439cc |
|
MD5 | d8f74558571858c4abff4c5e5fdbbfe2 |
|
BLAKE2b-256 | 267ccebdb3928aca0d6ecb8902a8f44c46de17f04f607cc46476cedbbe1a22be |
File details
Details for the file tackle_dgi-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: tackle_dgi-0.0.3-py3-none-any.whl
- Upload date:
- Size: 37.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f212a3db4ed8bb582b8b983192ced019750b244bc0f0f35278ba55c1a48f4146 |
|
MD5 | 0d6755384e219c987cfb2b2683527d4b |
|
BLAKE2b-256 | ae2f927111fc094243832a76847d7f1c5a9127c9e3fa01f50fdbe9712d6b6a29 |