Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.
iRODS is a distributed system that enables users to manage data stored in geographically diverse locations 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