Skip to content

Commit

Permalink
[273] Document how iRODS manages connections and other things.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Aug 25, 2024
1 parent f2cb9a6 commit c145c80
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/system_overview/connections.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#

## Server-to-Server Connections

iRODS is a distributed system that enables users to manage data stored geographically across disparate storage technologies. iRODS achieves this by redirecting client requests to the appropriate server. This happens automatically and does not require interaction from the client or admin.

The following is true after a redirect of the client request:

- Server-to-Server connections persist after creation for the lifetime of the agent
- Server-to-Server connections represent the user who triggered their creation
- Server-to-Server connections are disconnected on agent shutdown

## Long-Running Connections

- agents do not see ALL changes to policy

## Connection Pooling

- why
- improve performance by avoiding tcp connection startup/shutdown
- target audience is developers building irods client which runs as a server
- how
- create multiple client connections
- use `rc_switch_user` and optionally `rc_check_auth_credenticals`
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ nav:
- Process Model: 'system_overview/process_model.md'
- Control Plane: 'system_overview/control_plane.md'
- Configuration: 'system_overview/configuration.md'
- Connections: 'system_overview/connections.md'
- SSL: 'system_overview/ssl.md'
- Users and Permissions: 'system_overview/users_and_permissions.md'
- GenQuery: 'system_overview/genquery.md'
Expand Down

0 comments on commit c145c80

Please sign in to comment.