Skip to content
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

Modify the Node structure so as to configure all remote server #399

Open
kimhanbeom opened this issue Jan 14, 2025 · 1 comment · May be fixed by #401
Open

Modify the Node structure so as to configure all remote server #399

kimhanbeom opened this issue Jan 14, 2025 · 1 comment · May be fixed by #401

Comments

@kimhanbeom
Copy link
Contributor

kimhanbeom commented Jan 14, 2025

Since the TI Container has been modified to support remote configuration, we should modify the review-database to manage that module as a node.

  • Modify node struct and its associated code.
  • Add migration function for changed node struct.
@kimhanbeom kimhanbeom changed the title Modify the node structure to support Mitre infomation module Modify the node structure so as to configure another server remotely like Giganto Jan 14, 2025
kimhanbeom added a commit to kimhanbeom/review-database that referenced this issue Jan 23, 2025
- Modify the node structure so as to configure "TI Container" remotely
  like "Datalake".
  - Rename `Giganto` to `ConnectionlessAgent`.
  - Add a `ti_container` field of type `ConnectionlessAgent` within
    `node`.
  - Modify migration function `migrate_0_29_node`.
  - Add migration function `migrate_0_35_node`.

Close: petabi#399
@kimhanbeom kimhanbeom linked a pull request Jan 23, 2025 that will close this issue
kimhanbeom added a commit to kimhanbeom/review-database that referenced this issue Jan 23, 2025
- Modify the node structure so as to configure "TI Container" remotely
  like "Datalake".
  - Rename `Giganto` to `ConnectionlessAgent`.
  - Add a `ti_container` field of type `ConnectionlessAgent` within
    `node`.
  - Modify migration function `migrate_0_29_node`.
  - Add migration function `migrate_0_35_node`.

Close: petabi#399
@kimhanbeom kimhanbeom changed the title Modify the node structure so as to configure another server remotely like Giganto Modify the node structure so as to configure TI Container remotely like Giganto Jan 25, 2025
@kimhanbeom kimhanbeom changed the title Modify the node structure so as to configure TI Container remotely like Giganto Modify the node structure so as to configure all remote server Feb 19, 2025
@kimhanbeom
Copy link
Contributor Author

We decided to add a separate structure, Remote, to store configuration for all of our remote servers. (#401 (comment))

Here is the direction of the modification.

  • Add a Remote structure and storing its information in the db
  • Add a remotes field of type Vec<Remote> inside the Node structure (the giganto field is removed and the information from this field is also stored in remotes).
  • Add migration function for changed node struct.

kimhanbeom added a commit to kimhanbeom/review-database that referenced this issue Feb 19, 2025
- Modify the `Node` structure to allow you to manage the configuration
  of all remote servers that communicate with the REview.
  - Introduces `Remote`, a new structure that stores configuration
    information for remote servers. The data in `Remote` is stored via
    `Table<Remote>`.
  - Add a `remotes` field of type `Vec<Remote>` within the `Node`
    structure to store the all remote server configuration.
  - Add a `Datalake`, `TiContainer` field inside `node::kind`.
  - Modify migration function `migrate_0_29_node`.
  - Add migration function`migrate_0_35_node`.

Close: petabi#399
@kimhanbeom kimhanbeom changed the title Modify the node structure so as to configure all remote server Modify the Node structure so as to configure all remote server Feb 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant